Plots


Jump to API response

This endpoint handles manipulation of Plotly plot files.

Reference

Authorization


Any user with or without a Plotly account may view public plots. For private plots, see authentication.

Actions


list

Listing all public plots can be done via a GET request to this endpoint. By default, plots will be listed in order of date created. The order_by query parameter is accepted at this endpoint. Currently, only ordering by views is supported. It is possible to filter the plots by quality with min_quality or max_quality as query parameter.

Example:

// GET https://api.plotly.com/v2/plots/ ---> 200

// GET https://api.plotly.com/v2/plots/?order_by=-views ---> 200

// GET https://api.plotly.com/v2/plots/?min_quality=5 ---> 200

// GET https://api.plotly.com/v2/plots/?max_quality=5 ---> 200

feed

Listing all handpicked feed plots can be done via a GET request to this endpoint. By default, plots will be listed in a random order.

Example:

// GET https://api.plotly.com/v2/plots/feed ---> 200

create

You can create new plot resources here. The only required field is 'figure'. Currently, the figure is restricted to only contain references to grid data. That is, this will fail if raw data arrays are passed in. To create and manipulate underlying grids for plots, see the grids endpoint.

Example:

// This fails because a figure field is required.
// POST https://api.plotly.com/v2/plots ---> 400 Bad Request
{}

// This fails because the figure has raw data
//POST https://api.plotly.com/v2/plots ---> 400 Bad Request
{
    "figure": {"data": [{"y": ['this', 'is', 'raw', 'data']}]}
}

// This succeeds because the figure has src keys, not raw data.
//POST https://api.plotly.com/v2/plots ---> 200 OK
{
    "figure": {"data": [{"ysrc": "sven:88:u8nd62"}]}
}

When creating a grid, you can optionally specify a source_fid to specify where a plot has come from:

  • source_fid: the fid of a plot that was copied (and presumably edited) to produce this one

detail

There is a lot of meta information stored about plot files including filename, title, share_url, and content_url to name a few.

This information can only be reached with a GET to this endpoint.

Example:

// GET https://api.plotly.com/v2/plots/iheartgraphs:90

content

The contents of a plot can be downloaded via the content resource. The plot content contains referenced grid/column data by default. If you wish to return the raw grid/column data, the inline_data=true query must be included in the request url. The Content-Type header will be appropriately set for the response body.

Alternatively, you can set ?map_data=unreadable to append a mapping of sources to data that belongs to grids which are unreadable for the requestor. This is useful when you have read access to another users plot, but that plot contains grid references which you don't have access to.

Examples:

// Returns referenced grid/column data
// GET https://api.plotly.com/v2/plots/iheartgraphs:90/content ---> 200 OK

// Returns full grid/column data
// GET https://api.plotly.com/v2/plots/iheartgraphs:90/content?inline_data=true ---> 200 OK

// Returns full grid/column data when requestor doesn't have permission
// to read the referenced grid.
// GET https://api.plotly.com/v2/plots/iheartgraphs:90/content?map_data=unreadable ---> 200 OK

GET /v2/plots?cursor=cj0xJnA9MjAxOS0wNi0xNysxNSUzQTU5JTNBMDIuMDc3NDc3JTJCMDAlM0EwMA%3D%3D&format=api
HTTP 200 OK
Allow: GET, POST, HEAD, OPTIONS
Content-Type: application/json
Vary: Accept

{
    "next": "https://api.plot.ly/v2/plots?cursor=cD0yMDE5LTA2LTE3KzE1JTNBNTklM0ExNi4zNDUzNDYlMkIwMCUzQTAw&format=api",
    "previous": "https://api.plot.ly/v2/plots?cursor=cj0xJnA9MjAxOS0wNi0xNysxNiUzQTA4JTNBMzkuMzEwMzg2JTJCMDAlM0EwMA%3D%3D&format=api",
    "results": [
        {
            "creation_time": "2019-06-17T16:08:39.310386Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~michaelbabyn/973.embed",
            "fid": "michaelbabyn:973",
            "filename": "mutli_category_waterfall_new",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/michaelbabyn/973/9_5X914C6FN8125Q127E900ZP8BPP1M0.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/michaelbabyn/973/2_POI3FCOK0Z0TCI0DGCXOOASN4KR5ON.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/michaelbabyn/973/8_OY0RPQPQ9RQ4JBJUCIKA831H4PEGS7.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/michaelbabyn/973/9_5X914C6FN8125Q127E900ZP8BPP1M0.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/michaelbabyn:973",
                "plots": "https://api.plotly.com/v2/plots/michaelbabyn:973",
                "parent": "https://api.plotly.com/v2/folders/home?user=michaelbabyn"
            },
            "owner": "michaelbabyn",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 1,
            "web_url": "https://chart-studio.plotly.com/~michaelbabyn/973/",
            "world_readable": true,
            "date_modified": "2019-06-17T16:08:39.332Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~michaelbabyn/973/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "base": 1000,
                        "type": "waterfall",
                        "xsrc": "michaelbabyn:972:1ff109",
                        "ysrc": "michaelbabyn:972:e55ad1",
                        "measuresrc": "michaelbabyn:972:393e4a"
                    },
                    {
                        "base": 1000,
                        "type": "waterfall",
                        "xsrc": "michaelbabyn:972:1f1964",
                        "ysrc": "michaelbabyn:972:deafb3",
                        "measuresrc": "michaelbabyn:972:fd0227"
                    }
                ],
                "layout": {
                    "xaxis": {
                        "ticks": "outside",
                        "title": {
                            "text": "MULTI-CATEGORY"
                        },
                        "tickfont": {
                            "size": 16
                        }
                    },
                    "template": {
                        "data": {
                            "bar": [
                                {
                                    "type": "bar",
                                    "marker": {
                                        "line": {
                                            "color": "#E5ECF6",
                                            "width": 0.5
                                        }
                                    }
                                }
                            ],
                            "table": [
                                {
                                    "type": "table",
                                    "cells": {
                                        "fill": {
                                            "color": "#EBF0F8"
                                        },
                                        "line": {
                                            "color": "white"
                                        }
                                    },
                                    "header": {
                                        "fill": {
                                            "color": "#C8D4E3"
                                        },
                                        "line": {
                                            "color": "white"
                                        }
                                    }
                                }
                            ],
                            "carpet": [
                                {
                                    "type": "carpet",
                                    "aaxis": {
                                        "gridcolor": "white",
                                        "linecolor": "white",
                                        "endlinecolor": "#2a3f5f",
                                        "minorgridcolor": "white",
                                        "startlinecolor": "#2a3f5f"
                                    },
                                    "baxis": {
                                        "gridcolor": "white",
                                        "linecolor": "white",
                                        "endlinecolor": "#2a3f5f",
                                        "minorgridcolor": "white",
                                        "startlinecolor": "#2a3f5f"
                                    }
                                }
                            ],
                            "mesh3d": [
                                {
                                    "type": "mesh3d",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "contour": [
                                {
                                    "type": "contour",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "colorscale": [
                                        [
                                            0.0,
                                            "#0d0887"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#46039f"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#7201a8"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#9c179e"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#bd3786"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#d8576b"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#ed7953"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#fb9f3a"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#fdca26"
                                        ],
                                        [
                                            1.0,
                                            "#f0f921"
                                        ]
                                    ]
                                }
                            ],
                            "heatmap": [
                                {
                                    "type": "heatmap",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "colorscale": [
                                        [
                                            0.0,
                                            "#0d0887"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#46039f"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#7201a8"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#9c179e"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#bd3786"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#d8576b"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#ed7953"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#fb9f3a"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#fdca26"
                                        ],
                                        [
                                            1.0,
                                            "#f0f921"
                                        ]
                                    ]
                                }
                            ],
                            "scatter": [
                                {
                                    "type": "scatter",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "surface": [
                                {
                                    "type": "surface",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "barpolar": [
                                {
                                    "type": "barpolar",
                                    "marker": {
                                        "line": {
                                            "color": "#E5ECF6",
                                            "width": 0.5
                                        }
                                    }
                                }
                            ],
                            "heatmapgl": [
                                {
                                    "type": "heatmapgl",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "histogram": [
                                {
                                    "type": "histogram",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "parcoords": [
                                {
                                    "line": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    },
                                    "type": "parcoords"
                                }
                            ],
                            "scatter3d": [
                                {
                                    "line": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    },
                                    "type": "scatter3d",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scattergl": [
                                {
                                    "type": "scattergl",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "choropleth": [
                                {
                                    "type": "choropleth",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "scattergeo": [
                                {
                                    "type": "scattergeo",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "histogram2d": [
                                {
                                    "type": "histogram2d",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "colorscale": [
                                        [
                                            0.0,
                                            "#0d0887"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#46039f"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#7201a8"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#9c179e"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#bd3786"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#d8576b"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#ed7953"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#fb9f3a"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#fdca26"
                                        ],
                                        [
                                            1.0,
                                            "#f0f921"
                                        ]
                                    ]
                                }
                            ],
                            "scatterpolar": [
                                {
                                    "type": "scatterpolar",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "contourcarpet": [
                                {
                                    "type": "contourcarpet",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "scattercarpet": [
                                {
                                    "type": "scattercarpet",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scattermapbox": [
                                {
                                    "type": "scattermapbox",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scatterpolargl": [
                                {
                                    "type": "scatterpolargl",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scatterternary": [
                                {
                                    "type": "scatterternary",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "histogram2dcontour": [
                                {
                                    "type": "histogram2dcontour",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "colorscale": [
                                        [
                                            0.0,
                                            "#0d0887"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#46039f"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#7201a8"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#9c179e"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#bd3786"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#d8576b"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#ed7953"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#fb9f3a"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#fdca26"
                                        ],
                                        [
                                            1.0,
                                            "#f0f921"
                                        ]
                                    ]
                                }
                            ]
                        },
                        "layout": {
                            "geo": {
                                "bgcolor": "white",
                                "showland": true,
                                "lakecolor": "white",
                                "landcolor": "#E5ECF6",
                                "showlakes": true,
                                "subunitcolor": "white"
                            },
                            "font": {
                                "color": "#2a3f5f"
                            },
                            "polar": {
                                "bgcolor": "#E5ECF6",
                                "radialaxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "linecolor": "white"
                                },
                                "angularaxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "linecolor": "white"
                                }
                            },
                            "scene": {
                                "xaxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "gridwidth": 2,
                                    "linecolor": "white",
                                    "zerolinecolor": "white",
                                    "showbackground": true,
                                    "backgroundcolor": "#E5ECF6"
                                },
                                "yaxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "gridwidth": 2,
                                    "linecolor": "white",
                                    "zerolinecolor": "white",
                                    "showbackground": true,
                                    "backgroundcolor": "#E5ECF6"
                                },
                                "zaxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "gridwidth": 2,
                                    "linecolor": "white",
                                    "zerolinecolor": "white",
                                    "showbackground": true,
                                    "backgroundcolor": "#E5ECF6"
                                }
                            },
                            "title": {
                                "x": 0.05
                            },
                            "xaxis": {
                                "ticks": "",
                                "gridcolor": "white",
                                "linecolor": "white",
                                "automargin": true,
                                "zerolinecolor": "white",
                                "zerolinewidth": 2
                            },
                            "yaxis": {
                                "ticks": "",
                                "gridcolor": "white",
                                "linecolor": "white",
                                "automargin": true,
                                "zerolinecolor": "white",
                                "zerolinewidth": 2
                            },
                            "mapbox": {
                                "style": "light"
                            },
                            "ternary": {
                                "aaxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "linecolor": "white"
                                },
                                "baxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "linecolor": "white"
                                },
                                "caxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "linecolor": "white"
                                },
                                "bgcolor": "#E5ECF6"
                            },
                            "colorway": [
                                "#636efa",
                                "#EF553B",
                                "#00cc96",
                                "#ab63fa",
                                "#FFA15A",
                                "#19d3f3",
                                "#FF6692",
                                "#B6E880",
                                "#FF97FF",
                                "#FECB52"
                            ],
                            "hovermode": "closest",
                            "colorscale": {
                                "diverging": [
                                    [
                                        0,
                                        "#8e0152"
                                    ],
                                    [
                                        0.1,
                                        "#c51b7d"
                                    ],
                                    [
                                        0.2,
                                        "#de77ae"
                                    ],
                                    [
                                        0.3,
                                        "#f1b6da"
                                    ],
                                    [
                                        0.4,
                                        "#fde0ef"
                                    ],
                                    [
                                        0.5,
                                        "#f7f7f7"
                                    ],
                                    [
                                        0.6,
                                        "#e6f5d0"
                                    ],
                                    [
                                        0.7,
                                        "#b8e186"
                                    ],
                                    [
                                        0.8,
                                        "#7fbc41"
                                    ],
                                    [
                                        0.9,
                                        "#4d9221"
                                    ],
                                    [
                                        1,
                                        "#276419"
                                    ]
                                ],
                                "sequential": [
                                    [
                                        0.0,
                                        "#0d0887"
                                    ],
                                    [
                                        0.1111111111111111,
                                        "#46039f"
                                    ],
                                    [
                                        0.2222222222222222,
                                        "#7201a8"
                                    ],
                                    [
                                        0.3333333333333333,
                                        "#9c179e"
                                    ],
                                    [
                                        0.4444444444444444,
                                        "#bd3786"
                                    ],
                                    [
                                        0.5555555555555556,
                                        "#d8576b"
                                    ],
                                    [
                                        0.6666666666666666,
                                        "#ed7953"
                                    ],
                                    [
                                        0.7777777777777778,
                                        "#fb9f3a"
                                    ],
                                    [
                                        0.8888888888888888,
                                        "#fdca26"
                                    ],
                                    [
                                        1.0,
                                        "#f0f921"
                                    ]
                                ],
                                "sequentialminus": [
                                    [
                                        0.0,
                                        "#0d0887"
                                    ],
                                    [
                                        0.1111111111111111,
                                        "#46039f"
                                    ],
                                    [
                                        0.2222222222222222,
                                        "#7201a8"
                                    ],
                                    [
                                        0.3333333333333333,
                                        "#9c179e"
                                    ],
                                    [
                                        0.4444444444444444,
                                        "#bd3786"
                                    ],
                                    [
                                        0.5555555555555556,
                                        "#d8576b"
                                    ],
                                    [
                                        0.6666666666666666,
                                        "#ed7953"
                                    ],
                                    [
                                        0.7777777777777778,
                                        "#fb9f3a"
                                    ],
                                    [
                                        0.8888888888888888,
                                        "#fdca26"
                                    ],
                                    [
                                        1.0,
                                        "#f0f921"
                                    ]
                                ]
                            },
                            "hoverlabel": {
                                "align": "left"
                            },
                            "plot_bgcolor": "#E5ECF6",
                            "paper_bgcolor": "white",
                            "shapedefaults": {
                                "line": {
                                    "width": 0
                                },
                                "opacity": 0.4,
                                "fillcolor": "#506784"
                            },
                            "annotationdefaults": {
                                "arrowhead": 0,
                                "arrowcolor": "#506784",
                                "arrowwidth": 1
                            }
                        }
                    },
                    "waterfallgroupgap": 0.5
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~michaelbabyn",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/74.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-11.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2018-07-09 16:52:34",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "michaelbabyn",
                "email": null,
                "is_active": null,
                "readonly": null,
                "is_dash_creator": null,
                "dash_created_count": null,
                "is_chart_creator": null,
                "charts_created_count": null
            }
        },
        {
            "creation_time": "2019-06-17T16:08:18.940577Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~jas_usc/275.embed",
            "fid": "jas_usc:275",
            "filename": "projection-matrix-Affs: OSCILLATORY Trajectory (20x)",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/jas_usc/275/9_6LTG5G4W64NJ3NYX1RQ7AQQUEHY7A9.png",
            "image_urls": {
                "default": "https://api.plotly.com/v2/files/jas_usc:275/image?image_name=default",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/jas_usc/275/8_VX98S5CW0PJJ7V7WP7A2IYUVJDGEBH.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/jas_usc/275/9_6LTG5G4W64NJ3NYX1RQ7AQQUEHY7A9.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/jas_usc:275",
                "plots": "https://api.plotly.com/v2/plots/jas_usc:275",
                "parent": "https://api.plotly.com/v2/folders/jas_usc:235"
            },
            "owner": "jas_usc",
            "parent": 235,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "PC1 vs.PC2: OSCILLATORY Trajectory (20x)",
            "views": 0,
            "web_url": "https://chart-studio.plotly.com/~jas_usc/275/pc1-vspc2-oscillatory-trajectory-20x/",
            "world_readable": true,
            "date_modified": "2019-06-17T16:08:34.924Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~jas_usc/275/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "uid": "127c1b76-236b-4fdf-ac5d-3787a1dfe9eb",
                        "mode": "markers",
                        "name": "Phase One",
                        "type": "scatter",
                        "xsrc": "jas_usc:276:da1711",
                        "ysrc": "jas_usc:276:faa02e",
                        "marker": {
                            "line": {
                                "color": "rgba(217, 217, 217, 0.14)",
                                "width": 0.5
                            },
                            "size": 12,
                            "color": "#1D65A6",
                            "opacity": 0.8
                        }
                    },
                    {
                        "uid": "9dcd553a-96f3-4ccb-96a1-43d7b3c144e7",
                        "mode": "markers",
                        "name": "Phase Two",
                        "type": "scatter",
                        "xsrc": "jas_usc:276:67f45e",
                        "ysrc": "jas_usc:276:87f2f6",
                        "marker": {
                            "line": {
                                "color": "rgba(217, 217, 217, 0.14)",
                                "width": 0.5
                            },
                            "size": 12,
                            "color": "#C0334D",
                            "opacity": 0.8
                        }
                    },
                    {
                        "uid": "d82cd539-8dec-41d8-a75a-e17a39802a2b",
                        "mode": "markers",
                        "name": "Phase Three",
                        "type": "scatter",
                        "xsrc": "jas_usc:276:1972fe",
                        "ysrc": "jas_usc:276:6d9ad4",
                        "marker": {
                            "line": {
                                "color": "rgba(217, 217, 217, 0.14)",
                                "width": 0.5
                            },
                            "size": 12,
                            "color": "#00743F",
                            "opacity": 0.8
                        }
                    },
                    {
                        "uid": "1a04474a-3d12-4e3a-8707-7e4dd7187bf2",
                        "mode": "markers",
                        "name": "Phase Four",
                        "type": "scatter",
                        "xsrc": "jas_usc:276:d64b18",
                        "ysrc": "jas_usc:276:9e37d9",
                        "marker": {
                            "line": {
                                "color": "rgba(217, 217, 217, 0.14)",
                                "width": 0.5
                            },
                            "size": 12,
                            "color": "#F2A104",
                            "opacity": 0.8
                        }
                    },
                    {
                        "uid": "1e41e480-a613-45e7-90a3-5ce3b7dcd410",
                        "mode": "markers",
                        "name": "Phase Five",
                        "type": "scatter",
                        "xsrc": "jas_usc:276:88916d",
                        "ysrc": "jas_usc:276:fe812f",
                        "marker": {
                            "line": {
                                "color": "rgba(217, 217, 217, 0.14)",
                                "width": 0.5
                            },
                            "size": 12,
                            "color": "#FF69B4",
                            "opacity": 0.8
                        }
                    },
                    {
                        "uid": "a2a0f6d1-1243-4fb0-9b4d-74e4c87460f8",
                        "mode": "markers",
                        "name": "Phase Six",
                        "type": "scatter",
                        "xsrc": "jas_usc:276:3bd079",
                        "ysrc": "jas_usc:276:6f057d",
                        "marker": {
                            "line": {
                                "color": "rgba(217, 217, 217, 0.14)",
                                "width": 0.5
                            },
                            "size": 12,
                            "color": "#00CED1",
                            "opacity": 0.8
                        }
                    },
                    {
                        "uid": "9dcfc3f1-6fbb-42f6-ae51-0a3662e5d51e",
                        "mode": "markers",
                        "name": "Phase Seven",
                        "type": "scatter",
                        "xsrc": "jas_usc:276:c6be51",
                        "ysrc": "jas_usc:276:7d2acc",
                        "marker": {
                            "line": {
                                "color": "rgba(217, 217, 217, 0.14)",
                                "width": 0.5
                            },
                            "size": 12,
                            "color": "#800080",
                            "opacity": 0.8
                        }
                    },
                    {
                        "uid": "79e5ea0c-90b4-41d1-82d7-3052683012b7",
                        "mode": "markers",
                        "name": "Phase Eight",
                        "type": "scatter",
                        "xsrc": "jas_usc:276:ebd47a",
                        "ysrc": "jas_usc:276:643241",
                        "marker": {
                            "line": {
                                "color": "rgba(217, 217, 217, 0.14)",
                                "width": 0.5
                            },
                            "size": 12,
                            "color": "#00FF00",
                            "opacity": 0.8
                        }
                    },
                    {
                        "uid": "4ed42cab-871f-4c5b-b71c-c8fe2908ffb5",
                        "mode": "markers",
                        "name": "Phase Nine",
                        "type": "scatter",
                        "xsrc": "jas_usc:276:49b440",
                        "ysrc": "jas_usc:276:8f63da",
                        "marker": {
                            "line": {
                                "color": "rgba(217, 217, 217, 0.14)",
                                "width": 0.5
                            },
                            "size": 12,
                            "color": "#778899",
                            "opacity": 0.8
                        }
                    },
                    {
                        "uid": "203a459b-f53c-48e7-be2b-0efd3fa1fc1a",
                        "mode": "markers",
                        "name": "Phase Ten",
                        "type": "scatter",
                        "xsrc": "jas_usc:276:a517f3",
                        "ysrc": "jas_usc:276:e9ca67",
                        "marker": {
                            "line": {
                                "color": "rgba(217, 217, 217, 0.14)",
                                "width": 0.5
                            },
                            "size": 12,
                            "color": "#A0522D",
                            "opacity": 0.8
                        }
                    },
                    {
                        "uid": "f89d82e4-f99c-4c5a-accf-98eb807bfb24",
                        "mode": "markers",
                        "name": "Phase Eleven",
                        "type": "scatter",
                        "xsrc": "jas_usc:276:1a459e",
                        "ysrc": "jas_usc:276:63df49",
                        "marker": {
                            "line": {
                                "color": "rgba(217, 217, 217, 0.14)",
                                "width": 0.5
                            },
                            "size": 12,
                            "color": "#1D65A6",
                            "opacity": 0.8
                        }
                    },
                    {
                        "uid": "22331439-d97b-417b-bc56-4740cb9f5ec3",
                        "mode": "markers",
                        "name": "Phase Twelve",
                        "type": "scatter",
                        "xsrc": "jas_usc:276:5b44cc",
                        "ysrc": "jas_usc:276:bb80c5",
                        "marker": {
                            "line": {
                                "color": "rgba(217, 217, 217, 0.14)",
                                "width": 0.5
                            },
                            "size": 12,
                            "color": "#C0334D",
                            "opacity": 0.8
                        }
                    },
                    {
                        "uid": "6d2f3faf-ea6d-4339-8308-23c40d639911",
                        "mode": "markers",
                        "name": "Phase Thirteen",
                        "type": "scatter",
                        "xsrc": "jas_usc:276:31d76d",
                        "ysrc": "jas_usc:276:bf3d21",
                        "marker": {
                            "line": {
                                "color": "rgba(217, 217, 217, 0.14)",
                                "width": 0.5
                            },
                            "size": 12,
                            "color": "#00743F",
                            "opacity": 0.8
                        }
                    },
                    {
                        "uid": "6a1a2600-fc22-48b8-9d3e-33173b2401f5",
                        "mode": "markers",
                        "name": "Phase Fourteen",
                        "type": "scatter",
                        "xsrc": "jas_usc:276:cfd160",
                        "ysrc": "jas_usc:276:edd57a",
                        "marker": {
                            "line": {
                                "color": "rgba(217, 217, 217, 0.14)",
                                "width": 0.5
                            },
                            "size": 12,
                            "color": "#F2A104",
                            "opacity": 0.8
                        }
                    },
                    {
                        "uid": "0498dfe2-b455-4e89-a78c-8ab82d6ea05a",
                        "mode": "markers",
                        "name": "Phase Fifteen",
                        "type": "scatter",
                        "xsrc": "jas_usc:276:60ce6f",
                        "ysrc": "jas_usc:276:f9afe7",
                        "marker": {
                            "line": {
                                "color": "rgba(217, 217, 217, 0.14)",
                                "width": 0.5
                            },
                            "size": 12,
                            "color": "#FF69B4",
                            "opacity": 0.8
                        }
                    },
                    {
                        "uid": "dd2cd419-009e-4837-8fe6-2e4e3c062cdd",
                        "mode": "markers",
                        "name": "Phase Sixteen",
                        "type": "scatter",
                        "xsrc": "jas_usc:276:aa9703",
                        "ysrc": "jas_usc:276:8787e7",
                        "marker": {
                            "line": {
                                "color": "rgba(217, 217, 217, 0.14)",
                                "width": 0.5
                            },
                            "size": 12,
                            "color": "#00CED1",
                            "opacity": 0.8
                        }
                    },
                    {
                        "uid": "4eed0a6b-9b55-420f-b0f0-186341e20990",
                        "mode": "markers",
                        "name": "Phase Seventeen",
                        "type": "scatter",
                        "xsrc": "jas_usc:276:3cdf2d",
                        "ysrc": "jas_usc:276:556227",
                        "marker": {
                            "line": {
                                "color": "rgba(217, 217, 217, 0.14)",
                                "width": 0.5
                            },
                            "size": 12,
                            "color": "#800080",
                            "opacity": 0.8
                        }
                    },
                    {
                        "uid": "309a9f4c-c81e-48ab-9fe7-d0d214f9cd15",
                        "mode": "markers",
                        "name": "Phase Eighteen",
                        "type": "scatter",
                        "xsrc": "jas_usc:276:e3476d",
                        "ysrc": "jas_usc:276:e0dcf3",
                        "marker": {
                            "line": {
                                "color": "rgba(217, 217, 217, 0.14)",
                                "width": 0.5
                            },
                            "size": 12,
                            "color": "#00FF00",
                            "opacity": 0.8
                        }
                    },
                    {
                        "uid": "7170bbc1-094f-43fb-a32b-8437c6084701",
                        "mode": "markers",
                        "name": "Phase Nineteen",
                        "type": "scatter",
                        "xsrc": "jas_usc:276:2d3012",
                        "ysrc": "jas_usc:276:6dbf94",
                        "marker": {
                            "line": {
                                "color": "rgba(217, 217, 217, 0.14)",
                                "width": 0.5
                            },
                            "size": 12,
                            "color": "#778899",
                            "opacity": 0.8
                        }
                    },
                    {
                        "uid": "0deae40e-4a0b-42b9-a9bf-f1669e5724b0",
                        "mode": "markers",
                        "name": "Phase Twenty",
                        "type": "scatter",
                        "xsrc": "jas_usc:276:8b8c1c",
                        "ysrc": "jas_usc:276:956983",
                        "marker": {
                            "line": {
                                "color": "rgba(217, 217, 217, 0.14)",
                                "width": 0.5
                            },
                            "size": 12,
                            "color": "#A0522D",
                            "opacity": 0.8
                        }
                    }
                ],
                "layout": {
                    "title": {
                        "text": "PC1 vs.PC2: OSCILLATORY Trajectory (20x)"
                    },
                    "xaxis": {
                        "title": {
                            "text": "PC1"
                        }
                    },
                    "yaxis": {
                        "title": {
                            "text": "PC2"
                        }
                    },
                    "showlegend": true
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~jas_usc",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/73.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-6.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2015-11-09 00:19:02",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "jas_usc",
                "email": null,
                "is_active": null,
                "readonly": null,
                "is_dash_creator": null,
                "dash_created_count": null,
                "is_chart_creator": null,
                "charts_created_count": null
            }
        },
        {
            "creation_time": "2019-06-17T16:08:02.173688Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~hparvez/2.embed",
            "fid": "hparvez:2",
            "filename": "simple-connectgaps",
            "filetype": "plot",
            "img_url": "https://api.plotly.com/v2/files/hparvez:2/image?image_name=list-thumb",
            "image_urls": {
                "default": "https://api.plotly.com/v2/files/hparvez:2/image?image_name=default",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/hparvez/2/8_XCBOWG34SS2NA31M2KMTV92QB07U9X.png",
                "list-thumb": "https://api.plotly.com/v2/files/hparvez:2/image?image_name=list-thumb"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/hparvez:2",
                "plots": "https://api.plotly.com/v2/plots/hparvez:2",
                "parent": "https://api.plotly.com/v2/folders/home?user=hparvez"
            },
            "owner": "hparvez",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "<b>No</b> Gaps vs Gaps",
            "views": 2,
            "web_url": "https://chart-studio.plotly.com/~hparvez/2/no-gaps-vs-gaps/",
            "world_readable": true,
            "date_modified": "2019-06-17T16:08:02.737Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~hparvez/2/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "uid": "0d1e7fd2-911a-11e9-a34e-dc5360e8a7d7",
                        "name": "<b>No</b> Gaps",
                        "type": "scatter",
                        "xsrc": "hparvez:3:f93645",
                        "ysrc": "hparvez:3:a6c5cd",
                        "connectgaps": true
                    },
                    {
                        "uid": "0d1e7fd3-911a-11e9-9733-dc5360e8a7d7",
                        "name": "Gaps",
                        "type": "scatter",
                        "xsrc": "hparvez:3:f93645",
                        "ysrc": "hparvez:3:4bf0f9"
                    }
                ],
                "layout": {}
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~hparvez",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/23.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-10.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2018-08-30 16:41:38",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "hparvez",
                "email": null,
                "is_active": null,
                "readonly": null,
                "is_dash_creator": null,
                "dash_created_count": null,
                "is_chart_creator": null,
                "charts_created_count": null
            }
        },
        {
            "creation_time": "2019-06-17T16:04:31.236523Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~cornenagel/26.embed",
            "fid": "cornenagel:26",
            "filename": "plot from API (8)",
            "filetype": "plot",
            "img_url": "https://api.plotly.com/v2/files/cornenagel:26/image?image_name=list-thumb",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/cornenagel/26/2_J4DIL50IBY31HNZUDCGEL7IXD27RMT.png",
                "block-thumb": "https://api.plotly.com/v2/files/cornenagel:26/image?image_name=block-thumb",
                "list-thumb": "https://api.plotly.com/v2/files/cornenagel:26/image?image_name=list-thumb"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/cornenagel:26",
                "plots": "https://api.plotly.com/v2/plots/cornenagel:26",
                "parent": "https://api.plotly.com/v2/folders/home?user=cornenagel"
            },
            "owner": "cornenagel",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "Feature Importance",
            "views": 0,
            "web_url": "https://chart-studio.plotly.com/~cornenagel/26/feature-importance/",
            "world_readable": true,
            "date_modified": "2019-06-17T16:04:31.697Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~cornenagel/26/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "uid": "65f060b8-daa4-4833-846c-6db490a6b81e",
                        "type": "bar",
                        "xsrc": "cornenagel:27:9c5999",
                        "ysrc": "cornenagel:27:7aae34",
                        "marker": {
                            "line": {
                                "color": "rgba(0, 200, 255, 0.5)",
                                "width": 1
                            },
                            "color": "rgba(0, 200, 255, 0.5)",
                            "opacity": 0.8
                        },
                        "orientation": "h"
                    }
                ],
                "layout": {
                    "title": {
                        "x": 0,
                        "text": "Feature Importance",
                        "xref": "paper"
                    },
                    "xaxis": {
                        "title": {
                            "text": "Relative Importance"
                        }
                    },
                    "yaxis": {
                        "title": {
                            "text": "Feature Name"
                        }
                    }
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~cornenagel",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/30.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-1.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2017-08-09 20:59:29",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "cornenagel",
                "email": null,
                "is_active": null,
                "readonly": null,
                "is_dash_creator": null,
                "dash_created_count": null,
                "is_chart_creator": null,
                "charts_created_count": null
            }
        },
        {
            "creation_time": "2019-06-17T16:04:18.478991Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~cornenagel/24.embed",
            "fid": "cornenagel:24",
            "filename": "plot from API (7)",
            "filetype": "plot",
            "img_url": "https://api.plotly.com/v2/files/cornenagel:24/image?image_name=list-thumb",
            "image_urls": {
                "default": "https://api.plotly.com/v2/files/cornenagel:24/image?image_name=default",
                "block-thumb": "https://api.plotly.com/v2/files/cornenagel:24/image?image_name=block-thumb",
                "list-thumb": "https://api.plotly.com/v2/files/cornenagel:24/image?image_name=list-thumb"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/cornenagel:24",
                "plots": "https://api.plotly.com/v2/plots/cornenagel:24",
                "parent": "https://api.plotly.com/v2/folders/home?user=cornenagel"
            },
            "owner": "cornenagel",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "Feature Importance",
            "views": 0,
            "web_url": "https://chart-studio.plotly.com/~cornenagel/24/feature-importance/",
            "world_readable": true,
            "date_modified": "2019-06-17T16:04:18.976Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~cornenagel/24/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "uid": "027c5447-a535-4068-a606-48bc4f1f9b3a",
                        "type": "bar",
                        "xsrc": "cornenagel:25:8b3f68",
                        "ysrc": "cornenagel:25:0ff392",
                        "marker": {
                            "line": {
                                "color": "rgba(0, 200, 255, 0.3)",
                                "width": 1
                            },
                            "color": "rgba(0, 200, 255, 0.3)",
                            "opacity": 0.8
                        },
                        "orientation": "h"
                    }
                ],
                "layout": {
                    "title": {
                        "x": 0,
                        "text": "Feature Importance",
                        "xref": "paper"
                    },
                    "xaxis": {
                        "title": {
                            "text": "Relative Importance"
                        }
                    },
                    "yaxis": {
                        "title": {
                            "text": "Feature Name"
                        }
                    }
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~cornenagel",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/30.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-1.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2017-08-09 20:59:29",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "cornenagel",
                "email": null,
                "is_active": null,
                "readonly": null,
                "is_dash_creator": null,
                "dash_created_count": null,
                "is_chart_creator": null,
                "charts_created_count": null
            }
        },
        {
            "creation_time": "2019-06-17T16:02:26.058523Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~hparvez/0.embed",
            "fid": "hparvez:0",
            "filename": "basic-line",
            "filetype": "plot",
            "img_url": "https://api.plotly.com/v2/files/hparvez:0/image?image_name=list-thumb",
            "image_urls": {
                "default": "https://api.plotly.com/v2/files/hparvez:0/image?image_name=default",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/hparvez/0/8_1W1LIIEULWMS3TKSGXJ0YVM4PD7USH.png",
                "list-thumb": "https://api.plotly.com/v2/files/hparvez:0/image?image_name=list-thumb"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/hparvez:0",
                "plots": "https://api.plotly.com/v2/plots/hparvez:0",
                "parent": "https://api.plotly.com/v2/folders/home?user=hparvez"
            },
            "owner": "hparvez",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 2,
            "web_url": "https://chart-studio.plotly.com/~hparvez/0/",
            "world_readable": true,
            "date_modified": "2019-06-17T16:02:26.520Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~hparvez/0/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "uid": "44054afa-9119-11e9-a5ec-dc5360e8a7d7",
                        "type": "scatter",
                        "xsrc": "hparvez:1:7e4b38",
                        "ysrc": "hparvez:1:ea491d"
                    }
                ],
                "layout": {}
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~hparvez",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/23.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-10.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2018-08-30 16:41:38",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "hparvez",
                "email": null,
                "is_active": null,
                "readonly": null,
                "is_dash_creator": null,
                "dash_created_count": null,
                "is_chart_creator": null,
                "charts_created_count": null
            }
        },
        {
            "creation_time": "2019-06-17T16:01:18.647876Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~psriram/2.embed",
            "fid": "psriram:2",
            "filename": "Plot 2",
            "filetype": "plot",
            "img_url": "https://api.plotly.com/v2/files/psriram:2/image?image_name=list-thumb",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/psriram/2/2_6HD0F4ZG5545MV7K5H7WX0XGHD8TOD.png",
                "block-thumb": "https://api.plotly.com/v2/files/psriram:2/image?image_name=block-thumb",
                "list-thumb": "https://api.plotly.com/v2/files/psriram:2/image?image_name=list-thumb"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/psriram:2",
                "plots": "https://api.plotly.com/v2/plots/psriram:2",
                "parent": "https://api.plotly.com/v2/folders/home?user=psriram"
            },
            "owner": "psriram",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 4,
            "web_url": "https://chart-studio.plotly.com/~psriram/2/",
            "world_readable": true,
            "date_modified": "2019-06-17T16:01:18.660Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~psriram/2/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": false,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "mode": "lines",
                        "name": "xf==",
                        "type": "scatter",
                        "xsrc": "psriram:1:92009b",
                        "ysrc": "psriram:1:942182",
                        "labelssrc": "psriram:1:92009b",
                        "valuessrc": "psriram:1:942182"
                    },
                    {
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "psriram:1:92009b",
                        "ysrc": "psriram:1:e6c0a2"
                    }
                ],
                "frames": [],
                "layout": {
                    "title": {
                        "text": "Show Edit in Chart Studio Button"
                    },
                    "xaxis": {
                        "type": "category",
                        "range": [
                            0,
                            2
                        ],
                        "autorange": true
                    },
                    "yaxis": {
                        "type": "linear",
                        "range": [
                            16.333333333333336,
                            69.66666666666667
                        ],
                        "autorange": true
                    },
                    "legend": {
                        "x": 0.6592429547992874,
                        "y": 1.083916083916084
                    },
                    "autosize": true,
                    "hiddenlabels": []
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~psriram",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/18.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-4.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2019-06-17 16:00:00",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "psriram",
                "email": null,
                "is_active": null,
                "readonly": null,
                "is_dash_creator": null,
                "dash_created_count": null,
                "is_chart_creator": null,
                "charts_created_count": null
            }
        },
        {
            "creation_time": "2019-06-17T16:00:37.413643Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~dangnguyen/4.embed",
            "fid": "dangnguyen:4",
            "filename": "Plotly Playground 2019-06-17 16:00:34",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/dangnguyen/4/9_W99OV64W2TAYQSO2FXB2DJNYNW3RFT.png",
            "image_urls": {
                "default": "https://api.plotly.com/v2/files/dangnguyen:4/image?image_name=default",
                "block-thumb": "https://api.plotly.com/v2/files/dangnguyen:4/image?image_name=block-thumb",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/dangnguyen/4/9_W99OV64W2TAYQSO2FXB2DJNYNW3RFT.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/dangnguyen:4",
                "plots": "https://api.plotly.com/v2/plots/dangnguyen:4",
                "parent": "https://api.plotly.com/v2/folders/home?user=dangnguyen"
            },
            "owner": "dangnguyen",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "{'font': {'color': '#4D5663'}}",
            "views": 0,
            "web_url": "https://chart-studio.plotly.com/~dangnguyen/4/font-color-4d5663/",
            "world_readable": true,
            "date_modified": "2019-06-17T16:00:38.079Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~dangnguyen/4/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "uid": "96c4122e-0430-4500-b94c-7528fb4a7ffe",
                        "line": {
                            "dash": "solid",
                            "color": "rgba(255, 153, 51, 1.0)",
                            "shape": "linear",
                            "width": 1.3
                        },
                        "mode": "lines",
                        "name": "0",
                        "text": "",
                        "type": "scatter",
                        "xsrc": "dangnguyen:5:2184fb",
                        "ysrc": "dangnguyen:5:6ce354"
                    }
                ],
                "layout": {
                    "title": {
                        "font": {
                            "color": "#4D5663"
                        }
                    },
                    "xaxis": {
                        "title": {
                            "font": {
                                "color": "#4D5663"
                            },
                            "text": ""
                        },
                        "showgrid": true,
                        "tickfont": {
                            "color": "#4D5663"
                        },
                        "gridcolor": "#E1E5ED",
                        "zerolinecolor": "#E1E5ED"
                    },
                    "yaxis": {
                        "title": {
                            "font": {
                                "color": "#4D5663"
                            },
                            "text": ""
                        },
                        "showgrid": true,
                        "tickfont": {
                            "color": "#4D5663"
                        },
                        "gridcolor": "#E1E5ED",
                        "zerolinecolor": "#E1E5ED"
                    },
                    "legend": {
                        "font": {
                            "color": "#4D5663"
                        },
                        "bgcolor": "#F5F6F9"
                    },
                    "plot_bgcolor": "#F5F6F9",
                    "paper_bgcolor": "#F5F6F9"
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~dangnguyen",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/86.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-0.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2019-03-28 20:14:08",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "dangnguyen",
                "email": null,
                "is_active": null,
                "readonly": null,
                "is_dash_creator": null,
                "dash_created_count": null,
                "is_chart_creator": null,
                "charts_created_count": null
            }
        },
        {
            "creation_time": "2019-06-17T16:00:25.375779Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~dangnguyen/2.embed",
            "fid": "dangnguyen:2",
            "filename": "Plotly Playground 2019-06-17 16:00:23",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/dangnguyen/2/9_LHDNH3RJ5R1AP8ABJPGTUO990QSVNG.png",
            "image_urls": {
                "default": "https://api.plotly.com/v2/files/dangnguyen:2/image?image_name=default",
                "block-thumb": "https://api.plotly.com/v2/files/dangnguyen:2/image?image_name=block-thumb",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/dangnguyen/2/9_LHDNH3RJ5R1AP8ABJPGTUO990QSVNG.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/dangnguyen:2",
                "plots": "https://api.plotly.com/v2/plots/dangnguyen:2",
                "parent": "https://api.plotly.com/v2/folders/home?user=dangnguyen"
            },
            "owner": "dangnguyen",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "{'font': {'color': '#4D5663'}}",
            "views": 0,
            "web_url": "https://chart-studio.plotly.com/~dangnguyen/2/font-color-4d5663/",
            "world_readable": true,
            "date_modified": "2019-06-17T16:00:26.140Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~dangnguyen/2/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "uid": "d1778abd-f66c-4fc3-9395-88488efb97d2",
                        "line": {
                            "dash": "solid",
                            "color": "rgba(255, 153, 51, 1.0)",
                            "shape": "linear",
                            "width": 1.3
                        },
                        "mode": "lines",
                        "name": "0",
                        "text": "",
                        "type": "scatter",
                        "xsrc": "dangnguyen:3:c19da6",
                        "ysrc": "dangnguyen:3:41f257"
                    }
                ],
                "layout": {
                    "title": {
                        "font": {
                            "color": "#4D5663"
                        }
                    },
                    "xaxis": {
                        "title": {
                            "font": {
                                "color": "#4D5663"
                            },
                            "text": ""
                        },
                        "showgrid": true,
                        "tickfont": {
                            "color": "#4D5663"
                        },
                        "gridcolor": "#E1E5ED",
                        "zerolinecolor": "#E1E5ED"
                    },
                    "yaxis": {
                        "title": {
                            "font": {
                                "color": "#4D5663"
                            },
                            "text": ""
                        },
                        "showgrid": true,
                        "tickfont": {
                            "color": "#4D5663"
                        },
                        "gridcolor": "#E1E5ED",
                        "zerolinecolor": "#E1E5ED"
                    },
                    "legend": {
                        "font": {
                            "color": "#4D5663"
                        },
                        "bgcolor": "#F5F6F9"
                    },
                    "plot_bgcolor": "#F5F6F9",
                    "paper_bgcolor": "#F5F6F9"
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~dangnguyen",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/86.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-0.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2019-03-28 20:14:08",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "dangnguyen",
                "email": null,
                "is_active": null,
                "readonly": null,
                "is_dash_creator": null,
                "dash_created_count": null,
                "is_chart_creator": null,
                "charts_created_count": null
            }
        },
        {
            "creation_time": "2019-06-17T15:59:16.345346Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~jas_usc/271.embed",
            "fid": "jas_usc:271",
            "filename": "projection-matrix-Affs: OSCILLATORY Trajectory (10x)",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/jas_usc/271/9_WN93H9AUAQSXAB1W0FUK2SK0QOYYSZ.png",
            "image_urls": {
                "default": "https://api.plotly.com/v2/files/jas_usc:271/image?image_name=default",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/jas_usc/271/8_X71SBV4UIK9EFOXLPM4LG4UUIX7ZGM.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/jas_usc/271/9_WN93H9AUAQSXAB1W0FUK2SK0QOYYSZ.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/jas_usc:271",
                "plots": "https://api.plotly.com/v2/plots/jas_usc:271",
                "parent": "https://api.plotly.com/v2/folders/jas_usc:235"
            },
            "owner": "jas_usc",
            "parent": 235,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "PC1 vs.PC2: OSCILLATORY Trajectory (10x)",
            "views": 0,
            "web_url": "https://chart-studio.plotly.com/~jas_usc/271/pc1-vspc2-oscillatory-trajectory-10x/",
            "world_readable": true,
            "date_modified": "2019-06-17T15:59:37.038Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~jas_usc/271/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "uid": "c2c505f1-51fb-4c7c-a6ea-2a0dccd3ac65",
                        "mode": "markers",
                        "name": "Phase One",
                        "type": "scatter",
                        "xsrc": "jas_usc:272:782577",
                        "ysrc": "jas_usc:272:187b97",
                        "marker": {
                            "line": {
                                "color": "rgba(217, 217, 217, 0.14)",
                                "width": 0.5
                            },
                            "size": 12,
                            "color": "#1D65A6",
                            "opacity": 0.8
                        }
                    },
                    {
                        "uid": "fa38b592-dd56-40e0-9321-a0b14c2b8f4f",
                        "mode": "markers",
                        "name": "Phase Two",
                        "type": "scatter",
                        "xsrc": "jas_usc:272:6a6afa",
                        "ysrc": "jas_usc:272:d92a7f",
                        "marker": {
                            "line": {
                                "color": "rgba(217, 217, 217, 0.14)",
                                "width": 0.5
                            },
                            "size": 12,
                            "color": "#C0334D",
                            "opacity": 0.8
                        }
                    },
                    {
                        "uid": "36be6497-31a6-4bf0-856a-94361f59ebb7",
                        "mode": "markers",
                        "name": "Phase Three",
                        "type": "scatter",
                        "xsrc": "jas_usc:272:c9d7a1",
                        "ysrc": "jas_usc:272:fae5ad",
                        "marker": {
                            "line": {
                                "color": "rgba(217, 217, 217, 0.14)",
                                "width": 0.5
                            },
                            "size": 12,
                            "color": "#00743F",
                            "opacity": 0.8
                        }
                    },
                    {
                        "uid": "d73382d7-555d-4e90-9fe9-d66ad8bf9dc9",
                        "mode": "markers",
                        "name": "Phase Four",
                        "type": "scatter",
                        "xsrc": "jas_usc:272:2a4935",
                        "ysrc": "jas_usc:272:d99a74",
                        "marker": {
                            "line": {
                                "color": "rgba(217, 217, 217, 0.14)",
                                "width": 0.5
                            },
                            "size": 12,
                            "color": "#F2A104",
                            "opacity": 0.8
                        }
                    },
                    {
                        "uid": "db2ea95f-4ad1-44b2-a642-8f14c66ceaf9",
                        "mode": "markers",
                        "name": "Phase Five",
                        "type": "scatter",
                        "xsrc": "jas_usc:272:bedb1e",
                        "ysrc": "jas_usc:272:aef2b9",
                        "marker": {
                            "line": {
                                "color": "rgba(217, 217, 217, 0.14)",
                                "width": 0.5
                            },
                            "size": 12,
                            "color": "#FF69B4",
                            "opacity": 0.8
                        }
                    },
                    {
                        "uid": "6f9926b3-fbe8-4494-bd35-0296cacaeedc",
                        "mode": "markers",
                        "name": "Phase Six",
                        "type": "scatter",
                        "xsrc": "jas_usc:272:dbc875",
                        "ysrc": "jas_usc:272:94c3c3",
                        "marker": {
                            "line": {
                                "color": "rgba(217, 217, 217, 0.14)",
                                "width": 0.5
                            },
                            "size": 12,
                            "color": "#00CED1",
                            "opacity": 0.8
                        }
                    },
                    {
                        "uid": "99298a18-b79d-430e-81ba-19269fecd4d1",
                        "mode": "markers",
                        "name": "Phase Seven",
                        "type": "scatter",
                        "xsrc": "jas_usc:272:6503cf",
                        "ysrc": "jas_usc:272:393da9",
                        "marker": {
                            "line": {
                                "color": "rgba(217, 217, 217, 0.14)",
                                "width": 0.5
                            },
                            "size": 12,
                            "color": "#800080",
                            "opacity": 0.8
                        }
                    },
                    {
                        "uid": "0b38a79f-4b4e-4bf2-975a-4a34288ef17f",
                        "mode": "markers",
                        "name": "Phase Eight",
                        "type": "scatter",
                        "xsrc": "jas_usc:272:4aa747",
                        "ysrc": "jas_usc:272:06932b",
                        "marker": {
                            "line": {
                                "color": "rgba(217, 217, 217, 0.14)",
                                "width": 0.5
                            },
                            "size": 12,
                            "color": "#00FF00",
                            "opacity": 0.8
                        }
                    },
                    {
                        "uid": "5dbae51e-db88-4273-8c49-33c5b14ea510",
                        "mode": "markers",
                        "name": "Phase Nine",
                        "type": "scatter",
                        "xsrc": "jas_usc:272:5c115c",
                        "ysrc": "jas_usc:272:90c135",
                        "marker": {
                            "line": {
                                "color": "rgba(217, 217, 217, 0.14)",
                                "width": 0.5
                            },
                            "size": 12,
                            "color": "#778899",
                            "opacity": 0.8
                        }
                    },
                    {
                        "uid": "d282af08-17ad-45af-bf37-2e483aab16ae",
                        "mode": "markers",
                        "name": "Phase Ten",
                        "type": "scatter",
                        "xsrc": "jas_usc:272:d1333e",
                        "ysrc": "jas_usc:272:5d65bc",
                        "marker": {
                            "line": {
                                "color": "rgba(217, 217, 217, 0.14)",
                                "width": 0.5
                            },
                            "size": 12,
                            "color": "#A0522D",
                            "opacity": 0.8
                        }
                    }
                ],
                "layout": {
                    "title": {
                        "text": "PC1 vs.PC2: OSCILLATORY Trajectory (10x)"
                    },
                    "xaxis": {
                        "title": {
                            "text": "PC1"
                        }
                    },
                    "yaxis": {
                        "title": {
                            "text": "PC2"
                        }
                    },
                    "showlegend": true
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~jas_usc",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/73.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-6.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2015-11-09 00:19:02",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "jas_usc",
                "email": null,
                "is_active": null,
                "readonly": null,
                "is_dash_creator": null,
                "dash_created_count": null,
                "is_chart_creator": null,
                "charts_created_count": null
            }
        }
    ]
}