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=cj0xJnA9MjAyNS0wNy0wMyswMyUzQTQyJTNBMjIuNzA5ODEzJTJCMDAlM0EwMA%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=cD0yMDI1LTA3LTAzKzA2JTNBMDUlM0EyNS42MDcyNTIlMkIwMCUzQTAw&format=api",
    "previous": "https://api.plot.ly/v2/plots/?cursor=cj0xJnA9MjAyNS0wNy0wMysxMCUzQTA1JTNBMjUuNTgzNzI5JTJCMDAlM0EwMA%3D%3D&format=api",
    "results": [
        {
            "creation_time": "2025-07-03T10:05:25.583729Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~frmeyer/40.embed",
            "fid": "frmeyer:40",
            "filename": "cumalative English",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/frmeyer/40/9_JC2JTGWS2N69VJ3Q6UD8QNEAIB5TAY.png",
            "image_urls": {
                "default": "https://api.plotly.com/v2/files/frmeyer:40/image?image_name=default",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/frmeyer/40/8_E7HJ4KZG36ADY11K76GZAWIJX2EH8Z.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/frmeyer/40/9_JC2JTGWS2N69VJ3Q6UD8QNEAIB5TAY.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/frmeyer:40",
                "plots": "https://api.plotly.com/v2/plots/frmeyer:40",
                "parent": "https://api.plotly.com/v2/folders/home?user=frmeyer"
            },
            "owner": "frmeyer",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 0,
            "web_url": "https://chart-studio.plotly.com/~frmeyer/40/",
            "world_readable": true,
            "date_modified": "2025-07-03T12:33:07.981Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~frmeyer/40/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": false,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "fill": "tozeroy",
                        "line": {
                            "shape": "spline",
                            "width": 2
                        },
                        "meta": {
                            "columnNames": {
                                "x": "A",
                                "y": "B"
                            }
                        },
                        "mode": "lines",
                        "name": "Initialisation",
                        "type": "scatter",
                        "xsrc": "frmeyer:39:d7c924",
                        "ysrc": "frmeyer:39:9f5bb6",
                        "visible": true,
                        "hoverlabel": {
                            "align": "auto"
                        },
                        "connectgaps": false
                    },
                    {
                        "fill": "tozeroy",
                        "line": {
                            "shape": "spline",
                            "width": 2
                        },
                        "meta": {
                            "columnNames": {
                                "x": "A",
                                "y": "C"
                            }
                        },
                        "mode": "lines",
                        "name": "Early pretraining",
                        "type": "scatter",
                        "xsrc": "frmeyer:39:d7c924",
                        "ysrc": "frmeyer:39:cd9b94",
                        "visible": true,
                        "hoverlabel": {
                            "align": "auto"
                        },
                        "stackgroup": null,
                        "connectgaps": false
                    },
                    {
                        "fill": "tozeroy",
                        "line": {
                            "shape": "spline",
                            "width": 2
                        },
                        "meta": {
                            "columnNames": {
                                "x": "A",
                                "y": "D"
                            }
                        },
                        "mode": "lines",
                        "name": "Pretrained",
                        "type": "scatter",
                        "xsrc": "frmeyer:39:d7c924",
                        "ysrc": "frmeyer:39:f1a42b",
                        "visible": true,
                        "fillcolor": "rgba(44, 160, 44, 0.5)",
                        "hoverlabel": {
                            "align": "auto"
                        },
                        "stackgroup": null,
                        "connectgaps": false
                    },
                    {
                        "fill": "tozeroy",
                        "line": {
                            "shape": "spline",
                            "width": 2,
                            "smoothing": 1
                        },
                        "meta": {
                            "columnNames": {
                                "x": "A",
                                "y": "E"
                            }
                        },
                        "mode": "lines",
                        "name": "Finetuned",
                        "type": "scatter",
                        "xsrc": "frmeyer:39:d7c924",
                        "ysrc": "frmeyer:39:23d8fc",
                        "visible": true,
                        "fillcolor": "rgba(214, 64, 64, 0.5)",
                        "hoverlabel": {
                            "align": "auto"
                        },
                        "stackgroup": null,
                        "connectgaps": false
                    }
                ],
                "frames": [],
                "layout": {
                    "title": {
                        "x": 0.4,
                        "text": "<br>"
                    },
                    "width": 1459,
                    "xaxis": {
                        "type": "linear",
                        "range": [
                            1,
                            6
                        ],
                        "title": {
                            "font": {
                                "size": 15
                            },
                            "text": "Fertility"
                        },
                        "domain": [
                            0.25,
                            0.65
                        ],
                        "tickfont": {
                            "size": 15
                        },
                        "autorange": false
                    },
                    "yaxis": {
                        "type": "linear",
                        "range": [
                            0,
                            721240
                        ],
                        "title": {
                            "font": {
                                "size": 15
                            },
                            "text": "Frequency"
                        },
                        "domain": [
                            0,
                            0.75
                        ],
                        "tickfont": {
                            "size": 15
                        },
                        "autorange": true
                    },
                    "height": 467,
                    "legend": {
                        "x": 0.25,
                        "y": 0.8583875613861557,
                        "font": {
                            "size": 15
                        },
                        "orientation": "h"
                    },
                    "margin": {
                        "b": 45,
                        "l": 80,
                        "r": 80,
                        "t": 80,
                        "pad": 0
                    },
                    "shapes": [
                        {
                            "x0": 100.35009489968388,
                            "x1": 118.89621984068566,
                            "y0": 20.412189598625652,
                            "y1": 72.22661252537873,
                            "line": {
                                "color": "#444444"
                            },
                            "type": "rect",
                            "opacity": 0.22,
                            "fillcolor": "rgb(140, 1, 171)"
                        }
                    ],
                    "autosize": true,
                    "colorway": [
                        "#1f77b4",
                        "#ff7f0e",
                        "#2ca02c",
                        "#d62728",
                        "#9467bd",
                        "#8c564b",
                        "#e377c2",
                        "#7f7f7f",
                        "#bcbd22",
                        "#17becf"
                    ],
                    "dragmode": "select",
                    "template": {
                        "data": {
                            "bar": [
                                {
                                    "type": "bar",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "outside",
                                            "ticklen": 8,
                                            "tickcolor": "rgb(36,36,36)",
                                            "tickwidth": 2,
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "table": [
                                {
                                    "type": "table",
                                    "cells": {
                                        "fill": {
                                            "color": "rgb(231,231,240)"
                                        },
                                        "line": {
                                            "color": "white"
                                        }
                                    },
                                    "header": {
                                        "fill": {
                                            "color": "rgb(183,183,191)"
                                        },
                                        "line": {
                                            "color": "white"
                                        }
                                    }
                                }
                            ],
                            "carpet": [
                                {
                                    "type": "carpet",
                                    "aaxis": {
                                        "gridcolor": "white",
                                        "linecolor": "white",
                                        "endlinecolor": "rgb(36,36,36)",
                                        "minorgridcolor": "white",
                                        "startlinecolor": "rgb(36,36,36)"
                                    },
                                    "baxis": {
                                        "gridcolor": "white",
                                        "linecolor": "white",
                                        "endlinecolor": "rgb(36,36,36)",
                                        "minorgridcolor": "white",
                                        "startlinecolor": "rgb(36,36,36)"
                                    }
                                }
                            ],
                            "mesh3d": [
                                {
                                    "type": "mesh3d",
                                    "colorbar": {
                                        "ticks": "outside",
                                        "ticklen": 8,
                                        "tickcolor": "rgb(36,36,36)",
                                        "tickwidth": 2,
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "contour": [
                                {
                                    "type": "contour",
                                    "colorbar": {
                                        "ticks": "outside",
                                        "ticklen": 8,
                                        "tickcolor": "rgb(36,36,36)",
                                        "tickwidth": 2,
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ],
                            "heatmap": [
                                {
                                    "type": "heatmap",
                                    "colorbar": {
                                        "ticks": "outside",
                                        "ticklen": 8,
                                        "tickcolor": "rgb(36,36,36)",
                                        "tickwidth": 2,
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ],
                            "scatter": [
                                {
                                    "type": "scatter",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "outside",
                                            "ticklen": 8,
                                            "tickcolor": "rgb(36,36,36)",
                                            "tickwidth": 2,
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "surface": [
                                {
                                    "type": "surface",
                                    "colorbar": {
                                        "ticks": "outside",
                                        "ticklen": 8,
                                        "tickcolor": "rgb(36,36,36)",
                                        "tickwidth": 2,
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "heatmapgl": [
                                {
                                    "type": "heatmapgl",
                                    "colorbar": {
                                        "ticks": "outside",
                                        "ticklen": 8,
                                        "tickcolor": "rgb(36,36,36)",
                                        "tickwidth": 2,
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "histogram": [
                                {
                                    "type": "histogram",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "outside",
                                            "ticklen": 8,
                                            "tickcolor": "rgb(36,36,36)",
                                            "tickwidth": 2,
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "parcoords": [
                                {
                                    "line": {
                                        "colorbar": {
                                            "ticks": "outside",
                                            "ticklen": 8,
                                            "tickcolor": "rgb(36,36,36)",
                                            "tickwidth": 2,
                                            "outlinewidth": 0
                                        }
                                    },
                                    "type": "parcoords"
                                }
                            ],
                            "scatter3d": [
                                {
                                    "type": "scatter3d",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "outside",
                                            "ticklen": 8,
                                            "tickcolor": "rgb(36,36,36)",
                                            "tickwidth": 2,
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scattergl": [
                                {
                                    "type": "scattergl",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "outside",
                                            "ticklen": 8,
                                            "tickcolor": "rgb(36,36,36)",
                                            "tickwidth": 2,
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "choropleth": [
                                {
                                    "type": "choropleth",
                                    "colorbar": {
                                        "ticks": "outside",
                                        "ticklen": 8,
                                        "tickcolor": "rgb(36,36,36)",
                                        "tickwidth": 2,
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "scattergeo": [
                                {
                                    "type": "scattergeo",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "outside",
                                            "ticklen": 8,
                                            "tickcolor": "rgb(36,36,36)",
                                            "tickwidth": 2,
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "histogram2d": [
                                {
                                    "type": "histogram2d",
                                    "colorbar": {
                                        "ticks": "outside",
                                        "ticklen": 8,
                                        "tickcolor": "rgb(36,36,36)",
                                        "tickwidth": 2,
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ],
                            "scatterpolar": [
                                {
                                    "type": "scatterpolar",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "outside",
                                            "ticklen": 8,
                                            "tickcolor": "rgb(36,36,36)",
                                            "tickwidth": 2,
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "contourcarpet": [
                                {
                                    "type": "contourcarpet",
                                    "colorbar": {
                                        "ticks": "outside",
                                        "ticklen": 8,
                                        "tickcolor": "rgb(36,36,36)",
                                        "tickwidth": 2,
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "scattercarpet": [
                                {
                                    "type": "scattercarpet",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "outside",
                                            "ticklen": 8,
                                            "tickcolor": "rgb(36,36,36)",
                                            "tickwidth": 2,
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scattermapbox": [
                                {
                                    "type": "scattermapbox",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "outside",
                                            "ticklen": 8,
                                            "tickcolor": "rgb(36,36,36)",
                                            "tickwidth": 2,
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scatterpolargl": [
                                {
                                    "type": "scatterpolargl",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "outside",
                                            "ticklen": 8,
                                            "tickcolor": "rgb(36,36,36)",
                                            "tickwidth": 2,
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scatterternary": [
                                {
                                    "type": "scatterternary",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "outside",
                                            "ticklen": 8,
                                            "tickcolor": "rgb(36,36,36)",
                                            "tickwidth": 2,
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "histogram2dcontour": [
                                {
                                    "type": "histogram2dcontour",
                                    "colorbar": {
                                        "ticks": "outside",
                                        "ticklen": 8,
                                        "tickcolor": "rgb(36,36,36)",
                                        "tickwidth": 2,
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ]
                        },
                        "layout": {
                            "geo": {
                                "bgcolor": "white",
                                "showland": true,
                                "lakecolor": "white",
                                "landcolor": "rgb(234,234,242)",
                                "showlakes": true,
                                "subunitcolor": "white"
                            },
                            "font": {
                                "color": "rgb(36,36,36)"
                            },
                            "polar": {
                                "bgcolor": "rgb(234,234,242)",
                                "radialaxis": {
                                    "ticks": "",
                                    "showgrid": true,
                                    "gridcolor": "white",
                                    "linecolor": "white"
                                },
                                "angularaxis": {
                                    "ticks": "",
                                    "showgrid": true,
                                    "gridcolor": "white",
                                    "linecolor": "white"
                                }
                            },
                            "scene": {
                                "xaxis": {
                                    "ticks": "",
                                    "showgrid": true,
                                    "gridcolor": "white",
                                    "gridwidth": 2,
                                    "linecolor": "white",
                                    "zerolinecolor": "white",
                                    "showbackground": true,
                                    "backgroundcolor": "rgb(234,234,242)"
                                },
                                "yaxis": {
                                    "ticks": "",
                                    "showgrid": true,
                                    "gridcolor": "white",
                                    "gridwidth": 2,
                                    "linecolor": "white",
                                    "zerolinecolor": "white",
                                    "showbackground": true,
                                    "backgroundcolor": "rgb(234,234,242)"
                                },
                                "zaxis": {
                                    "ticks": "",
                                    "showgrid": true,
                                    "gridcolor": "white",
                                    "gridwidth": 2,
                                    "linecolor": "white",
                                    "zerolinecolor": "white",
                                    "showbackground": true,
                                    "backgroundcolor": "rgb(234,234,242)"
                                }
                            },
                            "xaxis": {
                                "ticks": "",
                                "showgrid": true,
                                "gridcolor": "white",
                                "linecolor": "white",
                                "automargin": true,
                                "zerolinecolor": "white"
                            },
                            "yaxis": {
                                "ticks": "",
                                "showgrid": true,
                                "gridcolor": "white",
                                "linecolor": "white",
                                "automargin": true,
                                "zerolinecolor": "white"
                            },
                            "ternary": {
                                "aaxis": {
                                    "ticks": "",
                                    "showgrid": true,
                                    "gridcolor": "white",
                                    "linecolor": "white"
                                },
                                "baxis": {
                                    "ticks": "",
                                    "showgrid": true,
                                    "gridcolor": "white",
                                    "linecolor": "white"
                                },
                                "caxis": {
                                    "ticks": "",
                                    "showgrid": true,
                                    "gridcolor": "white",
                                    "linecolor": "white"
                                },
                                "bgcolor": "rgb(234,234,242)"
                            },
                            "colorway": [
                                "rgb(76,114,176)",
                                "rgb(221,132,82)",
                                "rgb(85,168,104)",
                                "rgb(196,78,82)",
                                "rgb(129,114,179)",
                                "rgb(147,120,96)",
                                "rgb(218,139,195)",
                                "rgb(140,140,140)",
                                "rgb(204,185,116)",
                                "rgb(100,181,205)"
                            ],
                            "hovermode": "closest",
                            "colorscale": {
                                "diverging": [
                                    [
                                        0,
                                        "#67001f"
                                    ],
                                    [
                                        0.1,
                                        "#b2182b"
                                    ],
                                    [
                                        0.2,
                                        "#d6604d"
                                    ],
                                    [
                                        0.3,
                                        "#f4a582"
                                    ],
                                    [
                                        0.4,
                                        "#fddbc7"
                                    ],
                                    [
                                        0.5,
                                        "#f7f7f7"
                                    ],
                                    [
                                        0.6,
                                        "#d1e5f0"
                                    ],
                                    [
                                        0.7,
                                        "#92c5de"
                                    ],
                                    [
                                        0.8,
                                        "#4393c3"
                                    ],
                                    [
                                        0.9,
                                        "#2166ac"
                                    ],
                                    [
                                        1,
                                        "#053061"
                                    ]
                                ],
                                "sequential": [
                                    [
                                        0,
                                        "rgb(2,4,25)"
                                    ],
                                    [
                                        0.06274509803921569,
                                        "rgb(24,15,41)"
                                    ],
                                    [
                                        0.12549019607843137,
                                        "rgb(47,23,57)"
                                    ],
                                    [
                                        0.18823529411764706,
                                        "rgb(71,28,72)"
                                    ],
                                    [
                                        0.25098039215686274,
                                        "rgb(97,30,82)"
                                    ],
                                    [
                                        0.3137254901960784,
                                        "rgb(123,30,89)"
                                    ],
                                    [
                                        0.3764705882352941,
                                        "rgb(150,27,91)"
                                    ],
                                    [
                                        0.4392156862745098,
                                        "rgb(177,22,88)"
                                    ],
                                    [
                                        0.5019607843137255,
                                        "rgb(203,26,79)"
                                    ],
                                    [
                                        0.5647058823529412,
                                        "rgb(223,47,67)"
                                    ],
                                    [
                                        0.6274509803921569,
                                        "rgb(236,76,61)"
                                    ],
                                    [
                                        0.6901960784313725,
                                        "rgb(242,107,73)"
                                    ],
                                    [
                                        0.7529411764705882,
                                        "rgb(244,135,95)"
                                    ],
                                    [
                                        0.8156862745098039,
                                        "rgb(245,162,122)"
                                    ],
                                    [
                                        0.8784313725490196,
                                        "rgb(246,188,153)"
                                    ],
                                    [
                                        0.9411764705882353,
                                        "rgb(247,212,187)"
                                    ],
                                    [
                                        1,
                                        "rgb(250,234,220)"
                                    ]
                                ],
                                "sequentialminus": [
                                    [
                                        0,
                                        "rgb(2,4,25)"
                                    ],
                                    [
                                        0.06274509803921569,
                                        "rgb(24,15,41)"
                                    ],
                                    [
                                        0.12549019607843137,
                                        "rgb(47,23,57)"
                                    ],
                                    [
                                        0.18823529411764706,
                                        "rgb(71,28,72)"
                                    ],
                                    [
                                        0.25098039215686274,
                                        "rgb(97,30,82)"
                                    ],
                                    [
                                        0.3137254901960784,
                                        "rgb(123,30,89)"
                                    ],
                                    [
                                        0.3764705882352941,
                                        "rgb(150,27,91)"
                                    ],
                                    [
                                        0.4392156862745098,
                                        "rgb(177,22,88)"
                                    ],
                                    [
                                        0.5019607843137255,
                                        "rgb(203,26,79)"
                                    ],
                                    [
                                        0.5647058823529412,
                                        "rgb(223,47,67)"
                                    ],
                                    [
                                        0.6274509803921569,
                                        "rgb(236,76,61)"
                                    ],
                                    [
                                        0.6901960784313725,
                                        "rgb(242,107,73)"
                                    ],
                                    [
                                        0.7529411764705882,
                                        "rgb(244,135,95)"
                                    ],
                                    [
                                        0.8156862745098039,
                                        "rgb(245,162,122)"
                                    ],
                                    [
                                        0.8784313725490196,
                                        "rgb(246,188,153)"
                                    ],
                                    [
                                        0.9411764705882353,
                                        "rgb(247,212,187)"
                                    ],
                                    [
                                        1,
                                        "rgb(250,234,220)"
                                    ]
                                ]
                            },
                            "plot_bgcolor": "rgb(234,234,242)",
                            "paper_bgcolor": "white",
                            "shapedefaults": {
                                "line": {
                                    "width": 0
                                },
                                "opacity": 0.5,
                                "fillcolor": "rgb(67,103,167)"
                            },
                            "annotationdefaults": {
                                "arrowcolor": "rgb(67,103,167)"
                            }
                        },
                        "themeRef": "SEABORN"
                    },
                    "clickmode": "event",
                    "colorscale": {
                        "sequentialminus": [
                            [
                                0,
                                "#440154"
                            ],
                            [
                                0.1111111111111111,
                                "#482878"
                            ],
                            [
                                0.2222222222222222,
                                "#3e4989"
                            ],
                            [
                                0.3333333333333333,
                                "#31688e"
                            ],
                            [
                                0.4444444444444444,
                                "#26828e"
                            ],
                            [
                                0.5555555555555556,
                                "#1f9e89"
                            ],
                            [
                                0.6666666666666666,
                                "#35b779"
                            ],
                            [
                                0.7777777777777778,
                                "#6ece58"
                            ],
                            [
                                0.8888888888888888,
                                "#b5de2b"
                            ],
                            [
                                1,
                                "#fde725"
                            ]
                        ]
                    },
                    "showlegend": true,
                    "annotations": [],
                    "plot_bgcolor": "rgb(234, 234, 242)"
                }
            },
            "height": 467,
            "width": 1459,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~frmeyer",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/41.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-9.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2022-11-29 13:51:29",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "frmeyer",
                "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": "2025-07-03T09:32:20.490171Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~dolevsandrusi/4.embed",
            "fid": "dolevsandrusi:4",
            "filename": "Plot 4",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/dolevsandrusi/4/9_CRJ6GOV6JL5UMMK53UH3CW7RDU8AQQ.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/dolevsandrusi/4/2_VAMM93T0VXEZIM936FPI6JWMW0BX5C.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/dolevsandrusi/4/8_RA9TAYTVSX56MPAFOPKOZHIMQGAXAP.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/dolevsandrusi/4/9_CRJ6GOV6JL5UMMK53UH3CW7RDU8AQQ.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/dolevsandrusi:4",
                "plots": "https://api.plotly.com/v2/plots/dolevsandrusi:4",
                "parent": "https://api.plotly.com/v2/folders/home?user=dolevsandrusi"
            },
            "owner": "dolevsandrusi",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 0,
            "web_url": "https://chart-studio.plotly.com/~dolevsandrusi/4/",
            "world_readable": true,
            "date_modified": "2025-07-03T09:32:20.500Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~dolevsandrusi/4/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": false,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "meta": {
                            "columnNames": {
                                "x": "delta",
                                "y": "Yaxix"
                            }
                        },
                        "mode": "markers",
                        "type": "scatter",
                        "xsrc": "dolevsandrusi:3:a2d1d0",
                        "ysrc": "dolevsandrusi:3:8ad427"
                    }
                ],
                "frames": [],
                "layout": {
                    "xaxis": {
                        "type": "linear",
                        "range": [
                            -18782.03562023562,
                            1258.43562023562
                        ],
                        "autorange": true,
                        "showspikes": false
                    },
                    "yaxis": {
                        "type": "linear",
                        "range": [
                            -18881.032954814287,
                            1159.232954814289
                        ],
                        "autorange": true,
                        "showspikes": false
                    },
                    "autosize": true,
                    "template": {
                        "data": {
                            "bar": [
                                {
                                    "type": "bar",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "table": [
                                {
                                    "type": "table",
                                    "cells": {
                                        "fill": {
                                            "color": "#EBF0F8"
                                        },
                                        "line": {
                                            "color": "white"
                                        }
                                    },
                                    "header": {
                                        "fill": {
                                            "color": "#C8D4E3"
                                        },
                                        "line": {
                                            "color": "white"
                                        }
                                    }
                                }
                            ],
                            "carpet": [
                                {
                                    "type": "carpet",
                                    "aaxis": {
                                        "gridcolor": "#C8D4E3",
                                        "linecolor": "#C8D4E3",
                                        "endlinecolor": "#2a3f5f",
                                        "minorgridcolor": "#C8D4E3",
                                        "startlinecolor": "#2a3f5f"
                                    },
                                    "baxis": {
                                        "gridcolor": "#C8D4E3",
                                        "linecolor": "#C8D4E3",
                                        "endlinecolor": "#2a3f5f",
                                        "minorgridcolor": "#C8D4E3",
                                        "startlinecolor": "#2a3f5f"
                                    }
                                }
                            ],
                            "mesh3d": [
                                {
                                    "type": "mesh3d",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "contour": [
                                {
                                    "type": "contour",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ],
                            "heatmap": [
                                {
                                    "type": "heatmap",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ],
                            "scatter": [
                                {
                                    "type": "scatter",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "surface": [
                                {
                                    "type": "surface",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "heatmapgl": [
                                {
                                    "type": "heatmapgl",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "histogram": [
                                {
                                    "type": "histogram",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "parcoords": [
                                {
                                    "line": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    },
                                    "type": "parcoords"
                                }
                            ],
                            "scatter3d": [
                                {
                                    "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
                                    },
                                    "autocolorscale": true
                                }
                            ],
                            "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
                                    },
                                    "autocolorscale": true
                                }
                            ]
                        },
                        "layout": {
                            "geo": {
                                "bgcolor": "white",
                                "showland": true,
                                "lakecolor": "white",
                                "landcolor": "white",
                                "showlakes": true,
                                "subunitcolor": "#C8D4E3"
                            },
                            "font": {
                                "color": "#2a3f5f"
                            },
                            "polar": {
                                "bgcolor": "white",
                                "radialaxis": {
                                    "ticks": "",
                                    "gridcolor": "#EBF0F8",
                                    "linecolor": "#EBF0F8"
                                },
                                "angularaxis": {
                                    "ticks": "",
                                    "gridcolor": "#EBF0F8",
                                    "linecolor": "#EBF0F8"
                                }
                            },
                            "scene": {
                                "xaxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "gridwidth": 2,
                                    "linecolor": "#EBF0F8",
                                    "zerolinecolor": "#EBF0F8",
                                    "showbackground": true,
                                    "backgroundcolor": "white"
                                },
                                "yaxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "gridwidth": 2,
                                    "linecolor": "#EBF0F8",
                                    "zerolinecolor": "#EBF0F8",
                                    "showbackground": true,
                                    "backgroundcolor": "white"
                                },
                                "zaxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "gridwidth": 2,
                                    "linecolor": "#EBF0F8",
                                    "zerolinecolor": "#EBF0F8",
                                    "showbackground": true,
                                    "backgroundcolor": "white"
                                }
                            },
                            "title": {
                                "x": 0.05
                            },
                            "xaxis": {
                                "ticks": "",
                                "gridcolor": "#EBF0F8",
                                "linecolor": "#EBF0F8",
                                "automargin": true,
                                "zerolinecolor": "#EBF0F8",
                                "zerolinewidth": 2
                            },
                            "yaxis": {
                                "ticks": "",
                                "gridcolor": "#EBF0F8",
                                "linecolor": "#EBF0F8",
                                "automargin": true,
                                "zerolinecolor": "#EBF0F8",
                                "zerolinewidth": 2
                            },
                            "ternary": {
                                "aaxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "linecolor": "#A2B1C6"
                                },
                                "baxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "linecolor": "#A2B1C6"
                                },
                                "caxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "linecolor": "#A2B1C6"
                                },
                                "bgcolor": "white"
                            },
                            "colorway": [
                                "#636efa",
                                "#EF553B",
                                "#00cc96",
                                "#ab63fa",
                                "#19d3f3",
                                "#e763fa",
                                "#fecb52",
                                "#ffa15a",
                                "#ff6692",
                                "#b6e880"
                            ],
                            "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,
                                        "#0508b8"
                                    ],
                                    [
                                        0.0893854748603352,
                                        "#1910d8"
                                    ],
                                    [
                                        0.1787709497206704,
                                        "#3c19f0"
                                    ],
                                    [
                                        0.2681564245810056,
                                        "#6b1cfb"
                                    ],
                                    [
                                        0.3575418994413408,
                                        "#981cfd"
                                    ],
                                    [
                                        0.44692737430167595,
                                        "#bf1cfd"
                                    ],
                                    [
                                        0.5363128491620112,
                                        "#dd2bfd"
                                    ],
                                    [
                                        0.6256983240223464,
                                        "#f246fe"
                                    ],
                                    [
                                        0.7150837988826816,
                                        "#fc67fd"
                                    ],
                                    [
                                        0.8044692737430168,
                                        "#fe88fc"
                                    ],
                                    [
                                        0.8938547486033519,
                                        "#fea5fd"
                                    ],
                                    [
                                        0.9832402234636871,
                                        "#febefe"
                                    ],
                                    [
                                        1,
                                        "#fec3fe"
                                    ]
                                ],
                                "sequentialminus": [
                                    [
                                        0,
                                        "#0508b8"
                                    ],
                                    [
                                        0.0893854748603352,
                                        "#1910d8"
                                    ],
                                    [
                                        0.1787709497206704,
                                        "#3c19f0"
                                    ],
                                    [
                                        0.2681564245810056,
                                        "#6b1cfb"
                                    ],
                                    [
                                        0.3575418994413408,
                                        "#981cfd"
                                    ],
                                    [
                                        0.44692737430167595,
                                        "#bf1cfd"
                                    ],
                                    [
                                        0.5363128491620112,
                                        "#dd2bfd"
                                    ],
                                    [
                                        0.6256983240223464,
                                        "#f246fe"
                                    ],
                                    [
                                        0.7150837988826816,
                                        "#fc67fd"
                                    ],
                                    [
                                        0.8044692737430168,
                                        "#fe88fc"
                                    ],
                                    [
                                        0.8938547486033519,
                                        "#fea5fd"
                                    ],
                                    [
                                        0.9832402234636871,
                                        "#febefe"
                                    ],
                                    [
                                        1,
                                        "#fec3fe"
                                    ]
                                ]
                            },
                            "plot_bgcolor": "white",
                            "paper_bgcolor": "white",
                            "shapedefaults": {
                                "line": {
                                    "width": 0
                                },
                                "opacity": 0.4,
                                "fillcolor": "#506784"
                            },
                            "annotationdefaults": {
                                "arrowhead": 0,
                                "arrowcolor": "#506784",
                                "arrowwidth": 1
                            }
                        },
                        "themeRef": "PLOTLY_WHITE"
                    }
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~dolevsandrusi",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/28.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-2.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2025-07-03 06:01:14",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "dolevsandrusi",
                "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": "2025-07-03T08:54:10.023123Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~hannah_roos/906.embed",
            "fid": "hannah_roos:906",
            "filename": "tonality_breakdown_industries",
            "filetype": "plot",
            "img_url": "https://api.plotly.com/v2/files/hannah_roos:906/image?image_name=list-thumb",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/hannah_roos/906/2_4VIKFNLAAJ6RVGMQVLMPXJFATCKEKF.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/hannah_roos/906/8_J29VWRB2MXRE984AC52TQODZXJCWR9.png",
                "list-thumb": "https://api.plotly.com/v2/files/hannah_roos:906/image?image_name=list-thumb"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/hannah_roos:906",
                "plots": "https://api.plotly.com/v2/plots/hannah_roos:906",
                "parent": "https://api.plotly.com/v2/folders/home?user=hannah_roos"
            },
            "owner": "hannah_roos",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 0,
            "web_url": "https://chart-studio.plotly.com/~hannah_roos/906/",
            "world_readable": true,
            "date_modified": "2025-07-03T08:54:10.035Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~hannah_roos/906/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "name": "hard",
                        "type": "bar",
                        "xsrc": "hannah_roos:905:5c3ab1",
                        "ysrc": "hannah_roos:905:5d9300",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "color": "rgb(102,194,165)",
                            "pattern": {
                                "shape": ""
                            }
                        },
                        "showlegend": true,
                        "legendgroup": "hard",
                        "offsetgroup": "hard",
                        "orientation": "h",
                        "textposition": "auto",
                        "customdatasrc": "hannah_roos:905:163a8d",
                        "hovertemplate": "<b>%{customdata[0]}</b><br>N = %{customdata[1]}<extra></extra>",
                        "alignmentgroup": "True"
                    },
                    {
                        "name": "reciprocity",
                        "type": "bar",
                        "xsrc": "hannah_roos:905:fad944",
                        "ysrc": "hannah_roos:905:8af4fb",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "color": "rgb(252,141,98)",
                            "pattern": {
                                "shape": ""
                            }
                        },
                        "showlegend": true,
                        "legendgroup": "reciprocity",
                        "offsetgroup": "reciprocity",
                        "orientation": "h",
                        "textposition": "auto",
                        "customdatasrc": "hannah_roos:905:5d8d77",
                        "hovertemplate": "<b>%{customdata[0]}</b><br>N = %{customdata[1]}<extra></extra>",
                        "alignmentgroup": "True"
                    },
                    {
                        "name": "default",
                        "type": "bar",
                        "xsrc": "hannah_roos:905:265625",
                        "ysrc": "hannah_roos:905:781087",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "color": "rgb(141,160,203)",
                            "pattern": {
                                "shape": ""
                            }
                        },
                        "showlegend": true,
                        "legendgroup": "default",
                        "offsetgroup": "default",
                        "orientation": "h",
                        "textposition": "auto",
                        "customdatasrc": "hannah_roos:905:c7e0c4",
                        "hovertemplate": "<b>%{customdata[0]}</b><br>N = %{customdata[1]}<extra></extra>",
                        "alignmentgroup": "True"
                    },
                    {
                        "name": "social_comparison",
                        "type": "bar",
                        "xsrc": "hannah_roos:905:c7f6a2",
                        "ysrc": "hannah_roos:905:ef9ca5",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "color": "rgb(231,138,195)",
                            "pattern": {
                                "shape": ""
                            }
                        },
                        "showlegend": true,
                        "legendgroup": "social_comparison",
                        "offsetgroup": "social_comparison",
                        "orientation": "h",
                        "textposition": "auto",
                        "customdatasrc": "hannah_roos:905:815f1b",
                        "hovertemplate": "<b>%{customdata[0]}</b><br>N = %{customdata[1]}<extra></extra>",
                        "alignmentgroup": "True"
                    },
                    {
                        "name": "cooperative",
                        "type": "bar",
                        "xsrc": "hannah_roos:905:eb194a",
                        "ysrc": "hannah_roos:905:0f834f",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "color": "rgb(166,216,84)",
                            "pattern": {
                                "shape": ""
                            }
                        },
                        "showlegend": true,
                        "legendgroup": "cooperative",
                        "offsetgroup": "cooperative",
                        "orientation": "h",
                        "textposition": "auto",
                        "customdatasrc": "hannah_roos:905:cab347",
                        "hovertemplate": "<b>%{customdata[0]}</b><br>N = %{customdata[1]}<extra></extra>",
                        "alignmentgroup": "True"
                    }
                ],
                "layout": {
                    "title": {
                        "text": "Tonality Breakdown by Industry"
                    },
                    "width": 1200,
                    "xaxis": {
                        "title": {
                            "text": "Number of Occurrences"
                        },
                        "anchor": "y",
                        "domain": [
                            0.0,
                            1.0
                        ]
                    },
                    "yaxis": {
                        "title": {
                            "text": "Industry"
                        },
                        "anchor": "x",
                        "domain": [
                            0.0,
                            1.0
                        ]
                    },
                    "bargap": 0.2,
                    "height": 500,
                    "legend": {
                        "x": 1,
                        "y": 1.02,
                        "title": {
                            "text": "Tonality Strategy"
                        },
                        "xanchor": "right",
                        "yanchor": "bottom",
                        "orientation": "h",
                        "tracegroupgap": 0
                    },
                    "barmode": "stack",
                    "template": {
                        "data": {
                            "bar": [
                                {
                                    "type": "bar",
                                    "marker": {
                                        "line": {
                                            "color": "white",
                                            "width": 0.5
                                        },
                                        "pattern": {
                                            "size": 10,
                                            "fillmode": "overlay",
                                            "solidity": 0.2
                                        }
                                    },
                                    "error_x": {
                                        "color": "#2a3f5f"
                                    },
                                    "error_y": {
                                        "color": "#2a3f5f"
                                    }
                                }
                            ],
                            "pie": [
                                {
                                    "type": "pie",
                                    "automargin": true
                                }
                            ],
                            "table": [
                                {
                                    "type": "table",
                                    "cells": {
                                        "fill": {
                                            "color": "#EBF0F8"
                                        },
                                        "line": {
                                            "color": "white"
                                        }
                                    },
                                    "header": {
                                        "fill": {
                                            "color": "#C8D4E3"
                                        },
                                        "line": {
                                            "color": "white"
                                        }
                                    }
                                }
                            ],
                            "carpet": [
                                {
                                    "type": "carpet",
                                    "aaxis": {
                                        "gridcolor": "#C8D4E3",
                                        "linecolor": "#C8D4E3",
                                        "endlinecolor": "#2a3f5f",
                                        "minorgridcolor": "#C8D4E3",
                                        "startlinecolor": "#2a3f5f"
                                    },
                                    "baxis": {
                                        "gridcolor": "#C8D4E3",
                                        "linecolor": "#C8D4E3",
                                        "endlinecolor": "#2a3f5f",
                                        "minorgridcolor": "#C8D4E3",
                                        "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
                                    },
                                    "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"
                                        ]
                                    ]
                                }
                            ],
                            "barpolar": [
                                {
                                    "type": "barpolar",
                                    "marker": {
                                        "line": {
                                            "color": "white",
                                            "width": 0.5
                                        },
                                        "pattern": {
                                            "size": 10,
                                            "fillmode": "overlay",
                                            "solidity": 0.2
                                        }
                                    }
                                }
                            ],
                            "heatmapgl": [
                                {
                                    "type": "heatmapgl",
                                    "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"
                                        ]
                                    ]
                                }
                            ],
                            "histogram": [
                                {
                                    "type": "histogram",
                                    "marker": {
                                        "pattern": {
                                            "size": 10,
                                            "fillmode": "overlay",
                                            "solidity": 0.2
                                        }
                                    }
                                }
                            ],
                            "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": "white",
                                "showlakes": true,
                                "subunitcolor": "#C8D4E3"
                            },
                            "font": {
                                "color": "#2a3f5f"
                            },
                            "polar": {
                                "bgcolor": "white",
                                "radialaxis": {
                                    "ticks": "",
                                    "gridcolor": "#EBF0F8",
                                    "linecolor": "#EBF0F8"
                                },
                                "angularaxis": {
                                    "ticks": "",
                                    "gridcolor": "#EBF0F8",
                                    "linecolor": "#EBF0F8"
                                }
                            },
                            "scene": {
                                "xaxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "gridwidth": 2,
                                    "linecolor": "#EBF0F8",
                                    "zerolinecolor": "#EBF0F8",
                                    "showbackground": true,
                                    "backgroundcolor": "white"
                                },
                                "yaxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "gridwidth": 2,
                                    "linecolor": "#EBF0F8",
                                    "zerolinecolor": "#EBF0F8",
                                    "showbackground": true,
                                    "backgroundcolor": "white"
                                },
                                "zaxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "gridwidth": 2,
                                    "linecolor": "#EBF0F8",
                                    "zerolinecolor": "#EBF0F8",
                                    "showbackground": true,
                                    "backgroundcolor": "white"
                                }
                            },
                            "title": {
                                "x": 0.05
                            },
                            "xaxis": {
                                "ticks": "",
                                "title": {
                                    "standoff": 15
                                },
                                "gridcolor": "#EBF0F8",
                                "linecolor": "#EBF0F8",
                                "automargin": true,
                                "zerolinecolor": "#EBF0F8",
                                "zerolinewidth": 2
                            },
                            "yaxis": {
                                "ticks": "",
                                "title": {
                                    "standoff": 15
                                },
                                "gridcolor": "#EBF0F8",
                                "linecolor": "#EBF0F8",
                                "automargin": true,
                                "zerolinecolor": "#EBF0F8",
                                "zerolinewidth": 2
                            },
                            "mapbox": {
                                "style": "light"
                            },
                            "ternary": {
                                "aaxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "linecolor": "#A2B1C6"
                                },
                                "baxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "linecolor": "#A2B1C6"
                                },
                                "caxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "linecolor": "#A2B1C6"
                                },
                                "bgcolor": "white"
                            },
                            "colorway": [
                                "#636efa",
                                "#EF553B",
                                "#00cc96",
                                "#ab63fa",
                                "#FFA15A",
                                "#19d3f3",
                                "#FF6692",
                                "#B6E880",
                                "#FF97FF",
                                "#FECB52"
                            ],
                            "coloraxis": {
                                "colorbar": {
                                    "ticks": "",
                                    "outlinewidth": 0
                                }
                            },
                            "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": "white",
                            "paper_bgcolor": "white",
                            "shapedefaults": {
                                "line": {
                                    "color": "#2a3f5f"
                                }
                            },
                            "autotypenumbers": "strict",
                            "annotationdefaults": {
                                "arrowhead": 0,
                                "arrowcolor": "#2a3f5f",
                                "arrowwidth": 1
                            }
                        }
                    }
                }
            },
            "height": 500,
            "width": 1200,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~hannah_roos",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/28.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": "2023-01-03 08:23:50",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "hannah_roos",
                "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": "2025-07-03T08:51:05.965155Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~MattSundquist/22545.embed",
            "fid": "MattSundquist:22545",
            "filename": "Plot 22545",
            "filetype": "plot",
            "img_url": "https://api.plotly.com/v2/files/MattSundquist:22545/image?image_name=list-thumb",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/MattSundquist/22545/2_TVBAJQMSHFB63IM9DNEIOE5N2QWBW8.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/MattSundquist/22545/8_7FZVVL35IJ4IPU7P1OTTFUCNZ402B6.png",
                "list-thumb": "https://api.plotly.com/v2/files/MattSundquist:22545/image?image_name=list-thumb"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/MattSundquist:22545",
                "plots": "https://api.plotly.com/v2/plots/MattSundquist:22545",
                "parent": "https://api.plotly.com/v2/folders/home?user=MattSundquist"
            },
            "owner": "MattSundquist",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 0,
            "web_url": "https://chart-studio.plotly.com/~MattSundquist/22545/",
            "world_readable": true,
            "date_modified": "2025-07-03T08:51:06.011Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~MattSundquist/22545/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": false,
            "autosize": false,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "uid": "4f4833",
                        "meta": {
                            "columnNames": {
                                "x": "Distance to Child_Child&#39;s Age",
                                "y": "Distance to Child_Mean Distance to Child [as declared on Facebook] (miles)"
                            }
                        },
                        "mode": "markers",
                        "name": "Distance to Child",
                        "type": "scatter",
                        "xsrc": "MattSundquist:15302:d57973",
                        "ysrc": "MattSundquist:15302:dd1a58",
                        "marker": {
                            "line": {
                                "color": "rgb(217, 217, 217)",
                                "width": 0.5
                            },
                            "size": 8,
                            "color": "rgb(100, 181, 255)"
                        },
                        "error_x": {},
                        "error_y": {},
                        "textfont": {}
                    },
                    {
                        "fit": {
                            "rms": 10.225158418837305,
                            "uid": "805005",
                            "corr": 0.9918042315127685,
                            "params": [
                                {
                                    "err": 514.8698355389339,
                                    "hold": false,
                                    "name": "a",
                                    "value": 1593.3437819687083
                                },
                                {
                                    "err": 106.14527946004448,
                                    "hold": false,
                                    "name": "b",
                                    "value": -281.37022784661957
                                },
                                {
                                    "err": 8.636821869828283,
                                    "hold": false,
                                    "name": "c",
                                    "value": 21.513114164878147
                                },
                                {
                                    "err": 0.35648424163248676,
                                    "hold": false,
                                    "name": "d",
                                    "value": -0.7812928003912942
                                },
                                {
                                    "err": 0.007908616362106491,
                                    "hold": false,
                                    "name": "e",
                                    "value": 0.014870575593640743
                                },
                                {
                                    "err": 8.983056720162337e-05,
                                    "hold": false,
                                    "name": "f",
                                    "value": -0.00014374566194034471
                                },
                                {
                                    "err": 4.0990574150125277e-07,
                                    "hold": false,
                                    "name": "g",
                                    "value": 5.605421722382666e-07
                                }
                            ],
                            "parent": [
                                "4f4833"
                            ],
                            "fitname": "Col2 - fit",
                            "funcStr": "a + b*x + c*x^2 + d*x^3 + e*x^4 + f*x^5 + g*x^6",
                            "ninterp": "50",
                            "iterations": 1,
                            "inputxrange": [
                                "",
                                ""
                            ],
                            "outputxrange": [
                                "",
                                ""
                            ]
                        },
                        "uid": "805005",
                        "line": {
                            "dash": "solid",
                            "color": "rgba(28, 69, 135, 0.6)",
                            "width": 2
                        },
                        "meta": {
                            "columnNames": {
                                "x": "y = 1593 - 281.4*x + 21.51*x^2 - .7813*x^3 + .01487*x^4 - .0001437*x^5 + .0000005606*x^6_Child&#39;s Age",
                                "y": "y = 1593 - 281.4*x + 21.51*x^2 - .7813*x^3 + .01487*x^4 - .0001437*x^5 + .0000005606*x^6_Mean Distance to Child [as declared on Facebook] (miles)"
                            }
                        },
                        "name": "y = 1593 - 281.4*x + 21.51*x^2 - .7813*x^3 + .01487*x^4 - .0001437*x^5 + .0000005606*x^6",
                        "type": "scatter",
                        "xsrc": "MattSundquist:15302:1ed5d1",
                        "ysrc": "MattSundquist:15302:38f93b",
                        "xaxis": "x",
                        "yaxis": "y",
                        "error_x": {},
                        "error_y": {},
                        "opacity": 0.8,
                        "textfont": {},
                        "transforms": [
                            {
                                "rms": 10.225158418837305,
                                "type": "fit",
                                "inputUid": "4f4833",
                                "regressor": "x",
                                "parameters": [
                                    {
                                        "hold": false,
                                        "name": "a",
                                        "error": 514.86982575649,
                                        "value": 1593.3437819687083
                                    },
                                    {
                                        "hold": false,
                                        "name": "b",
                                        "error": 106.1452774159566,
                                        "value": -281.37022784661957
                                    },
                                    {
                                        "hold": false,
                                        "name": "c",
                                        "error": 8.636821703378988,
                                        "value": 21.513114164878147
                                    },
                                    {
                                        "hold": false,
                                        "name": "d",
                                        "error": 0.35648423483144664,
                                        "value": -0.7812928003912942
                                    },
                                    {
                                        "hold": false,
                                        "name": "e",
                                        "error": 0.007908616214009642,
                                        "value": 0.014870575593640743
                                    },
                                    {
                                        "hold": false,
                                        "name": "f",
                                        "error": 8.983056556085422e-05,
                                        "value": -0.00014374566194034471
                                    },
                                    {
                                        "hold": false,
                                        "name": "g",
                                        "error": 4.099057342309101e-07,
                                        "value": 5.605421722382666e-07
                                    }
                                ],
                                "regressand": "y",
                                "correlation": 0.9918042315127685,
                                "fitfunction": "a + b*x + c*x^2 + d*x^3 + e*x^4 + f*x^5 + g*x^6",
                                "inputxrange": [
                                    "",
                                    ""
                                ],
                                "outputxrange": [
                                    "",
                                    ""
                                ],
                                "interpolation": "50"
                            }
                        ]
                    },
                    {
                        "uid": "3eda14",
                        "fill": "none",
                        "line": {
                            "color": "rgb(67, 67, 67)",
                            "width": 0.5
                        },
                        "meta": {
                            "columnNames": {
                                "x": "Error Bound (Upper)_Child&#39;s Age",
                                "y": "Error Bound (Upper)_Mean Distance to Child [as declared on Facebook] (miles)"
                            }
                        },
                        "mode": "none",
                        "name": "Error Bound (Upper)",
                        "type": "scatter",
                        "xsrc": "MattSundquist:15302:19c4c8",
                        "ysrc": "MattSundquist:15302:53cfb2",
                        "error_x": {},
                        "error_y": {},
                        "opacity": 1,
                        "visible": false,
                        "textfont": {}
                    },
                    {
                        "uid": "6bc1a0",
                        "fill": "tonextx",
                        "line": {
                            "color": "rgb(67, 67, 67)",
                            "width": 0.5
                        },
                        "meta": {
                            "columnNames": {
                                "x": "Error Bound (Lower)_Child&#39;s Age",
                                "y": "Error Bound (Lower)_Mean Distance to Child [as declared on Facebook] (miles)"
                            }
                        },
                        "mode": "none",
                        "name": "Error Bound (Lower)",
                        "type": "scatter",
                        "xsrc": "MattSundquist:15302:c98cf7",
                        "ysrc": "MattSundquist:15302:98897f",
                        "error_x": {},
                        "error_y": {},
                        "visible": false,
                        "textfont": {},
                        "fillcolor": "rgb(217, 217, 217)"
                    },
                    {
                        "uid": "ceccb0",
                        "meta": {
                            "columnNames": {
                                "x": "trace 4_Mean Distance to Child [as declared on Facebook] (miles), trace 4_Child&#39;s Age, trace 5_Mean Distance to Child [as declared on Facebook] (miles), trace 5_Child&#39;s Age, trace 6_Mean Distance to Child [as declared on Facebook] (miles), trace 6_Child&#39;s Age, trace 7_Mean Distance to Child [as declared on Facebook] (miles), trace 7_Child&#39;s Age, trace 8_Mean Distance to Child [as declared on Facebook] (miles), trace 8_Child&#39;s Age, trace 9_Child&#39;s Age, trace 10_Mean Distance to Child [as declared on Facebook] (miles), trace 10_Child&#39;s Age, trace 11_Mean Distance to Child [as declared on Facebook] (miles), trace 11_Child&#39;s Age, trace 12_Mean Distance to Child [as declared on Facebook] (miles), trace 12_Child&#39;s Age, trace 13_Mean Distance to Child [as declared on Facebook] (miles), trace 13_Child&#39;s Age, trace 14_Mean Distance to Child [as declared on Facebook] (miles), trace 14_Child&#39;s Age, trace 15_Mean Distance to Child [as declared on Facebook] (miles), trace 15_Child&#39;s Age, trace 16_Mean Distance to Child [as declared on Facebook] (miles), trace 16_Child&#39;s Age, trace 17_Mean Distance to Child [as declared on Facebook] (miles), trace 17_Child&#39;s Age, trace 18_Mean Distance to Child [as declared on Facebook] (miles), trace 18_Child&#39;s Age, trace 19_Mean Distance to Child [as declared on Facebook] (miles), trace 19_Child&#39;s Age, trace 20_Mean Distance to Child [as declared on Facebook] (miles), trace 20_Child&#39;s Age",
                                "y": "trace 4_Mean Distance to Child [as declared on Facebook] (miles), trace 4_Child&#39;s Age, trace 5_Mean Distance to Child [as declared on Facebook] (miles), trace 5_Child&#39;s Age, trace 6_Mean Distance to Child [as declared on Facebook] (miles), trace 6_Child&#39;s Age, trace 7_Mean Distance to Child [as declared on Facebook] (miles), trace 7_Child&#39;s Age, trace 8_Mean Distance to Child [as declared on Facebook] (miles), trace 8_Child&#39;s Age, trace 9_Child&#39;s Age, trace 10_Mean Distance to Child [as declared on Facebook] (miles), trace 10_Child&#39;s Age, trace 11_Mean Distance to Child [as declared on Facebook] (miles), trace 11_Child&#39;s Age, trace 12_Mean Distance to Child [as declared on Facebook] (miles), trace 12_Child&#39;s Age, trace 13_Mean Distance to Child [as declared on Facebook] (miles), trace 13_Child&#39;s Age, trace 14_Mean Distance to Child [as declared on Facebook] (miles), trace 14_Child&#39;s Age, trace 15_Mean Distance to Child [as declared on Facebook] (miles), trace 15_Child&#39;s Age, trace 16_Mean Distance to Child [as declared on Facebook] (miles), trace 16_Child&#39;s Age, trace 17_Mean Distance to Child [as declared on Facebook] (miles), trace 17_Child&#39;s Age, trace 18_Mean Distance to Child [as declared on Facebook] (miles), trace 18_Child&#39;s Age, trace 19_Mean Distance to Child [as declared on Facebook] (miles), trace 19_Child&#39;s Age, trace 20_Mean Distance to Child [as declared on Facebook] (miles), trace 20_Child&#39;s Age"
                            }
                        },
                        "mode": "markers",
                        "name": "trace 4",
                        "type": "scatter",
                        "xsrc": "MattSundquist:15302:2c96b3",
                        "ysrc": "MattSundquist:15302:2c96b3",
                        "error_x": {},
                        "error_y": {},
                        "visible": false,
                        "textfont": {}
                    },
                    {
                        "uid": "154678",
                        "meta": {
                            "columnNames": {
                                "x": "trace 4_Mean Distance to Child [as declared on Facebook] (miles), trace 4_Child&#39;s Age, trace 5_Mean Distance to Child [as declared on Facebook] (miles), trace 5_Child&#39;s Age, trace 6_Mean Distance to Child [as declared on Facebook] (miles), trace 6_Child&#39;s Age, trace 7_Mean Distance to Child [as declared on Facebook] (miles), trace 7_Child&#39;s Age, trace 8_Mean Distance to Child [as declared on Facebook] (miles), trace 8_Child&#39;s Age, trace 9_Child&#39;s Age, trace 10_Mean Distance to Child [as declared on Facebook] (miles), trace 10_Child&#39;s Age, trace 11_Mean Distance to Child [as declared on Facebook] (miles), trace 11_Child&#39;s Age, trace 12_Mean Distance to Child [as declared on Facebook] (miles), trace 12_Child&#39;s Age, trace 13_Mean Distance to Child [as declared on Facebook] (miles), trace 13_Child&#39;s Age, trace 14_Mean Distance to Child [as declared on Facebook] (miles), trace 14_Child&#39;s Age, trace 15_Mean Distance to Child [as declared on Facebook] (miles), trace 15_Child&#39;s Age, trace 16_Mean Distance to Child [as declared on Facebook] (miles), trace 16_Child&#39;s Age, trace 17_Mean Distance to Child [as declared on Facebook] (miles), trace 17_Child&#39;s Age, trace 18_Mean Distance to Child [as declared on Facebook] (miles), trace 18_Child&#39;s Age, trace 19_Mean Distance to Child [as declared on Facebook] (miles), trace 19_Child&#39;s Age, trace 20_Mean Distance to Child [as declared on Facebook] (miles), trace 20_Child&#39;s Age",
                                "y": "trace 4_Mean Distance to Child [as declared on Facebook] (miles), trace 4_Child&#39;s Age, trace 5_Mean Distance to Child [as declared on Facebook] (miles), trace 5_Child&#39;s Age, trace 6_Mean Distance to Child [as declared on Facebook] (miles), trace 6_Child&#39;s Age, trace 7_Mean Distance to Child [as declared on Facebook] (miles), trace 7_Child&#39;s Age, trace 8_Mean Distance to Child [as declared on Facebook] (miles), trace 8_Child&#39;s Age, trace 9_Child&#39;s Age, trace 10_Mean Distance to Child [as declared on Facebook] (miles), trace 10_Child&#39;s Age, trace 11_Mean Distance to Child [as declared on Facebook] (miles), trace 11_Child&#39;s Age, trace 12_Mean Distance to Child [as declared on Facebook] (miles), trace 12_Child&#39;s Age, trace 13_Mean Distance to Child [as declared on Facebook] (miles), trace 13_Child&#39;s Age, trace 14_Mean Distance to Child [as declared on Facebook] (miles), trace 14_Child&#39;s Age, trace 15_Mean Distance to Child [as declared on Facebook] (miles), trace 15_Child&#39;s Age, trace 16_Mean Distance to Child [as declared on Facebook] (miles), trace 16_Child&#39;s Age, trace 17_Mean Distance to Child [as declared on Facebook] (miles), trace 17_Child&#39;s Age, trace 18_Mean Distance to Child [as declared on Facebook] (miles), trace 18_Child&#39;s Age, trace 19_Mean Distance to Child [as declared on Facebook] (miles), trace 19_Child&#39;s Age, trace 20_Mean Distance to Child [as declared on Facebook] (miles), trace 20_Child&#39;s Age"
                            }
                        },
                        "mode": "markers",
                        "name": "trace 5",
                        "type": "scatter",
                        "xsrc": "MattSundquist:15302:2c96b3",
                        "ysrc": "MattSundquist:15302:2c96b3",
                        "error_x": {},
                        "error_y": {},
                        "visible": false,
                        "textfont": {}
                    },
                    {
                        "uid": "8db1da",
                        "meta": {
                            "columnNames": {
                                "x": "trace 4_Mean Distance to Child [as declared on Facebook] (miles), trace 4_Child&#39;s Age, trace 5_Mean Distance to Child [as declared on Facebook] (miles), trace 5_Child&#39;s Age, trace 6_Mean Distance to Child [as declared on Facebook] (miles), trace 6_Child&#39;s Age, trace 7_Mean Distance to Child [as declared on Facebook] (miles), trace 7_Child&#39;s Age, trace 8_Mean Distance to Child [as declared on Facebook] (miles), trace 8_Child&#39;s Age, trace 9_Child&#39;s Age, trace 10_Mean Distance to Child [as declared on Facebook] (miles), trace 10_Child&#39;s Age, trace 11_Mean Distance to Child [as declared on Facebook] (miles), trace 11_Child&#39;s Age, trace 12_Mean Distance to Child [as declared on Facebook] (miles), trace 12_Child&#39;s Age, trace 13_Mean Distance to Child [as declared on Facebook] (miles), trace 13_Child&#39;s Age, trace 14_Mean Distance to Child [as declared on Facebook] (miles), trace 14_Child&#39;s Age, trace 15_Mean Distance to Child [as declared on Facebook] (miles), trace 15_Child&#39;s Age, trace 16_Mean Distance to Child [as declared on Facebook] (miles), trace 16_Child&#39;s Age, trace 17_Mean Distance to Child [as declared on Facebook] (miles), trace 17_Child&#39;s Age, trace 18_Mean Distance to Child [as declared on Facebook] (miles), trace 18_Child&#39;s Age, trace 19_Mean Distance to Child [as declared on Facebook] (miles), trace 19_Child&#39;s Age, trace 20_Mean Distance to Child [as declared on Facebook] (miles), trace 20_Child&#39;s Age",
                                "y": "trace 4_Mean Distance to Child [as declared on Facebook] (miles), trace 4_Child&#39;s Age, trace 5_Mean Distance to Child [as declared on Facebook] (miles), trace 5_Child&#39;s Age, trace 6_Mean Distance to Child [as declared on Facebook] (miles), trace 6_Child&#39;s Age, trace 7_Mean Distance to Child [as declared on Facebook] (miles), trace 7_Child&#39;s Age, trace 8_Mean Distance to Child [as declared on Facebook] (miles), trace 8_Child&#39;s Age, trace 9_Child&#39;s Age, trace 10_Mean Distance to Child [as declared on Facebook] (miles), trace 10_Child&#39;s Age, trace 11_Mean Distance to Child [as declared on Facebook] (miles), trace 11_Child&#39;s Age, trace 12_Mean Distance to Child [as declared on Facebook] (miles), trace 12_Child&#39;s Age, trace 13_Mean Distance to Child [as declared on Facebook] (miles), trace 13_Child&#39;s Age, trace 14_Mean Distance to Child [as declared on Facebook] (miles), trace 14_Child&#39;s Age, trace 15_Mean Distance to Child [as declared on Facebook] (miles), trace 15_Child&#39;s Age, trace 16_Mean Distance to Child [as declared on Facebook] (miles), trace 16_Child&#39;s Age, trace 17_Mean Distance to Child [as declared on Facebook] (miles), trace 17_Child&#39;s Age, trace 18_Mean Distance to Child [as declared on Facebook] (miles), trace 18_Child&#39;s Age, trace 19_Mean Distance to Child [as declared on Facebook] (miles), trace 19_Child&#39;s Age, trace 20_Mean Distance to Child [as declared on Facebook] (miles), trace 20_Child&#39;s Age"
                            }
                        },
                        "mode": "markers",
                        "name": "trace 6",
                        "type": "scatter",
                        "xsrc": "MattSundquist:15302:2c96b3",
                        "ysrc": "MattSundquist:15302:2c96b3",
                        "error_x": {},
                        "error_y": {},
                        "visible": false,
                        "textfont": {}
                    },
                    {
                        "uid": "beabb5",
                        "meta": {
                            "columnNames": {
                                "x": "trace 4_Mean Distance to Child [as declared on Facebook] (miles), trace 4_Child&#39;s Age, trace 5_Mean Distance to Child [as declared on Facebook] (miles), trace 5_Child&#39;s Age, trace 6_Mean Distance to Child [as declared on Facebook] (miles), trace 6_Child&#39;s Age, trace 7_Mean Distance to Child [as declared on Facebook] (miles), trace 7_Child&#39;s Age, trace 8_Mean Distance to Child [as declared on Facebook] (miles), trace 8_Child&#39;s Age, trace 9_Child&#39;s Age, trace 10_Mean Distance to Child [as declared on Facebook] (miles), trace 10_Child&#39;s Age, trace 11_Mean Distance to Child [as declared on Facebook] (miles), trace 11_Child&#39;s Age, trace 12_Mean Distance to Child [as declared on Facebook] (miles), trace 12_Child&#39;s Age, trace 13_Mean Distance to Child [as declared on Facebook] (miles), trace 13_Child&#39;s Age, trace 14_Mean Distance to Child [as declared on Facebook] (miles), trace 14_Child&#39;s Age, trace 15_Mean Distance to Child [as declared on Facebook] (miles), trace 15_Child&#39;s Age, trace 16_Mean Distance to Child [as declared on Facebook] (miles), trace 16_Child&#39;s Age, trace 17_Mean Distance to Child [as declared on Facebook] (miles), trace 17_Child&#39;s Age, trace 18_Mean Distance to Child [as declared on Facebook] (miles), trace 18_Child&#39;s Age, trace 19_Mean Distance to Child [as declared on Facebook] (miles), trace 19_Child&#39;s Age, trace 20_Mean Distance to Child [as declared on Facebook] (miles), trace 20_Child&#39;s Age",
                                "y": "trace 4_Mean Distance to Child [as declared on Facebook] (miles), trace 4_Child&#39;s Age, trace 5_Mean Distance to Child [as declared on Facebook] (miles), trace 5_Child&#39;s Age, trace 6_Mean Distance to Child [as declared on Facebook] (miles), trace 6_Child&#39;s Age, trace 7_Mean Distance to Child [as declared on Facebook] (miles), trace 7_Child&#39;s Age, trace 8_Mean Distance to Child [as declared on Facebook] (miles), trace 8_Child&#39;s Age, trace 9_Child&#39;s Age, trace 10_Mean Distance to Child [as declared on Facebook] (miles), trace 10_Child&#39;s Age, trace 11_Mean Distance to Child [as declared on Facebook] (miles), trace 11_Child&#39;s Age, trace 12_Mean Distance to Child [as declared on Facebook] (miles), trace 12_Child&#39;s Age, trace 13_Mean Distance to Child [as declared on Facebook] (miles), trace 13_Child&#39;s Age, trace 14_Mean Distance to Child [as declared on Facebook] (miles), trace 14_Child&#39;s Age, trace 15_Mean Distance to Child [as declared on Facebook] (miles), trace 15_Child&#39;s Age, trace 16_Mean Distance to Child [as declared on Facebook] (miles), trace 16_Child&#39;s Age, trace 17_Mean Distance to Child [as declared on Facebook] (miles), trace 17_Child&#39;s Age, trace 18_Mean Distance to Child [as declared on Facebook] (miles), trace 18_Child&#39;s Age, trace 19_Mean Distance to Child [as declared on Facebook] (miles), trace 19_Child&#39;s Age, trace 20_Mean Distance to Child [as declared on Facebook] (miles), trace 20_Child&#39;s Age"
                            }
                        },
                        "mode": "markers",
                        "name": "trace 7",
                        "type": "scatter",
                        "xsrc": "MattSundquist:15302:2c96b3",
                        "ysrc": "MattSundquist:15302:2c96b3",
                        "error_x": {},
                        "error_y": {},
                        "visible": false,
                        "textfont": {}
                    },
                    {
                        "uid": "a5a133",
                        "meta": {
                            "columnNames": {
                                "x": "trace 4_Mean Distance to Child [as declared on Facebook] (miles), trace 4_Child&#39;s Age, trace 5_Mean Distance to Child [as declared on Facebook] (miles), trace 5_Child&#39;s Age, trace 6_Mean Distance to Child [as declared on Facebook] (miles), trace 6_Child&#39;s Age, trace 7_Mean Distance to Child [as declared on Facebook] (miles), trace 7_Child&#39;s Age, trace 8_Mean Distance to Child [as declared on Facebook] (miles), trace 8_Child&#39;s Age, trace 9_Child&#39;s Age, trace 10_Mean Distance to Child [as declared on Facebook] (miles), trace 10_Child&#39;s Age, trace 11_Mean Distance to Child [as declared on Facebook] (miles), trace 11_Child&#39;s Age, trace 12_Mean Distance to Child [as declared on Facebook] (miles), trace 12_Child&#39;s Age, trace 13_Mean Distance to Child [as declared on Facebook] (miles), trace 13_Child&#39;s Age, trace 14_Mean Distance to Child [as declared on Facebook] (miles), trace 14_Child&#39;s Age, trace 15_Mean Distance to Child [as declared on Facebook] (miles), trace 15_Child&#39;s Age, trace 16_Mean Distance to Child [as declared on Facebook] (miles), trace 16_Child&#39;s Age, trace 17_Mean Distance to Child [as declared on Facebook] (miles), trace 17_Child&#39;s Age, trace 18_Mean Distance to Child [as declared on Facebook] (miles), trace 18_Child&#39;s Age, trace 19_Mean Distance to Child [as declared on Facebook] (miles), trace 19_Child&#39;s Age, trace 20_Mean Distance to Child [as declared on Facebook] (miles), trace 20_Child&#39;s Age",
                                "y": "trace 4_Mean Distance to Child [as declared on Facebook] (miles), trace 4_Child&#39;s Age, trace 5_Mean Distance to Child [as declared on Facebook] (miles), trace 5_Child&#39;s Age, trace 6_Mean Distance to Child [as declared on Facebook] (miles), trace 6_Child&#39;s Age, trace 7_Mean Distance to Child [as declared on Facebook] (miles), trace 7_Child&#39;s Age, trace 8_Mean Distance to Child [as declared on Facebook] (miles), trace 8_Child&#39;s Age, trace 9_Child&#39;s Age, trace 10_Mean Distance to Child [as declared on Facebook] (miles), trace 10_Child&#39;s Age, trace 11_Mean Distance to Child [as declared on Facebook] (miles), trace 11_Child&#39;s Age, trace 12_Mean Distance to Child [as declared on Facebook] (miles), trace 12_Child&#39;s Age, trace 13_Mean Distance to Child [as declared on Facebook] (miles), trace 13_Child&#39;s Age, trace 14_Mean Distance to Child [as declared on Facebook] (miles), trace 14_Child&#39;s Age, trace 15_Mean Distance to Child [as declared on Facebook] (miles), trace 15_Child&#39;s Age, trace 16_Mean Distance to Child [as declared on Facebook] (miles), trace 16_Child&#39;s Age, trace 17_Mean Distance to Child [as declared on Facebook] (miles), trace 17_Child&#39;s Age, trace 18_Mean Distance to Child [as declared on Facebook] (miles), trace 18_Child&#39;s Age, trace 19_Mean Distance to Child [as declared on Facebook] (miles), trace 19_Child&#39;s Age, trace 20_Mean Distance to Child [as declared on Facebook] (miles), trace 20_Child&#39;s Age"
                            }
                        },
                        "mode": "markers",
                        "name": "trace 8",
                        "type": "scatter",
                        "xsrc": "MattSundquist:15302:2c96b3",
                        "ysrc": "MattSundquist:15302:2c96b3",
                        "error_x": {},
                        "error_y": {},
                        "visible": false,
                        "textfont": {}
                    },
                    {
                        "uid": "12abb5",
                        "meta": {
                            "columnNames": {
                                "x": "trace 4_Mean Distance to Child [as declared on Facebook] (miles), trace 4_Child&#39;s Age, trace 5_Mean Distance to Child [as declared on Facebook] (miles), trace 5_Child&#39;s Age, trace 6_Mean Distance to Child [as declared on Facebook] (miles), trace 6_Child&#39;s Age, trace 7_Mean Distance to Child [as declared on Facebook] (miles), trace 7_Child&#39;s Age, trace 8_Mean Distance to Child [as declared on Facebook] (miles), trace 8_Child&#39;s Age, trace 9_Child&#39;s Age, trace 10_Mean Distance to Child [as declared on Facebook] (miles), trace 10_Child&#39;s Age, trace 11_Mean Distance to Child [as declared on Facebook] (miles), trace 11_Child&#39;s Age, trace 12_Mean Distance to Child [as declared on Facebook] (miles), trace 12_Child&#39;s Age, trace 13_Mean Distance to Child [as declared on Facebook] (miles), trace 13_Child&#39;s Age, trace 14_Mean Distance to Child [as declared on Facebook] (miles), trace 14_Child&#39;s Age, trace 15_Mean Distance to Child [as declared on Facebook] (miles), trace 15_Child&#39;s Age, trace 16_Mean Distance to Child [as declared on Facebook] (miles), trace 16_Child&#39;s Age, trace 17_Mean Distance to Child [as declared on Facebook] (miles), trace 17_Child&#39;s Age, trace 18_Mean Distance to Child [as declared on Facebook] (miles), trace 18_Child&#39;s Age, trace 19_Mean Distance to Child [as declared on Facebook] (miles), trace 19_Child&#39;s Age, trace 20_Mean Distance to Child [as declared on Facebook] (miles), trace 20_Child&#39;s Age",
                                "y": "trace 9_Mean Distance to Child [as declared on Facebook] (miles)"
                            }
                        },
                        "mode": "markers",
                        "name": "trace 9",
                        "type": "scatter",
                        "xsrc": "MattSundquist:15302:2c96b3",
                        "ysrc": "MattSundquist:15302:178046",
                        "error_x": {},
                        "error_y": {},
                        "visible": false,
                        "textfont": {}
                    },
                    {
                        "uid": "95bbe7",
                        "meta": {
                            "columnNames": {
                                "x": "trace 4_Mean Distance to Child [as declared on Facebook] (miles), trace 4_Child&#39;s Age, trace 5_Mean Distance to Child [as declared on Facebook] (miles), trace 5_Child&#39;s Age, trace 6_Mean Distance to Child [as declared on Facebook] (miles), trace 6_Child&#39;s Age, trace 7_Mean Distance to Child [as declared on Facebook] (miles), trace 7_Child&#39;s Age, trace 8_Mean Distance to Child [as declared on Facebook] (miles), trace 8_Child&#39;s Age, trace 9_Child&#39;s Age, trace 10_Mean Distance to Child [as declared on Facebook] (miles), trace 10_Child&#39;s Age, trace 11_Mean Distance to Child [as declared on Facebook] (miles), trace 11_Child&#39;s Age, trace 12_Mean Distance to Child [as declared on Facebook] (miles), trace 12_Child&#39;s Age, trace 13_Mean Distance to Child [as declared on Facebook] (miles), trace 13_Child&#39;s Age, trace 14_Mean Distance to Child [as declared on Facebook] (miles), trace 14_Child&#39;s Age, trace 15_Mean Distance to Child [as declared on Facebook] (miles), trace 15_Child&#39;s Age, trace 16_Mean Distance to Child [as declared on Facebook] (miles), trace 16_Child&#39;s Age, trace 17_Mean Distance to Child [as declared on Facebook] (miles), trace 17_Child&#39;s Age, trace 18_Mean Distance to Child [as declared on Facebook] (miles), trace 18_Child&#39;s Age, trace 19_Mean Distance to Child [as declared on Facebook] (miles), trace 19_Child&#39;s Age, trace 20_Mean Distance to Child [as declared on Facebook] (miles), trace 20_Child&#39;s Age",
                                "y": "trace 4_Mean Distance to Child [as declared on Facebook] (miles), trace 4_Child&#39;s Age, trace 5_Mean Distance to Child [as declared on Facebook] (miles), trace 5_Child&#39;s Age, trace 6_Mean Distance to Child [as declared on Facebook] (miles), trace 6_Child&#39;s Age, trace 7_Mean Distance to Child [as declared on Facebook] (miles), trace 7_Child&#39;s Age, trace 8_Mean Distance to Child [as declared on Facebook] (miles), trace 8_Child&#39;s Age, trace 9_Child&#39;s Age, trace 10_Mean Distance to Child [as declared on Facebook] (miles), trace 10_Child&#39;s Age, trace 11_Mean Distance to Child [as declared on Facebook] (miles), trace 11_Child&#39;s Age, trace 12_Mean Distance to Child [as declared on Facebook] (miles), trace 12_Child&#39;s Age, trace 13_Mean Distance to Child [as declared on Facebook] (miles), trace 13_Child&#39;s Age, trace 14_Mean Distance to Child [as declared on Facebook] (miles), trace 14_Child&#39;s Age, trace 15_Mean Distance to Child [as declared on Facebook] (miles), trace 15_Child&#39;s Age, trace 16_Mean Distance to Child [as declared on Facebook] (miles), trace 16_Child&#39;s Age, trace 17_Mean Distance to Child [as declared on Facebook] (miles), trace 17_Child&#39;s Age, trace 18_Mean Distance to Child [as declared on Facebook] (miles), trace 18_Child&#39;s Age, trace 19_Mean Distance to Child [as declared on Facebook] (miles), trace 19_Child&#39;s Age, trace 20_Mean Distance to Child [as declared on Facebook] (miles), trace 20_Child&#39;s Age"
                            }
                        },
                        "mode": "markers",
                        "name": "trace 10",
                        "type": "scatter",
                        "xsrc": "MattSundquist:15302:2c96b3",
                        "ysrc": "MattSundquist:15302:2c96b3",
                        "error_x": {},
                        "error_y": {},
                        "visible": false,
                        "textfont": {}
                    },
                    {
                        "uid": "409da1",
                        "meta": {
                            "columnNames": {
                                "x": "trace 4_Mean Distance to Child [as declared on Facebook] (miles), trace 4_Child&#39;s Age, trace 5_Mean Distance to Child [as declared on Facebook] (miles), trace 5_Child&#39;s Age, trace 6_Mean Distance to Child [as declared on Facebook] (miles), trace 6_Child&#39;s Age, trace 7_Mean Distance to Child [as declared on Facebook] (miles), trace 7_Child&#39;s Age, trace 8_Mean Distance to Child [as declared on Facebook] (miles), trace 8_Child&#39;s Age, trace 9_Child&#39;s Age, trace 10_Mean Distance to Child [as declared on Facebook] (miles), trace 10_Child&#39;s Age, trace 11_Mean Distance to Child [as declared on Facebook] (miles), trace 11_Child&#39;s Age, trace 12_Mean Distance to Child [as declared on Facebook] (miles), trace 12_Child&#39;s Age, trace 13_Mean Distance to Child [as declared on Facebook] (miles), trace 13_Child&#39;s Age, trace 14_Mean Distance to Child [as declared on Facebook] (miles), trace 14_Child&#39;s Age, trace 15_Mean Distance to Child [as declared on Facebook] (miles), trace 15_Child&#39;s Age, trace 16_Mean Distance to Child [as declared on Facebook] (miles), trace 16_Child&#39;s Age, trace 17_Mean Distance to Child [as declared on Facebook] (miles), trace 17_Child&#39;s Age, trace 18_Mean Distance to Child [as declared on Facebook] (miles), trace 18_Child&#39;s Age, trace 19_Mean Distance to Child [as declared on Facebook] (miles), trace 19_Child&#39;s Age, trace 20_Mean Distance to Child [as declared on Facebook] (miles), trace 20_Child&#39;s Age",
                                "y": "trace 4_Mean Distance to Child [as declared on Facebook] (miles), trace 4_Child&#39;s Age, trace 5_Mean Distance to Child [as declared on Facebook] (miles), trace 5_Child&#39;s Age, trace 6_Mean Distance to Child [as declared on Facebook] (miles), trace 6_Child&#39;s Age, trace 7_Mean Distance to Child [as declared on Facebook] (miles), trace 7_Child&#39;s Age, trace 8_Mean Distance to Child [as declared on Facebook] (miles), trace 8_Child&#39;s Age, trace 9_Child&#39;s Age, trace 10_Mean Distance to Child [as declared on Facebook] (miles), trace 10_Child&#39;s Age, trace 11_Mean Distance to Child [as declared on Facebook] (miles), trace 11_Child&#39;s Age, trace 12_Mean Distance to Child [as declared on Facebook] (miles), trace 12_Child&#39;s Age, trace 13_Mean Distance to Child [as declared on Facebook] (miles), trace 13_Child&#39;s Age, trace 14_Mean Distance to Child [as declared on Facebook] (miles), trace 14_Child&#39;s Age, trace 15_Mean Distance to Child [as declared on Facebook] (miles), trace 15_Child&#39;s Age, trace 16_Mean Distance to Child [as declared on Facebook] (miles), trace 16_Child&#39;s Age, trace 17_Mean Distance to Child [as declared on Facebook] (miles), trace 17_Child&#39;s Age, trace 18_Mean Distance to Child [as declared on Facebook] (miles), trace 18_Child&#39;s Age, trace 19_Mean Distance to Child [as declared on Facebook] (miles), trace 19_Child&#39;s Age, trace 20_Mean Distance to Child [as declared on Facebook] (miles), trace 20_Child&#39;s Age"
                            }
                        },
                        "mode": "markers",
                        "name": "trace 11",
                        "type": "scatter",
                        "xsrc": "MattSundquist:15302:2c96b3",
                        "ysrc": "MattSundquist:15302:2c96b3",
                        "error_x": {},
                        "error_y": {},
                        "visible": false,
                        "textfont": {}
                    },
                    {
                        "uid": "68fa1f",
                        "meta": {
                            "columnNames": {
                                "x": "trace 4_Mean Distance to Child [as declared on Facebook] (miles), trace 4_Child&#39;s Age, trace 5_Mean Distance to Child [as declared on Facebook] (miles), trace 5_Child&#39;s Age, trace 6_Mean Distance to Child [as declared on Facebook] (miles), trace 6_Child&#39;s Age, trace 7_Mean Distance to Child [as declared on Facebook] (miles), trace 7_Child&#39;s Age, trace 8_Mean Distance to Child [as declared on Facebook] (miles), trace 8_Child&#39;s Age, trace 9_Child&#39;s Age, trace 10_Mean Distance to Child [as declared on Facebook] (miles), trace 10_Child&#39;s Age, trace 11_Mean Distance to Child [as declared on Facebook] (miles), trace 11_Child&#39;s Age, trace 12_Mean Distance to Child [as declared on Facebook] (miles), trace 12_Child&#39;s Age, trace 13_Mean Distance to Child [as declared on Facebook] (miles), trace 13_Child&#39;s Age, trace 14_Mean Distance to Child [as declared on Facebook] (miles), trace 14_Child&#39;s Age, trace 15_Mean Distance to Child [as declared on Facebook] (miles), trace 15_Child&#39;s Age, trace 16_Mean Distance to Child [as declared on Facebook] (miles), trace 16_Child&#39;s Age, trace 17_Mean Distance to Child [as declared on Facebook] (miles), trace 17_Child&#39;s Age, trace 18_Mean Distance to Child [as declared on Facebook] (miles), trace 18_Child&#39;s Age, trace 19_Mean Distance to Child [as declared on Facebook] (miles), trace 19_Child&#39;s Age, trace 20_Mean Distance to Child [as declared on Facebook] (miles), trace 20_Child&#39;s Age",
                                "y": "trace 4_Mean Distance to Child [as declared on Facebook] (miles), trace 4_Child&#39;s Age, trace 5_Mean Distance to Child [as declared on Facebook] (miles), trace 5_Child&#39;s Age, trace 6_Mean Distance to Child [as declared on Facebook] (miles), trace 6_Child&#39;s Age, trace 7_Mean Distance to Child [as declared on Facebook] (miles), trace 7_Child&#39;s Age, trace 8_Mean Distance to Child [as declared on Facebook] (miles), trace 8_Child&#39;s Age, trace 9_Child&#39;s Age, trace 10_Mean Distance to Child [as declared on Facebook] (miles), trace 10_Child&#39;s Age, trace 11_Mean Distance to Child [as declared on Facebook] (miles), trace 11_Child&#39;s Age, trace 12_Mean Distance to Child [as declared on Facebook] (miles), trace 12_Child&#39;s Age, trace 13_Mean Distance to Child [as declared on Facebook] (miles), trace 13_Child&#39;s Age, trace 14_Mean Distance to Child [as declared on Facebook] (miles), trace 14_Child&#39;s Age, trace 15_Mean Distance to Child [as declared on Facebook] (miles), trace 15_Child&#39;s Age, trace 16_Mean Distance to Child [as declared on Facebook] (miles), trace 16_Child&#39;s Age, trace 17_Mean Distance to Child [as declared on Facebook] (miles), trace 17_Child&#39;s Age, trace 18_Mean Distance to Child [as declared on Facebook] (miles), trace 18_Child&#39;s Age, trace 19_Mean Distance to Child [as declared on Facebook] (miles), trace 19_Child&#39;s Age, trace 20_Mean Distance to Child [as declared on Facebook] (miles), trace 20_Child&#39;s Age"
                            }
                        },
                        "mode": "markers",
                        "name": "trace 12",
                        "type": "scatter",
                        "xsrc": "MattSundquist:15302:2c96b3",
                        "ysrc": "MattSundquist:15302:2c96b3",
                        "error_x": {},
                        "error_y": {},
                        "visible": false,
                        "textfont": {}
                    },
                    {
                        "uid": "da094f",
                        "meta": {
                            "columnNames": {
                                "x": "trace 4_Mean Distance to Child [as declared on Facebook] (miles), trace 4_Child&#39;s Age, trace 5_Mean Distance to Child [as declared on Facebook] (miles), trace 5_Child&#39;s Age, trace 6_Mean Distance to Child [as declared on Facebook] (miles), trace 6_Child&#39;s Age, trace 7_Mean Distance to Child [as declared on Facebook] (miles), trace 7_Child&#39;s Age, trace 8_Mean Distance to Child [as declared on Facebook] (miles), trace 8_Child&#39;s Age, trace 9_Child&#39;s Age, trace 10_Mean Distance to Child [as declared on Facebook] (miles), trace 10_Child&#39;s Age, trace 11_Mean Distance to Child [as declared on Facebook] (miles), trace 11_Child&#39;s Age, trace 12_Mean Distance to Child [as declared on Facebook] (miles), trace 12_Child&#39;s Age, trace 13_Mean Distance to Child [as declared on Facebook] (miles), trace 13_Child&#39;s Age, trace 14_Mean Distance to Child [as declared on Facebook] (miles), trace 14_Child&#39;s Age, trace 15_Mean Distance to Child [as declared on Facebook] (miles), trace 15_Child&#39;s Age, trace 16_Mean Distance to Child [as declared on Facebook] (miles), trace 16_Child&#39;s Age, trace 17_Mean Distance to Child [as declared on Facebook] (miles), trace 17_Child&#39;s Age, trace 18_Mean Distance to Child [as declared on Facebook] (miles), trace 18_Child&#39;s Age, trace 19_Mean Distance to Child [as declared on Facebook] (miles), trace 19_Child&#39;s Age, trace 20_Mean Distance to Child [as declared on Facebook] (miles), trace 20_Child&#39;s Age",
                                "y": "trace 4_Mean Distance to Child [as declared on Facebook] (miles), trace 4_Child&#39;s Age, trace 5_Mean Distance to Child [as declared on Facebook] (miles), trace 5_Child&#39;s Age, trace 6_Mean Distance to Child [as declared on Facebook] (miles), trace 6_Child&#39;s Age, trace 7_Mean Distance to Child [as declared on Facebook] (miles), trace 7_Child&#39;s Age, trace 8_Mean Distance to Child [as declared on Facebook] (miles), trace 8_Child&#39;s Age, trace 9_Child&#39;s Age, trace 10_Mean Distance to Child [as declared on Facebook] (miles), trace 10_Child&#39;s Age, trace 11_Mean Distance to Child [as declared on Facebook] (miles), trace 11_Child&#39;s Age, trace 12_Mean Distance to Child [as declared on Facebook] (miles), trace 12_Child&#39;s Age, trace 13_Mean Distance to Child [as declared on Facebook] (miles), trace 13_Child&#39;s Age, trace 14_Mean Distance to Child [as declared on Facebook] (miles), trace 14_Child&#39;s Age, trace 15_Mean Distance to Child [as declared on Facebook] (miles), trace 15_Child&#39;s Age, trace 16_Mean Distance to Child [as declared on Facebook] (miles), trace 16_Child&#39;s Age, trace 17_Mean Distance to Child [as declared on Facebook] (miles), trace 17_Child&#39;s Age, trace 18_Mean Distance to Child [as declared on Facebook] (miles), trace 18_Child&#39;s Age, trace 19_Mean Distance to Child [as declared on Facebook] (miles), trace 19_Child&#39;s Age, trace 20_Mean Distance to Child [as declared on Facebook] (miles), trace 20_Child&#39;s Age"
                            }
                        },
                        "mode": "markers",
                        "name": "trace 13",
                        "type": "scatter",
                        "xsrc": "MattSundquist:15302:2c96b3",
                        "ysrc": "MattSundquist:15302:2c96b3",
                        "error_x": {},
                        "error_y": {},
                        "visible": false,
                        "textfont": {}
                    },
                    {
                        "uid": "deb6f3",
                        "meta": {
                            "columnNames": {
                                "x": "trace 4_Mean Distance to Child [as declared on Facebook] (miles), trace 4_Child&#39;s Age, trace 5_Mean Distance to Child [as declared on Facebook] (miles), trace 5_Child&#39;s Age, trace 6_Mean Distance to Child [as declared on Facebook] (miles), trace 6_Child&#39;s Age, trace 7_Mean Distance to Child [as declared on Facebook] (miles), trace 7_Child&#39;s Age, trace 8_Mean Distance to Child [as declared on Facebook] (miles), trace 8_Child&#39;s Age, trace 9_Child&#39;s Age, trace 10_Mean Distance to Child [as declared on Facebook] (miles), trace 10_Child&#39;s Age, trace 11_Mean Distance to Child [as declared on Facebook] (miles), trace 11_Child&#39;s Age, trace 12_Mean Distance to Child [as declared on Facebook] (miles), trace 12_Child&#39;s Age, trace 13_Mean Distance to Child [as declared on Facebook] (miles), trace 13_Child&#39;s Age, trace 14_Mean Distance to Child [as declared on Facebook] (miles), trace 14_Child&#39;s Age, trace 15_Mean Distance to Child [as declared on Facebook] (miles), trace 15_Child&#39;s Age, trace 16_Mean Distance to Child [as declared on Facebook] (miles), trace 16_Child&#39;s Age, trace 17_Mean Distance to Child [as declared on Facebook] (miles), trace 17_Child&#39;s Age, trace 18_Mean Distance to Child [as declared on Facebook] (miles), trace 18_Child&#39;s Age, trace 19_Mean Distance to Child [as declared on Facebook] (miles), trace 19_Child&#39;s Age, trace 20_Mean Distance to Child [as declared on Facebook] (miles), trace 20_Child&#39;s Age",
                                "y": "trace 4_Mean Distance to Child [as declared on Facebook] (miles), trace 4_Child&#39;s Age, trace 5_Mean Distance to Child [as declared on Facebook] (miles), trace 5_Child&#39;s Age, trace 6_Mean Distance to Child [as declared on Facebook] (miles), trace 6_Child&#39;s Age, trace 7_Mean Distance to Child [as declared on Facebook] (miles), trace 7_Child&#39;s Age, trace 8_Mean Distance to Child [as declared on Facebook] (miles), trace 8_Child&#39;s Age, trace 9_Child&#39;s Age, trace 10_Mean Distance to Child [as declared on Facebook] (miles), trace 10_Child&#39;s Age, trace 11_Mean Distance to Child [as declared on Facebook] (miles), trace 11_Child&#39;s Age, trace 12_Mean Distance to Child [as declared on Facebook] (miles), trace 12_Child&#39;s Age, trace 13_Mean Distance to Child [as declared on Facebook] (miles), trace 13_Child&#39;s Age, trace 14_Mean Distance to Child [as declared on Facebook] (miles), trace 14_Child&#39;s Age, trace 15_Mean Distance to Child [as declared on Facebook] (miles), trace 15_Child&#39;s Age, trace 16_Mean Distance to Child [as declared on Facebook] (miles), trace 16_Child&#39;s Age, trace 17_Mean Distance to Child [as declared on Facebook] (miles), trace 17_Child&#39;s Age, trace 18_Mean Distance to Child [as declared on Facebook] (miles), trace 18_Child&#39;s Age, trace 19_Mean Distance to Child [as declared on Facebook] (miles), trace 19_Child&#39;s Age, trace 20_Mean Distance to Child [as declared on Facebook] (miles), trace 20_Child&#39;s Age"
                            }
                        },
                        "mode": "markers",
                        "name": "trace 14",
                        "type": "scatter",
                        "xsrc": "MattSundquist:15302:2c96b3",
                        "ysrc": "MattSundquist:15302:2c96b3",
                        "error_x": {},
                        "error_y": {},
                        "visible": false,
                        "textfont": {}
                    },
                    {
                        "uid": "f96be1",
                        "meta": {
                            "columnNames": {
                                "x": "trace 4_Mean Distance to Child [as declared on Facebook] (miles), trace 4_Child&#39;s Age, trace 5_Mean Distance to Child [as declared on Facebook] (miles), trace 5_Child&#39;s Age, trace 6_Mean Distance to Child [as declared on Facebook] (miles), trace 6_Child&#39;s Age, trace 7_Mean Distance to Child [as declared on Facebook] (miles), trace 7_Child&#39;s Age, trace 8_Mean Distance to Child [as declared on Facebook] (miles), trace 8_Child&#39;s Age, trace 9_Child&#39;s Age, trace 10_Mean Distance to Child [as declared on Facebook] (miles), trace 10_Child&#39;s Age, trace 11_Mean Distance to Child [as declared on Facebook] (miles), trace 11_Child&#39;s Age, trace 12_Mean Distance to Child [as declared on Facebook] (miles), trace 12_Child&#39;s Age, trace 13_Mean Distance to Child [as declared on Facebook] (miles), trace 13_Child&#39;s Age, trace 14_Mean Distance to Child [as declared on Facebook] (miles), trace 14_Child&#39;s Age, trace 15_Mean Distance to Child [as declared on Facebook] (miles), trace 15_Child&#39;s Age, trace 16_Mean Distance to Child [as declared on Facebook] (miles), trace 16_Child&#39;s Age, trace 17_Mean Distance to Child [as declared on Facebook] (miles), trace 17_Child&#39;s Age, trace 18_Mean Distance to Child [as declared on Facebook] (miles), trace 18_Child&#39;s Age, trace 19_Mean Distance to Child [as declared on Facebook] (miles), trace 19_Child&#39;s Age, trace 20_Mean Distance to Child [as declared on Facebook] (miles), trace 20_Child&#39;s Age",
                                "y": "trace 4_Mean Distance to Child [as declared on Facebook] (miles), trace 4_Child&#39;s Age, trace 5_Mean Distance to Child [as declared on Facebook] (miles), trace 5_Child&#39;s Age, trace 6_Mean Distance to Child [as declared on Facebook] (miles), trace 6_Child&#39;s Age, trace 7_Mean Distance to Child [as declared on Facebook] (miles), trace 7_Child&#39;s Age, trace 8_Mean Distance to Child [as declared on Facebook] (miles), trace 8_Child&#39;s Age, trace 9_Child&#39;s Age, trace 10_Mean Distance to Child [as declared on Facebook] (miles), trace 10_Child&#39;s Age, trace 11_Mean Distance to Child [as declared on Facebook] (miles), trace 11_Child&#39;s Age, trace 12_Mean Distance to Child [as declared on Facebook] (miles), trace 12_Child&#39;s Age, trace 13_Mean Distance to Child [as declared on Facebook] (miles), trace 13_Child&#39;s Age, trace 14_Mean Distance to Child [as declared on Facebook] (miles), trace 14_Child&#39;s Age, trace 15_Mean Distance to Child [as declared on Facebook] (miles), trace 15_Child&#39;s Age, trace 16_Mean Distance to Child [as declared on Facebook] (miles), trace 16_Child&#39;s Age, trace 17_Mean Distance to Child [as declared on Facebook] (miles), trace 17_Child&#39;s Age, trace 18_Mean Distance to Child [as declared on Facebook] (miles), trace 18_Child&#39;s Age, trace 19_Mean Distance to Child [as declared on Facebook] (miles), trace 19_Child&#39;s Age, trace 20_Mean Distance to Child [as declared on Facebook] (miles), trace 20_Child&#39;s Age"
                            }
                        },
                        "mode": "markers",
                        "name": "trace 15",
                        "type": "scatter",
                        "xsrc": "MattSundquist:15302:2c96b3",
                        "ysrc": "MattSundquist:15302:2c96b3",
                        "error_x": {},
                        "error_y": {},
                        "visible": false,
                        "textfont": {}
                    },
                    {
                        "uid": "c5ca15",
                        "meta": {
                            "columnNames": {
                                "x": "trace 4_Mean Distance to Child [as declared on Facebook] (miles), trace 4_Child&#39;s Age, trace 5_Mean Distance to Child [as declared on Facebook] (miles), trace 5_Child&#39;s Age, trace 6_Mean Distance to Child [as declared on Facebook] (miles), trace 6_Child&#39;s Age, trace 7_Mean Distance to Child [as declared on Facebook] (miles), trace 7_Child&#39;s Age, trace 8_Mean Distance to Child [as declared on Facebook] (miles), trace 8_Child&#39;s Age, trace 9_Child&#39;s Age, trace 10_Mean Distance to Child [as declared on Facebook] (miles), trace 10_Child&#39;s Age, trace 11_Mean Distance to Child [as declared on Facebook] (miles), trace 11_Child&#39;s Age, trace 12_Mean Distance to Child [as declared on Facebook] (miles), trace 12_Child&#39;s Age, trace 13_Mean Distance to Child [as declared on Facebook] (miles), trace 13_Child&#39;s Age, trace 14_Mean Distance to Child [as declared on Facebook] (miles), trace 14_Child&#39;s Age, trace 15_Mean Distance to Child [as declared on Facebook] (miles), trace 15_Child&#39;s Age, trace 16_Mean Distance to Child [as declared on Facebook] (miles), trace 16_Child&#39;s Age, trace 17_Mean Distance to Child [as declared on Facebook] (miles), trace 17_Child&#39;s Age, trace 18_Mean Distance to Child [as declared on Facebook] (miles), trace 18_Child&#39;s Age, trace 19_Mean Distance to Child [as declared on Facebook] (miles), trace 19_Child&#39;s Age, trace 20_Mean Distance to Child [as declared on Facebook] (miles), trace 20_Child&#39;s Age",
                                "y": "trace 4_Mean Distance to Child [as declared on Facebook] (miles), trace 4_Child&#39;s Age, trace 5_Mean Distance to Child [as declared on Facebook] (miles), trace 5_Child&#39;s Age, trace 6_Mean Distance to Child [as declared on Facebook] (miles), trace 6_Child&#39;s Age, trace 7_Mean Distance to Child [as declared on Facebook] (miles), trace 7_Child&#39;s Age, trace 8_Mean Distance to Child [as declared on Facebook] (miles), trace 8_Child&#39;s Age, trace 9_Child&#39;s Age, trace 10_Mean Distance to Child [as declared on Facebook] (miles), trace 10_Child&#39;s Age, trace 11_Mean Distance to Child [as declared on Facebook] (miles), trace 11_Child&#39;s Age, trace 12_Mean Distance to Child [as declared on Facebook] (miles), trace 12_Child&#39;s Age, trace 13_Mean Distance to Child [as declared on Facebook] (miles), trace 13_Child&#39;s Age, trace 14_Mean Distance to Child [as declared on Facebook] (miles), trace 14_Child&#39;s Age, trace 15_Mean Distance to Child [as declared on Facebook] (miles), trace 15_Child&#39;s Age, trace 16_Mean Distance to Child [as declared on Facebook] (miles), trace 16_Child&#39;s Age, trace 17_Mean Distance to Child [as declared on Facebook] (miles), trace 17_Child&#39;s Age, trace 18_Mean Distance to Child [as declared on Facebook] (miles), trace 18_Child&#39;s Age, trace 19_Mean Distance to Child [as declared on Facebook] (miles), trace 19_Child&#39;s Age, trace 20_Mean Distance to Child [as declared on Facebook] (miles), trace 20_Child&#39;s Age"
                            }
                        },
                        "mode": "markers",
                        "name": "trace 16",
                        "type": "scatter",
                        "xsrc": "MattSundquist:15302:2c96b3",
                        "ysrc": "MattSundquist:15302:2c96b3",
                        "error_x": {},
                        "error_y": {},
                        "visible": false,
                        "textfont": {}
                    },
                    {
                        "uid": "dda0ec",
                        "meta": {
                            "columnNames": {
                                "x": "trace 4_Mean Distance to Child [as declared on Facebook] (miles), trace 4_Child&#39;s Age, trace 5_Mean Distance to Child [as declared on Facebook] (miles), trace 5_Child&#39;s Age, trace 6_Mean Distance to Child [as declared on Facebook] (miles), trace 6_Child&#39;s Age, trace 7_Mean Distance to Child [as declared on Facebook] (miles), trace 7_Child&#39;s Age, trace 8_Mean Distance to Child [as declared on Facebook] (miles), trace 8_Child&#39;s Age, trace 9_Child&#39;s Age, trace 10_Mean Distance to Child [as declared on Facebook] (miles), trace 10_Child&#39;s Age, trace 11_Mean Distance to Child [as declared on Facebook] (miles), trace 11_Child&#39;s Age, trace 12_Mean Distance to Child [as declared on Facebook] (miles), trace 12_Child&#39;s Age, trace 13_Mean Distance to Child [as declared on Facebook] (miles), trace 13_Child&#39;s Age, trace 14_Mean Distance to Child [as declared on Facebook] (miles), trace 14_Child&#39;s Age, trace 15_Mean Distance to Child [as declared on Facebook] (miles), trace 15_Child&#39;s Age, trace 16_Mean Distance to Child [as declared on Facebook] (miles), trace 16_Child&#39;s Age, trace 17_Mean Distance to Child [as declared on Facebook] (miles), trace 17_Child&#39;s Age, trace 18_Mean Distance to Child [as declared on Facebook] (miles), trace 18_Child&#39;s Age, trace 19_Mean Distance to Child [as declared on Facebook] (miles), trace 19_Child&#39;s Age, trace 20_Mean Distance to Child [as declared on Facebook] (miles), trace 20_Child&#39;s Age",
                                "y": "trace 4_Mean Distance to Child [as declared on Facebook] (miles), trace 4_Child&#39;s Age, trace 5_Mean Distance to Child [as declared on Facebook] (miles), trace 5_Child&#39;s Age, trace 6_Mean Distance to Child [as declared on Facebook] (miles), trace 6_Child&#39;s Age, trace 7_Mean Distance to Child [as declared on Facebook] (miles), trace 7_Child&#39;s Age, trace 8_Mean Distance to Child [as declared on Facebook] (miles), trace 8_Child&#39;s Age, trace 9_Child&#39;s Age, trace 10_Mean Distance to Child [as declared on Facebook] (miles), trace 10_Child&#39;s Age, trace 11_Mean Distance to Child [as declared on Facebook] (miles), trace 11_Child&#39;s Age, trace 12_Mean Distance to Child [as declared on Facebook] (miles), trace 12_Child&#39;s Age, trace 13_Mean Distance to Child [as declared on Facebook] (miles), trace 13_Child&#39;s Age, trace 14_Mean Distance to Child [as declared on Facebook] (miles), trace 14_Child&#39;s Age, trace 15_Mean Distance to Child [as declared on Facebook] (miles), trace 15_Child&#39;s Age, trace 16_Mean Distance to Child [as declared on Facebook] (miles), trace 16_Child&#39;s Age, trace 17_Mean Distance to Child [as declared on Facebook] (miles), trace 17_Child&#39;s Age, trace 18_Mean Distance to Child [as declared on Facebook] (miles), trace 18_Child&#39;s Age, trace 19_Mean Distance to Child [as declared on Facebook] (miles), trace 19_Child&#39;s Age, trace 20_Mean Distance to Child [as declared on Facebook] (miles), trace 20_Child&#39;s Age"
                            }
                        },
                        "mode": "markers",
                        "name": "trace 17",
                        "type": "scatter",
                        "xsrc": "MattSundquist:15302:2c96b3",
                        "ysrc": "MattSundquist:15302:2c96b3",
                        "error_x": {},
                        "error_y": {},
                        "visible": false,
                        "textfont": {}
                    },
                    {
                        "uid": "6bfd9b",
                        "meta": {
                            "columnNames": {
                                "x": "trace 4_Mean Distance to Child [as declared on Facebook] (miles), trace 4_Child&#39;s Age, trace 5_Mean Distance to Child [as declared on Facebook] (miles), trace 5_Child&#39;s Age, trace 6_Mean Distance to Child [as declared on Facebook] (miles), trace 6_Child&#39;s Age, trace 7_Mean Distance to Child [as declared on Facebook] (miles), trace 7_Child&#39;s Age, trace 8_Mean Distance to Child [as declared on Facebook] (miles), trace 8_Child&#39;s Age, trace 9_Child&#39;s Age, trace 10_Mean Distance to Child [as declared on Facebook] (miles), trace 10_Child&#39;s Age, trace 11_Mean Distance to Child [as declared on Facebook] (miles), trace 11_Child&#39;s Age, trace 12_Mean Distance to Child [as declared on Facebook] (miles), trace 12_Child&#39;s Age, trace 13_Mean Distance to Child [as declared on Facebook] (miles), trace 13_Child&#39;s Age, trace 14_Mean Distance to Child [as declared on Facebook] (miles), trace 14_Child&#39;s Age, trace 15_Mean Distance to Child [as declared on Facebook] (miles), trace 15_Child&#39;s Age, trace 16_Mean Distance to Child [as declared on Facebook] (miles), trace 16_Child&#39;s Age, trace 17_Mean Distance to Child [as declared on Facebook] (miles), trace 17_Child&#39;s Age, trace 18_Mean Distance to Child [as declared on Facebook] (miles), trace 18_Child&#39;s Age, trace 19_Mean Distance to Child [as declared on Facebook] (miles), trace 19_Child&#39;s Age, trace 20_Mean Distance to Child [as declared on Facebook] (miles), trace 20_Child&#39;s Age",
                                "y": "trace 4_Mean Distance to Child [as declared on Facebook] (miles), trace 4_Child&#39;s Age, trace 5_Mean Distance to Child [as declared on Facebook] (miles), trace 5_Child&#39;s Age, trace 6_Mean Distance to Child [as declared on Facebook] (miles), trace 6_Child&#39;s Age, trace 7_Mean Distance to Child [as declared on Facebook] (miles), trace 7_Child&#39;s Age, trace 8_Mean Distance to Child [as declared on Facebook] (miles), trace 8_Child&#39;s Age, trace 9_Child&#39;s Age, trace 10_Mean Distance to Child [as declared on Facebook] (miles), trace 10_Child&#39;s Age, trace 11_Mean Distance to Child [as declared on Facebook] (miles), trace 11_Child&#39;s Age, trace 12_Mean Distance to Child [as declared on Facebook] (miles), trace 12_Child&#39;s Age, trace 13_Mean Distance to Child [as declared on Facebook] (miles), trace 13_Child&#39;s Age, trace 14_Mean Distance to Child [as declared on Facebook] (miles), trace 14_Child&#39;s Age, trace 15_Mean Distance to Child [as declared on Facebook] (miles), trace 15_Child&#39;s Age, trace 16_Mean Distance to Child [as declared on Facebook] (miles), trace 16_Child&#39;s Age, trace 17_Mean Distance to Child [as declared on Facebook] (miles), trace 17_Child&#39;s Age, trace 18_Mean Distance to Child [as declared on Facebook] (miles), trace 18_Child&#39;s Age, trace 19_Mean Distance to Child [as declared on Facebook] (miles), trace 19_Child&#39;s Age, trace 20_Mean Distance to Child [as declared on Facebook] (miles), trace 20_Child&#39;s Age"
                            }
                        },
                        "mode": "markers",
                        "name": "trace 18",
                        "type": "scatter",
                        "xsrc": "MattSundquist:15302:2c96b3",
                        "ysrc": "MattSundquist:15302:2c96b3",
                        "error_x": {},
                        "error_y": {},
                        "visible": false,
                        "textfont": {}
                    },
                    {
                        "uid": "201749",
                        "meta": {
                            "columnNames": {
                                "x": "trace 4_Mean Distance to Child [as declared on Facebook] (miles), trace 4_Child&#39;s Age, trace 5_Mean Distance to Child [as declared on Facebook] (miles), trace 5_Child&#39;s Age, trace 6_Mean Distance to Child [as declared on Facebook] (miles), trace 6_Child&#39;s Age, trace 7_Mean Distance to Child [as declared on Facebook] (miles), trace 7_Child&#39;s Age, trace 8_Mean Distance to Child [as declared on Facebook] (miles), trace 8_Child&#39;s Age, trace 9_Child&#39;s Age, trace 10_Mean Distance to Child [as declared on Facebook] (miles), trace 10_Child&#39;s Age, trace 11_Mean Distance to Child [as declared on Facebook] (miles), trace 11_Child&#39;s Age, trace 12_Mean Distance to Child [as declared on Facebook] (miles), trace 12_Child&#39;s Age, trace 13_Mean Distance to Child [as declared on Facebook] (miles), trace 13_Child&#39;s Age, trace 14_Mean Distance to Child [as declared on Facebook] (miles), trace 14_Child&#39;s Age, trace 15_Mean Distance to Child [as declared on Facebook] (miles), trace 15_Child&#39;s Age, trace 16_Mean Distance to Child [as declared on Facebook] (miles), trace 16_Child&#39;s Age, trace 17_Mean Distance to Child [as declared on Facebook] (miles), trace 17_Child&#39;s Age, trace 18_Mean Distance to Child [as declared on Facebook] (miles), trace 18_Child&#39;s Age, trace 19_Mean Distance to Child [as declared on Facebook] (miles), trace 19_Child&#39;s Age, trace 20_Mean Distance to Child [as declared on Facebook] (miles), trace 20_Child&#39;s Age",
                                "y": "trace 4_Mean Distance to Child [as declared on Facebook] (miles), trace 4_Child&#39;s Age, trace 5_Mean Distance to Child [as declared on Facebook] (miles), trace 5_Child&#39;s Age, trace 6_Mean Distance to Child [as declared on Facebook] (miles), trace 6_Child&#39;s Age, trace 7_Mean Distance to Child [as declared on Facebook] (miles), trace 7_Child&#39;s Age, trace 8_Mean Distance to Child [as declared on Facebook] (miles), trace 8_Child&#39;s Age, trace 9_Child&#39;s Age, trace 10_Mean Distance to Child [as declared on Facebook] (miles), trace 10_Child&#39;s Age, trace 11_Mean Distance to Child [as declared on Facebook] (miles), trace 11_Child&#39;s Age, trace 12_Mean Distance to Child [as declared on Facebook] (miles), trace 12_Child&#39;s Age, trace 13_Mean Distance to Child [as declared on Facebook] (miles), trace 13_Child&#39;s Age, trace 14_Mean Distance to Child [as declared on Facebook] (miles), trace 14_Child&#39;s Age, trace 15_Mean Distance to Child [as declared on Facebook] (miles), trace 15_Child&#39;s Age, trace 16_Mean Distance to Child [as declared on Facebook] (miles), trace 16_Child&#39;s Age, trace 17_Mean Distance to Child [as declared on Facebook] (miles), trace 17_Child&#39;s Age, trace 18_Mean Distance to Child [as declared on Facebook] (miles), trace 18_Child&#39;s Age, trace 19_Mean Distance to Child [as declared on Facebook] (miles), trace 19_Child&#39;s Age, trace 20_Mean Distance to Child [as declared on Facebook] (miles), trace 20_Child&#39;s Age"
                            }
                        },
                        "mode": "markers",
                        "name": "trace 19",
                        "type": "scatter",
                        "xsrc": "MattSundquist:15302:2c96b3",
                        "ysrc": "MattSundquist:15302:2c96b3",
                        "error_x": {},
                        "error_y": {},
                        "visible": false,
                        "textfont": {}
                    },
                    {
                        "uid": "7c8d5e",
                        "meta": {
                            "columnNames": {
                                "x": "trace 4_Mean Distance to Child [as declared on Facebook] (miles), trace 4_Child&#39;s Age, trace 5_Mean Distance to Child [as declared on Facebook] (miles), trace 5_Child&#39;s Age, trace 6_Mean Distance to Child [as declared on Facebook] (miles), trace 6_Child&#39;s Age, trace 7_Mean Distance to Child [as declared on Facebook] (miles), trace 7_Child&#39;s Age, trace 8_Mean Distance to Child [as declared on Facebook] (miles), trace 8_Child&#39;s Age, trace 9_Child&#39;s Age, trace 10_Mean Distance to Child [as declared on Facebook] (miles), trace 10_Child&#39;s Age, trace 11_Mean Distance to Child [as declared on Facebook] (miles), trace 11_Child&#39;s Age, trace 12_Mean Distance to Child [as declared on Facebook] (miles), trace 12_Child&#39;s Age, trace 13_Mean Distance to Child [as declared on Facebook] (miles), trace 13_Child&#39;s Age, trace 14_Mean Distance to Child [as declared on Facebook] (miles), trace 14_Child&#39;s Age, trace 15_Mean Distance to Child [as declared on Facebook] (miles), trace 15_Child&#39;s Age, trace 16_Mean Distance to Child [as declared on Facebook] (miles), trace 16_Child&#39;s Age, trace 17_Mean Distance to Child [as declared on Facebook] (miles), trace 17_Child&#39;s Age, trace 18_Mean Distance to Child [as declared on Facebook] (miles), trace 18_Child&#39;s Age, trace 19_Mean Distance to Child [as declared on Facebook] (miles), trace 19_Child&#39;s Age, trace 20_Mean Distance to Child [as declared on Facebook] (miles), trace 20_Child&#39;s Age",
                                "y": "trace 4_Mean Distance to Child [as declared on Facebook] (miles), trace 4_Child&#39;s Age, trace 5_Mean Distance to Child [as declared on Facebook] (miles), trace 5_Child&#39;s Age, trace 6_Mean Distance to Child [as declared on Facebook] (miles), trace 6_Child&#39;s Age, trace 7_Mean Distance to Child [as declared on Facebook] (miles), trace 7_Child&#39;s Age, trace 8_Mean Distance to Child [as declared on Facebook] (miles), trace 8_Child&#39;s Age, trace 9_Child&#39;s Age, trace 10_Mean Distance to Child [as declared on Facebook] (miles), trace 10_Child&#39;s Age, trace 11_Mean Distance to Child [as declared on Facebook] (miles), trace 11_Child&#39;s Age, trace 12_Mean Distance to Child [as declared on Facebook] (miles), trace 12_Child&#39;s Age, trace 13_Mean Distance to Child [as declared on Facebook] (miles), trace 13_Child&#39;s Age, trace 14_Mean Distance to Child [as declared on Facebook] (miles), trace 14_Child&#39;s Age, trace 15_Mean Distance to Child [as declared on Facebook] (miles), trace 15_Child&#39;s Age, trace 16_Mean Distance to Child [as declared on Facebook] (miles), trace 16_Child&#39;s Age, trace 17_Mean Distance to Child [as declared on Facebook] (miles), trace 17_Child&#39;s Age, trace 18_Mean Distance to Child [as declared on Facebook] (miles), trace 18_Child&#39;s Age, trace 19_Mean Distance to Child [as declared on Facebook] (miles), trace 19_Child&#39;s Age, trace 20_Mean Distance to Child [as declared on Facebook] (miles), trace 20_Child&#39;s Age"
                            }
                        },
                        "mode": "markers",
                        "name": "trace 20",
                        "type": "scatter",
                        "xsrc": "MattSundquist:15302:2c96b3",
                        "ysrc": "MattSundquist:15302:2c96b3",
                        "error_x": {},
                        "error_y": {},
                        "visible": false,
                        "textfont": {}
                    }
                ],
                "frames": [],
                "layout": {
                    "font": {
                        "size": 12,
                        "color": "#444",
                        "family": "'Open sans', verdana, arial, sans-serif"
                    },
                    "smith": false,
                    "title": {
                        "font": {
                            "size": 17,
                            "color": "#444",
                            "family": "'Open sans', verdana, arial, sans-serif"
                        },
                        "text": "Average Distance between Mother and Child over of a Lifetime"
                    },
                    "width": 650,
                    "xaxis": {
                        "side": "bottom",
                        "type": "linear",
                        "dtick": 10,
                        "range": [
                            5,
                            65
                        ],
                        "tick0": 0,
                        "ticks": "",
                        "title": {
                            "font": {
                                "size": 14,
                                "color": "#444",
                                "family": "'Open sans', verdana, arial, sans-serif"
                            },
                            "text": "Child's Age"
                        },
                        "anchor": "y",
                        "domain": [
                            0,
                            1
                        ],
                        "nticks": 0,
                        "showgrid": true,
                        "showline": false,
                        "tickfont": {
                            "size": 12,
                            "color": "#444",
                            "family": "'Open sans', verdana, arial, sans-serif"
                        },
                        "tickmode": "auto",
                        "zeroline": false,
                        "autorange": false,
                        "gridcolor": "rgb(255, 255, 255)",
                        "gridwidth": 1,
                        "tickangle": "auto",
                        "showexponent": "all",
                        "exponentformat": "B",
                        "showticklabels": true
                    },
                    "yaxis": {
                        "side": "left",
                        "type": "linear",
                        "dtick": 100,
                        "range": [
                            0.1,
                            600
                        ],
                        "tick0": 0,
                        "ticks": "",
                        "title": {
                            "font": {
                                "size": 14,
                                "color": "#444",
                                "family": "'Open sans', verdana, arial, sans-serif"
                            },
                            "text": "Mean Distance to Child [as declared on Facebook] (miles)"
                        },
                        "anchor": "x",
                        "domain": [
                            0,
                            1
                        ],
                        "nticks": 0,
                        "showgrid": true,
                        "showline": false,
                        "tickfont": {
                            "size": 12,
                            "color": "#444",
                            "family": "'Open sans', verdana, arial, sans-serif"
                        },
                        "tickmode": "auto",
                        "zeroline": false,
                        "autorange": false,
                        "gridcolor": "rgb(255, 255, 255)",
                        "gridwidth": 1,
                        "tickangle": "auto",
                        "showexponent": "all",
                        "exponentformat": "B",
                        "showticklabels": true
                    },
                    "height": 650,
                    "legend": {},
                    "margin": {
                        "b": 80,
                        "l": 80,
                        "r": 80,
                        "t": 100,
                        "pad": 0,
                        "autoexpand": true
                    },
                    "autosize": false,
                    "dragmode": "zoom",
                    "hovermode": "x",
                    "separators": ".,",
                    "showlegend": false,
                    "annotations": [],
                    "hidesources": false,
                    "plot_bgcolor": "rgba(245, 247, 247, 0.8)",
                    "paper_bgcolor": "rgb(255, 255, 255)"
                }
            },
            "height": 650,
            "width": 650,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~MattSundquist",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/1428999724.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-9.jpg",
                "bio": "",
                "nickname": "",
                "website": "matthewsundquist.com",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2012-12-19 03:08:16",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "MattSundquist",
                "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": "2025-07-03T08:24:17.252330Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~dolevsandrusi/2.embed",
            "fid": "dolevsandrusi:2",
            "filename": "Plot 2",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/dolevsandrusi/2/9_Q9U3K8TGP56ZQABTOWVMCQ63Q1AZ33.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/dolevsandrusi/2/2_M4PHF2873L7V6V01K3KMS8GEIM5PPW.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/dolevsandrusi/2/8_EH8V9ZQDMAM15PSFQHU4WH8A0FFB2Y.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/dolevsandrusi/2/9_Q9U3K8TGP56ZQABTOWVMCQ63Q1AZ33.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/dolevsandrusi:2",
                "plots": "https://api.plotly.com/v2/plots/dolevsandrusi:2",
                "parent": "https://api.plotly.com/v2/folders/home?user=dolevsandrusi"
            },
            "owner": "dolevsandrusi",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 0,
            "web_url": "https://chart-studio.plotly.com/~dolevsandrusi/2/",
            "world_readable": true,
            "date_modified": "2025-07-03T08:24:17.264Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~dolevsandrusi/2/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": false,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "meta": {
                            "columnNames": {
                                "x": "x",
                                "y": "y",
                                "size": "Trace 0, size",
                                "text": "text"
                            }
                        },
                        "mode": "markers",
                        "type": "scatter",
                        "xsrc": "dolevsandrusi:1:a2ed73",
                        "ysrc": "dolevsandrusi:1:c9226c",
                        "marker": {
                            "meta": {
                                "columnNames": {
                                    "size": "Trace 0, marker, size",
                                    "color": "color"
                                }
                            },
                            "sizesrc": "dolevsandrusi:1:916244",
                            "colorbar": {
                                "title": {
                                    "text": "carat"
                                }
                            },
                            "colorsrc": "dolevsandrusi:1:83072b",
                            "sizemode": "area",
                            "colorscale": [
                                [
                                    0,
                                    "#440154"
                                ],
                                [
                                    0.111111111111111,
                                    "#482878"
                                ],
                                [
                                    0.222222222222222,
                                    "#3E4A89"
                                ],
                                [
                                    0.333333333333333,
                                    "#31688E"
                                ],
                                [
                                    0.444444444444444,
                                    "#26838E"
                                ],
                                [
                                    0.555555555555555,
                                    "#1F9D89"
                                ],
                                [
                                    0.666666666666667,
                                    "#35B779"
                                ],
                                [
                                    0.777777777777778,
                                    "#6CCE59"
                                ],
                                [
                                    0.888888888888889,
                                    "#B4DD2C"
                                ],
                                [
                                    1,
                                    "#FDE725"
                                ]
                            ]
                        },
                        "inherit": true,
                        "sizesrc": "dolevsandrusi:1:3cbd4f",
                        "textsrc": "dolevsandrusi:1:685ebc"
                    }
                ],
                "frames": [],
                "layout": {
                    "xaxis": {
                        "type": "linear",
                        "range": [
                            0.06647859126720712,
                            3.18354694676281
                        ],
                        "title": {
                            "text": "carat"
                        },
                        "autorange": true,
                        "showspikes": false
                    },
                    "yaxis": {
                        "type": "linear",
                        "range": [
                            -863.9641153433088,
                            20277.056800144535
                        ],
                        "title": {
                            "text": "price"
                        },
                        "autorange": true,
                        "showspikes": false
                    },
                    "autosize": true
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~dolevsandrusi",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/28.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-2.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2025-07-03 06:01:14",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "dolevsandrusi",
                "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": "2025-07-03T07:56:36.900217Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~Redonu80/1.embed",
            "fid": "Redonu80:1",
            "filename": "Plot 1",
            "filetype": "plot",
            "img_url": "https://api.plotly.com/v2/files/Redonu80:1/image?image_name=list-thumb",
            "image_urls": {
                "default": "https://api.plotly.com/v2/files/Redonu80:1/image?image_name=default",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/Redonu80/1/8_GRYQXQSLDQ3JL1R1T8AC4HZQ8NL3JL.png",
                "list-thumb": "https://api.plotly.com/v2/files/Redonu80:1/image?image_name=list-thumb"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/Redonu80:1",
                "plots": "https://api.plotly.com/v2/plots/Redonu80:1",
                "parent": "https://api.plotly.com/v2/folders/home?user=Redonu80"
            },
            "owner": "Redonu80",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 0,
            "web_url": "https://chart-studio.plotly.com/~Redonu80/1/",
            "world_readable": true,
            "date_modified": "2025-07-03T07:57:00.806Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~Redonu80/1/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": false,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "meta": {
                            "columnNames": {
                                "x": "Year",
                                "y": "SHem"
                            }
                        },
                        "mode": "markers",
                        "type": "bar",
                        "xsrc": "Redonu80:0:aad325",
                        "ysrc": "Redonu80:0:91322b",
                        "orientation": "v"
                    }
                ],
                "frames": [],
                "layout": {
                    "title": {
                        "text": "Southern Hemisphere Temperature 1880 - 2014"
                    },
                    "xaxis": {
                        "type": "linear",
                        "range": [
                            1879.5,
                            2014.5
                        ],
                        "autorange": true
                    },
                    "yaxis": {
                        "type": "linear",
                        "range": [
                            -52.888888888888886,
                            64.88888888888889
                        ],
                        "autorange": true
                    },
                    "autosize": true,
                    "template": {
                        "data": {
                            "bar": [
                                {
                                    "type": "bar",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "table": [
                                {
                                    "type": "table",
                                    "cells": {
                                        "fill": {
                                            "color": "#EBF0F8"
                                        },
                                        "line": {
                                            "color": "white"
                                        }
                                    },
                                    "header": {
                                        "fill": {
                                            "color": "#C8D4E3"
                                        },
                                        "line": {
                                            "color": "white"
                                        }
                                    }
                                }
                            ],
                            "carpet": [
                                {
                                    "type": "carpet",
                                    "aaxis": {
                                        "gridcolor": "#C8D4E3",
                                        "linecolor": "#C8D4E3",
                                        "endlinecolor": "#2a3f5f",
                                        "minorgridcolor": "#C8D4E3",
                                        "startlinecolor": "#2a3f5f"
                                    },
                                    "baxis": {
                                        "gridcolor": "#C8D4E3",
                                        "linecolor": "#C8D4E3",
                                        "endlinecolor": "#2a3f5f",
                                        "minorgridcolor": "#C8D4E3",
                                        "startlinecolor": "#2a3f5f"
                                    }
                                }
                            ],
                            "mesh3d": [
                                {
                                    "type": "mesh3d",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "contour": [
                                {
                                    "type": "contour",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ],
                            "heatmap": [
                                {
                                    "type": "heatmap",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ],
                            "scatter": [
                                {
                                    "type": "scatter",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "surface": [
                                {
                                    "type": "surface",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "heatmapgl": [
                                {
                                    "type": "heatmapgl",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "histogram": [
                                {
                                    "type": "histogram",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "parcoords": [
                                {
                                    "line": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    },
                                    "type": "parcoords"
                                }
                            ],
                            "scatter3d": [
                                {
                                    "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
                                    },
                                    "autocolorscale": true
                                }
                            ],
                            "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
                                    },
                                    "autocolorscale": true
                                }
                            ]
                        },
                        "layout": {
                            "geo": {
                                "bgcolor": "white",
                                "showland": true,
                                "lakecolor": "white",
                                "landcolor": "white",
                                "showlakes": true,
                                "subunitcolor": "#C8D4E3"
                            },
                            "font": {
                                "color": "#2a3f5f"
                            },
                            "polar": {
                                "bgcolor": "white",
                                "radialaxis": {
                                    "ticks": "",
                                    "gridcolor": "#EBF0F8",
                                    "linecolor": "#EBF0F8"
                                },
                                "angularaxis": {
                                    "ticks": "",
                                    "gridcolor": "#EBF0F8",
                                    "linecolor": "#EBF0F8"
                                }
                            },
                            "scene": {
                                "xaxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "gridwidth": 2,
                                    "linecolor": "#EBF0F8",
                                    "zerolinecolor": "#EBF0F8",
                                    "showbackground": true,
                                    "backgroundcolor": "white"
                                },
                                "yaxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "gridwidth": 2,
                                    "linecolor": "#EBF0F8",
                                    "zerolinecolor": "#EBF0F8",
                                    "showbackground": true,
                                    "backgroundcolor": "white"
                                },
                                "zaxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "gridwidth": 2,
                                    "linecolor": "#EBF0F8",
                                    "zerolinecolor": "#EBF0F8",
                                    "showbackground": true,
                                    "backgroundcolor": "white"
                                }
                            },
                            "title": {
                                "x": 0.05
                            },
                            "xaxis": {
                                "ticks": "",
                                "gridcolor": "#EBF0F8",
                                "linecolor": "#EBF0F8",
                                "automargin": true,
                                "zerolinecolor": "#EBF0F8",
                                "zerolinewidth": 2
                            },
                            "yaxis": {
                                "ticks": "",
                                "gridcolor": "#EBF0F8",
                                "linecolor": "#EBF0F8",
                                "automargin": true,
                                "zerolinecolor": "#EBF0F8",
                                "zerolinewidth": 2
                            },
                            "ternary": {
                                "aaxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "linecolor": "#A2B1C6"
                                },
                                "baxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "linecolor": "#A2B1C6"
                                },
                                "caxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "linecolor": "#A2B1C6"
                                },
                                "bgcolor": "white"
                            },
                            "colorway": [
                                "#636efa",
                                "#EF553B",
                                "#00cc96",
                                "#ab63fa",
                                "#19d3f3",
                                "#e763fa",
                                "#fecb52",
                                "#ffa15a",
                                "#ff6692",
                                "#b6e880"
                            ],
                            "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,
                                        "#0508b8"
                                    ],
                                    [
                                        0.0893854748603352,
                                        "#1910d8"
                                    ],
                                    [
                                        0.1787709497206704,
                                        "#3c19f0"
                                    ],
                                    [
                                        0.2681564245810056,
                                        "#6b1cfb"
                                    ],
                                    [
                                        0.3575418994413408,
                                        "#981cfd"
                                    ],
                                    [
                                        0.44692737430167595,
                                        "#bf1cfd"
                                    ],
                                    [
                                        0.5363128491620112,
                                        "#dd2bfd"
                                    ],
                                    [
                                        0.6256983240223464,
                                        "#f246fe"
                                    ],
                                    [
                                        0.7150837988826816,
                                        "#fc67fd"
                                    ],
                                    [
                                        0.8044692737430168,
                                        "#fe88fc"
                                    ],
                                    [
                                        0.8938547486033519,
                                        "#fea5fd"
                                    ],
                                    [
                                        0.9832402234636871,
                                        "#febefe"
                                    ],
                                    [
                                        1,
                                        "#fec3fe"
                                    ]
                                ],
                                "sequentialminus": [
                                    [
                                        0,
                                        "#0508b8"
                                    ],
                                    [
                                        0.0893854748603352,
                                        "#1910d8"
                                    ],
                                    [
                                        0.1787709497206704,
                                        "#3c19f0"
                                    ],
                                    [
                                        0.2681564245810056,
                                        "#6b1cfb"
                                    ],
                                    [
                                        0.3575418994413408,
                                        "#981cfd"
                                    ],
                                    [
                                        0.44692737430167595,
                                        "#bf1cfd"
                                    ],
                                    [
                                        0.5363128491620112,
                                        "#dd2bfd"
                                    ],
                                    [
                                        0.6256983240223464,
                                        "#f246fe"
                                    ],
                                    [
                                        0.7150837988826816,
                                        "#fc67fd"
                                    ],
                                    [
                                        0.8044692737430168,
                                        "#fe88fc"
                                    ],
                                    [
                                        0.8938547486033519,
                                        "#fea5fd"
                                    ],
                                    [
                                        0.9832402234636871,
                                        "#febefe"
                                    ],
                                    [
                                        1,
                                        "#fec3fe"
                                    ]
                                ]
                            },
                            "plot_bgcolor": "white",
                            "paper_bgcolor": "white",
                            "shapedefaults": {
                                "line": {
                                    "width": 0
                                },
                                "opacity": 0.4,
                                "fillcolor": "#506784"
                            },
                            "annotationdefaults": {
                                "arrowhead": 0,
                                "arrowcolor": "#506784",
                                "arrowwidth": 1
                            }
                        },
                        "themeRef": "PLOTLY_WHITE"
                    }
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~Redonu80",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/9.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-14.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2025-07-02 06:08:11",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "Redonu80",
                "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": "2025-07-03T07:32:49.198797Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~hearingvoicesof/5.embed",
            "fid": "hearingvoicesof:5",
            "filename": "Modelled 22 to 25",
            "filetype": "plot",
            "img_url": "https://api.plotly.com/v2/files/hearingvoicesof:5/image?image_name=list-thumb",
            "image_urls": {
                "default": "https://api.plotly.com/v2/files/hearingvoicesof:5/image?image_name=default",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/hearingvoicesof/5/8_PSJXO26VDRMQ38FS4RN2W10LLL0EQN.png",
                "list-thumb": "https://api.plotly.com/v2/files/hearingvoicesof:5/image?image_name=list-thumb"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/hearingvoicesof:5",
                "plots": "https://api.plotly.com/v2/plots/hearingvoicesof:5",
                "parent": "https://api.plotly.com/v2/folders/home?user=hearingvoicesof"
            },
            "owner": "hearingvoicesof",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 0,
            "web_url": "https://chart-studio.plotly.com/~hearingvoicesof/5/",
            "world_readable": true,
            "date_modified": "2025-07-03T07:32:49.208Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~hearingvoicesof/5/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": false,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "link": {
                            "meta": {
                                "columnNames": {
                                    "color": "Link colour",
                                    "value": "Value",
                                    "source": "Source",
                                    "target": "Target"
                                }
                            },
                            "colorsrc": "hearingvoicesof:4:4a21ef",
                            "valuesrc": "hearingvoicesof:4:617cde",
                            "sourcesrc": "hearingvoicesof:4:5b87fc",
                            "targetsrc": "hearingvoicesof:4:6a7012"
                        },
                        "meta": {
                            "columnNames": {
                                "link": {
                                    "color": "Link colour",
                                    "value": "Value",
                                    "source": "Source",
                                    "target": "Target"
                                },
                                "node": {
                                    "color": "Node colour",
                                    "label": "Labels"
                                }
                            }
                        },
                        "mode": "markers",
                        "node": {
                            "pad": 15,
                            "meta": {
                                "columnNames": {
                                    "color": "Node colour",
                                    "label": "Labels"
                                }
                            },
                            "colorsrc": "hearingvoicesof:4:e64f0d",
                            "labelsrc": "hearingvoicesof:4:b67dea",
                            "thickness": 15
                        },
                        "type": "sankey"
                    }
                ],
                "frames": [],
                "layout": {
                    "title": {
                        "text": "Modelled Bean 2022 Swings to 2025 Distributions"
                    },
                    "xaxis": {
                        "range": [
                            -0.05034193907267434,
                            0.31372991721475085
                        ],
                        "autorange": true
                    },
                    "yaxis": {
                        "range": [
                            -1.1103896103896105,
                            0.8896103896103896
                        ],
                        "autorange": true
                    },
                    "autosize": true,
                    "template": {
                        "data": {
                            "bar": [
                                {
                                    "type": "bar",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "table": [
                                {
                                    "type": "table",
                                    "cells": {
                                        "fill": {
                                            "color": "#EBF0F8"
                                        },
                                        "line": {
                                            "color": "white"
                                        }
                                    },
                                    "header": {
                                        "fill": {
                                            "color": "#C8D4E3"
                                        },
                                        "line": {
                                            "color": "white"
                                        }
                                    }
                                }
                            ],
                            "carpet": [
                                {
                                    "type": "carpet",
                                    "aaxis": {
                                        "gridcolor": "#C8D4E3",
                                        "linecolor": "#C8D4E3",
                                        "endlinecolor": "#2a3f5f",
                                        "minorgridcolor": "#C8D4E3",
                                        "startlinecolor": "#2a3f5f"
                                    },
                                    "baxis": {
                                        "gridcolor": "#C8D4E3",
                                        "linecolor": "#C8D4E3",
                                        "endlinecolor": "#2a3f5f",
                                        "minorgridcolor": "#C8D4E3",
                                        "startlinecolor": "#2a3f5f"
                                    }
                                }
                            ],
                            "mesh3d": [
                                {
                                    "type": "mesh3d",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "contour": [
                                {
                                    "type": "contour",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ],
                            "heatmap": [
                                {
                                    "type": "heatmap",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ],
                            "scatter": [
                                {
                                    "type": "scatter",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "surface": [
                                {
                                    "type": "surface",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "heatmapgl": [
                                {
                                    "type": "heatmapgl",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "histogram": [
                                {
                                    "type": "histogram",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "parcoords": [
                                {
                                    "line": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    },
                                    "type": "parcoords"
                                }
                            ],
                            "scatter3d": [
                                {
                                    "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
                                    },
                                    "autocolorscale": true
                                }
                            ],
                            "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
                                    },
                                    "autocolorscale": true
                                }
                            ]
                        },
                        "layout": {
                            "geo": {
                                "bgcolor": "white",
                                "showland": true,
                                "lakecolor": "white",
                                "landcolor": "white",
                                "showlakes": true,
                                "subunitcolor": "#C8D4E3"
                            },
                            "font": {
                                "color": "#2a3f5f"
                            },
                            "polar": {
                                "bgcolor": "white",
                                "radialaxis": {
                                    "ticks": "",
                                    "gridcolor": "#EBF0F8",
                                    "linecolor": "#EBF0F8"
                                },
                                "angularaxis": {
                                    "ticks": "",
                                    "gridcolor": "#EBF0F8",
                                    "linecolor": "#EBF0F8"
                                }
                            },
                            "scene": {
                                "xaxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "gridwidth": 2,
                                    "linecolor": "#EBF0F8",
                                    "zerolinecolor": "#EBF0F8",
                                    "showbackground": true,
                                    "backgroundcolor": "white"
                                },
                                "yaxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "gridwidth": 2,
                                    "linecolor": "#EBF0F8",
                                    "zerolinecolor": "#EBF0F8",
                                    "showbackground": true,
                                    "backgroundcolor": "white"
                                },
                                "zaxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "gridwidth": 2,
                                    "linecolor": "#EBF0F8",
                                    "zerolinecolor": "#EBF0F8",
                                    "showbackground": true,
                                    "backgroundcolor": "white"
                                }
                            },
                            "title": {
                                "x": 0.05
                            },
                            "xaxis": {
                                "ticks": "",
                                "gridcolor": "#EBF0F8",
                                "linecolor": "#EBF0F8",
                                "automargin": true,
                                "zerolinecolor": "#EBF0F8",
                                "zerolinewidth": 2
                            },
                            "yaxis": {
                                "ticks": "",
                                "gridcolor": "#EBF0F8",
                                "linecolor": "#EBF0F8",
                                "automargin": true,
                                "zerolinecolor": "#EBF0F8",
                                "zerolinewidth": 2
                            },
                            "ternary": {
                                "aaxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "linecolor": "#A2B1C6"
                                },
                                "baxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "linecolor": "#A2B1C6"
                                },
                                "caxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "linecolor": "#A2B1C6"
                                },
                                "bgcolor": "white"
                            },
                            "colorway": [
                                "#636efa",
                                "#EF553B",
                                "#00cc96",
                                "#ab63fa",
                                "#19d3f3",
                                "#e763fa",
                                "#fecb52",
                                "#ffa15a",
                                "#ff6692",
                                "#b6e880"
                            ],
                            "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,
                                        "#0508b8"
                                    ],
                                    [
                                        0.0893854748603352,
                                        "#1910d8"
                                    ],
                                    [
                                        0.1787709497206704,
                                        "#3c19f0"
                                    ],
                                    [
                                        0.2681564245810056,
                                        "#6b1cfb"
                                    ],
                                    [
                                        0.3575418994413408,
                                        "#981cfd"
                                    ],
                                    [
                                        0.44692737430167595,
                                        "#bf1cfd"
                                    ],
                                    [
                                        0.5363128491620112,
                                        "#dd2bfd"
                                    ],
                                    [
                                        0.6256983240223464,
                                        "#f246fe"
                                    ],
                                    [
                                        0.7150837988826816,
                                        "#fc67fd"
                                    ],
                                    [
                                        0.8044692737430168,
                                        "#fe88fc"
                                    ],
                                    [
                                        0.8938547486033519,
                                        "#fea5fd"
                                    ],
                                    [
                                        0.9832402234636871,
                                        "#febefe"
                                    ],
                                    [
                                        1,
                                        "#fec3fe"
                                    ]
                                ],
                                "sequentialminus": [
                                    [
                                        0,
                                        "#0508b8"
                                    ],
                                    [
                                        0.0893854748603352,
                                        "#1910d8"
                                    ],
                                    [
                                        0.1787709497206704,
                                        "#3c19f0"
                                    ],
                                    [
                                        0.2681564245810056,
                                        "#6b1cfb"
                                    ],
                                    [
                                        0.3575418994413408,
                                        "#981cfd"
                                    ],
                                    [
                                        0.44692737430167595,
                                        "#bf1cfd"
                                    ],
                                    [
                                        0.5363128491620112,
                                        "#dd2bfd"
                                    ],
                                    [
                                        0.6256983240223464,
                                        "#f246fe"
                                    ],
                                    [
                                        0.7150837988826816,
                                        "#fc67fd"
                                    ],
                                    [
                                        0.8044692737430168,
                                        "#fe88fc"
                                    ],
                                    [
                                        0.8938547486033519,
                                        "#fea5fd"
                                    ],
                                    [
                                        0.9832402234636871,
                                        "#febefe"
                                    ],
                                    [
                                        1,
                                        "#fec3fe"
                                    ]
                                ]
                            },
                            "plot_bgcolor": "white",
                            "paper_bgcolor": "white",
                            "shapedefaults": {
                                "line": {
                                    "width": 0
                                },
                                "opacity": 0.4,
                                "fillcolor": "#506784"
                            },
                            "annotationdefaults": {
                                "arrowhead": 0,
                                "arrowcolor": "#506784",
                                "arrowwidth": 1
                            }
                        },
                        "themeRef": "PLOTLY_WHITE"
                    },
                    "annotations": [
                        {
                            "x": -0.03442622950819674,
                            "y": -0.11038961038961037,
                            "ax": -448,
                            "ay": 225,
                            "text": "2022 Election",
                            "showarrow": false
                        },
                        {
                            "x": 0.057377049180327884,
                            "y": -0.08586644962666759,
                            "text": "Modelled swings",
                            "showarrow": false
                        },
                        {
                            "x": 0.1885245901639344,
                            "y": -0.11038961038961037,
                            "text": "2025 Election",
                            "showarrow": false
                        }
                    ]
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~hearingvoicesof",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/83.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-7.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2025-06-27 12:48:09",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "hearingvoicesof",
                "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": "2025-07-03T06:30:45.415147Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~njjacob/1.embed",
            "fid": "njjacob:1",
            "filename": "okr",
            "filetype": "plot",
            "img_url": "https://api.plotly.com/v2/files/njjacob:1/image?image_name=list-thumb",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/njjacob/1/2_FXJ0F058EGH229NGSD1BXGY91GLPBV.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/njjacob/1/8_NI96NW3OD1HE10D9JSBF3P55JU9WGK.png",
                "list-thumb": "https://api.plotly.com/v2/files/njjacob:1/image?image_name=list-thumb"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/njjacob:1",
                "plots": "https://api.plotly.com/v2/plots/njjacob:1",
                "parent": "https://api.plotly.com/v2/folders/home?user=njjacob"
            },
            "owner": "njjacob",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 0,
            "web_url": "https://chart-studio.plotly.com/~njjacob/1/",
            "world_readable": true,
            "date_modified": "2025-07-03T06:30:45.427Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~njjacob/1/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": true,
            "autosize": false,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "line": {
                            "width": 1
                        },
                        "meta": {
                            "columnNames": {
                                "y": "Dirk Nowitzki"
                            }
                        },
                        "name": "Dirk Nowitzki",
                        "type": "box",
                        "ysrc": "njjacob:0:ab30e2",
                        "jitter": 0.4,
                        "marker": {
                            "line": {
                                "width": 0
                            },
                            "size": 2,
                            "opacity": 0.9
                        },
                        "textfont": {},
                        "boxpoints": "all",
                        "fillcolor": "rgb(255, 255, 255)"
                    },
                    {
                        "line": {
                            "width": 1
                        },
                        "meta": {
                            "columnNames": {
                                "y": "JR Smith"
                            }
                        },
                        "name": "JR Smith",
                        "type": "box",
                        "ysrc": "njjacob:0:2c2dbc",
                        "jitter": 0.4,
                        "marker": {
                            "line": {
                                "width": 0
                            },
                            "size": 2,
                            "opacity": 0.9
                        },
                        "textfont": {},
                        "boxpoints": "all",
                        "fillcolor": "rgb(255, 255, 255)"
                    },
                    {
                        "line": {
                            "width": 1
                        },
                        "meta": {
                            "columnNames": {
                                "y": "Al Horford"
                            }
                        },
                        "name": "Al Horford",
                        "type": "box",
                        "ysrc": "njjacob:0:495634",
                        "jitter": 0.4,
                        "marker": {
                            "line": {
                                "width": 0
                            },
                            "size": 2,
                            "opacity": 0.9
                        },
                        "textfont": {},
                        "boxpoints": "all",
                        "fillcolor": "rgb(255, 255, 255)"
                    },
                    {
                        "line": {
                            "width": 1
                        },
                        "meta": {
                            "columnNames": {
                                "y": "Josh Smith"
                            }
                        },
                        "name": "Josh Smith",
                        "type": "box",
                        "ysrc": "njjacob:0:cb56b8",
                        "jitter": 0.4,
                        "marker": {
                            "line": {
                                "width": 0
                            },
                            "size": 2,
                            "opacity": 0.9
                        },
                        "textfont": {},
                        "boxpoints": "all",
                        "fillcolor": "rgb(255, 255, 255)"
                    },
                    {
                        "line": {
                            "width": 1
                        },
                        "meta": {
                            "columnNames": {
                                "y": "Brandon Jennings"
                            }
                        },
                        "name": "Brandon Jennings",
                        "type": "box",
                        "ysrc": "njjacob:0:94934f",
                        "jitter": 0.4,
                        "marker": {
                            "line": {
                                "width": 0
                            },
                            "size": 2,
                            "opacity": 0.9
                        },
                        "textfont": {},
                        "boxpoints": "all",
                        "fillcolor": "rgb(255, 255, 255)"
                    },
                    {
                        "line": {
                            "width": 1
                        },
                        "meta": {
                            "columnNames": {
                                "y": "Kemba Walker"
                            }
                        },
                        "name": "Kemba Walker",
                        "type": "box",
                        "ysrc": "njjacob:0:99b56e",
                        "jitter": 0.4,
                        "marker": {
                            "line": {
                                "width": 0
                            },
                            "size": 2,
                            "opacity": 0.9
                        },
                        "textfont": {},
                        "boxpoints": "all",
                        "fillcolor": "rgb(255, 255, 255)"
                    },
                    {
                        "line": {
                            "width": 1
                        },
                        "meta": {
                            "columnNames": {
                                "y": "David Lee"
                            }
                        },
                        "name": "David Lee",
                        "type": "box",
                        "ysrc": "njjacob:0:c009af",
                        "jitter": 0.4,
                        "marker": {
                            "line": {
                                "width": 0
                            },
                            "size": 2,
                            "opacity": 0.9
                        },
                        "textfont": {},
                        "boxpoints": "all",
                        "fillcolor": "rgb(255, 255, 255)"
                    },
                    {
                        "line": {
                            "width": 1
                        },
                        "meta": {
                            "columnNames": {
                                "y": "Ty Lawson"
                            }
                        },
                        "name": "Ty Lawson",
                        "type": "box",
                        "ysrc": "njjacob:0:e74dd3",
                        "jitter": 0.4,
                        "marker": {
                            "line": {
                                "width": 0
                            },
                            "size": 2,
                            "opacity": 0.9
                        },
                        "textfont": {},
                        "boxpoints": "all",
                        "fillcolor": "rgb(255, 255, 255)"
                    },
                    {
                        "line": {
                            "width": 1
                        },
                        "meta": {
                            "columnNames": {
                                "y": "Jrue Holiday"
                            }
                        },
                        "name": "Jrue Holiday",
                        "type": "box",
                        "ysrc": "njjacob:0:f50738",
                        "jitter": 0.4,
                        "marker": {
                            "line": {
                                "width": 0
                            },
                            "size": 2,
                            "opacity": 0.9
                        },
                        "textfont": {},
                        "boxpoints": "all",
                        "fillcolor": "rgb(255, 255, 255)"
                    },
                    {
                        "line": {
                            "width": 1
                        },
                        "meta": {
                            "columnNames": {
                                "y": "Paul George"
                            }
                        },
                        "name": "Paul George",
                        "type": "box",
                        "ysrc": "njjacob:0:eaec8c",
                        "jitter": 0.4,
                        "marker": {
                            "line": {
                                "width": 0
                            },
                            "size": 2,
                            "opacity": 0.9
                        },
                        "textfont": {},
                        "boxpoints": "all",
                        "fillcolor": "rgb(255, 255, 255)"
                    },
                    {
                        "line": {
                            "width": 1
                        },
                        "meta": {
                            "columnNames": {
                                "y": "Al Jefferson"
                            }
                        },
                        "name": "Al Jefferson",
                        "type": "box",
                        "ysrc": "njjacob:0:17cc14",
                        "jitter": 0.4,
                        "marker": {
                            "line": {
                                "width": 0
                            },
                            "size": 2,
                            "opacity": 0.9
                        },
                        "textfont": {},
                        "boxpoints": "all",
                        "fillcolor": "rgb(255, 255, 255)"
                    },
                    {
                        "line": {
                            "width": 1
                        },
                        "meta": {
                            "columnNames": {
                                "y": "Tim Duncan"
                            }
                        },
                        "name": "Tim Duncan",
                        "type": "box",
                        "ysrc": "njjacob:0:a3e5c2",
                        "jitter": 0.4,
                        "marker": {
                            "line": {
                                "width": 0
                            },
                            "size": 2,
                            "opacity": 0.9
                        },
                        "textfont": {},
                        "boxpoints": "all",
                        "fillcolor": "rgb(255, 255, 255)"
                    },
                    {
                        "line": {
                            "width": 1
                        },
                        "meta": {
                            "columnNames": {
                                "y": "Chris Paul"
                            }
                        },
                        "name": "Chris Paul",
                        "type": "box",
                        "ysrc": "njjacob:0:195870",
                        "jitter": 0.4,
                        "marker": {
                            "line": {
                                "width": 0
                            },
                            "size": 2,
                            "opacity": 0.9
                        },
                        "textfont": {},
                        "boxpoints": "all",
                        "fillcolor": "rgb(255, 255, 255)"
                    },
                    {
                        "line": {
                            "width": 1
                        },
                        "meta": {
                            "columnNames": {
                                "y": "Blake Griffin"
                            }
                        },
                        "name": "Blake Griffin",
                        "type": "box",
                        "ysrc": "njjacob:0:618595",
                        "jitter": 0.4,
                        "marker": {
                            "line": {
                                "width": 0
                            },
                            "size": 2,
                            "opacity": 0.9
                        },
                        "textfont": {},
                        "boxpoints": "all",
                        "fillcolor": "rgb(255, 255, 255)"
                    },
                    {
                        "line": {
                            "width": 1
                        },
                        "meta": {
                            "columnNames": {
                                "y": "Demarcus Cousins"
                            }
                        },
                        "name": "Demarcus Cousins",
                        "type": "box",
                        "ysrc": "njjacob:0:1d3e1d",
                        "jitter": 0.4,
                        "marker": {
                            "line": {
                                "width": 0
                            },
                            "size": 2,
                            "opacity": 0.9
                        },
                        "textfont": {},
                        "boxpoints": "all",
                        "fillcolor": "rgb(255, 255, 255)"
                    },
                    {
                        "line": {
                            "width": 1
                        },
                        "meta": {
                            "columnNames": {
                                "y": "Dwight Howard"
                            }
                        },
                        "name": "Dwight Howard",
                        "type": "box",
                        "ysrc": "njjacob:0:2ed491",
                        "jitter": 0.4,
                        "marker": {
                            "line": {
                                "width": 0
                            },
                            "size": 2,
                            "opacity": 0.9
                        },
                        "textfont": {},
                        "boxpoints": "all",
                        "fillcolor": "rgb(255, 255, 255)"
                    },
                    {
                        "line": {
                            "width": 1
                        },
                        "meta": {
                            "columnNames": {
                                "y": "Eric Gordon"
                            }
                        },
                        "name": "Eric Gordon",
                        "type": "box",
                        "ysrc": "njjacob:0:c5ce74",
                        "jitter": 0.4,
                        "marker": {
                            "line": {
                                "width": 0
                            },
                            "size": 2,
                            "opacity": 0.9
                        },
                        "textfont": {},
                        "boxpoints": "all",
                        "fillcolor": "rgb(255, 255, 255)"
                    },
                    {
                        "line": {
                            "width": 1
                        },
                        "meta": {
                            "columnNames": {
                                "y": "Joe Johnson"
                            }
                        },
                        "name": "Joe Johnson",
                        "type": "box",
                        "ysrc": "njjacob:0:6711ad",
                        "jitter": 0.4,
                        "marker": {
                            "line": {
                                "width": 0
                            },
                            "size": 2,
                            "opacity": 0.9
                        },
                        "textfont": {},
                        "boxpoints": "all",
                        "fillcolor": "rgb(255, 255, 255)"
                    },
                    {
                        "line": {
                            "width": 1
                        },
                        "meta": {
                            "columnNames": {
                                "y": "Nikola Pekovic"
                            }
                        },
                        "name": "Nikola Pekovic",
                        "type": "box",
                        "ysrc": "njjacob:0:4050d0",
                        "jitter": 0.4,
                        "marker": {
                            "line": {
                                "width": 0
                            },
                            "size": 2,
                            "opacity": 0.9
                        },
                        "textfont": {},
                        "boxpoints": "all",
                        "fillcolor": "rgb(255, 255, 255)"
                    },
                    {
                        "line": {
                            "width": 1
                        },
                        "meta": {
                            "columnNames": {
                                "y": "Danilo Gallinari"
                            }
                        },
                        "name": "Danilo Gallinari",
                        "type": "box",
                        "ysrc": "njjacob:0:d056b4",
                        "jitter": 0.4,
                        "marker": {
                            "line": {
                                "width": 0
                            },
                            "size": 2,
                            "opacity": 0.9
                        },
                        "textfont": {},
                        "boxpoints": "all",
                        "fillcolor": "rgb(255, 255, 255)"
                    },
                    {
                        "line": {
                            "width": 1
                        },
                        "meta": {
                            "columnNames": {
                                "y": "Arron Afflalo"
                            }
                        },
                        "name": "Arron Afflalo",
                        "type": "box",
                        "ysrc": "njjacob:0:7fbbfa",
                        "jitter": 0.4,
                        "marker": {
                            "line": {
                                "width": 0
                            },
                            "size": 2,
                            "opacity": 0.9
                        },
                        "textfont": {},
                        "boxpoints": "all",
                        "fillcolor": "rgb(255, 255, 255)"
                    },
                    {
                        "line": {
                            "width": 1
                        },
                        "meta": {
                            "columnNames": {
                                "y": "Klay Thompson"
                            }
                        },
                        "name": "Klay Thompson",
                        "type": "box",
                        "ysrc": "njjacob:0:5c1c90",
                        "jitter": 0.4,
                        "marker": {
                            "line": {
                                "width": 0
                            },
                            "size": 2,
                            "opacity": 0.9
                        },
                        "textfont": {},
                        "boxpoints": "all",
                        "fillcolor": "rgb(255, 255, 255)"
                    },
                    {
                        "line": {
                            "width": 1
                        },
                        "meta": {
                            "columnNames": {
                                "y": "David West"
                            }
                        },
                        "name": "David West",
                        "type": "box",
                        "ysrc": "njjacob:0:8a8674",
                        "jitter": 0.4,
                        "marker": {
                            "line": {
                                "width": 0
                            },
                            "size": 2,
                            "opacity": 0.9
                        },
                        "textfont": {},
                        "boxpoints": "all",
                        "fillcolor": "rgb(255, 255, 255)"
                    },
                    {
                        "line": {
                            "width": 1
                        },
                        "meta": {
                            "columnNames": {
                                "y": "Greg Monroe"
                            }
                        },
                        "name": "Greg Monroe",
                        "type": "box",
                        "ysrc": "njjacob:0:308507",
                        "jitter": 0.4,
                        "marker": {
                            "line": {
                                "width": 0
                            },
                            "size": 2,
                            "opacity": 0.9
                        },
                        "textfont": {},
                        "boxpoints": "all",
                        "fillcolor": "rgb(255, 255, 255)"
                    },
                    {
                        "line": {
                            "width": 1
                        },
                        "meta": {
                            "columnNames": {
                                "y": "Ryan J Anderson"
                            }
                        },
                        "name": "Ryan J Anderson",
                        "type": "box",
                        "ysrc": "njjacob:0:e00ba0",
                        "jitter": 0.4,
                        "marker": {
                            "line": {
                                "width": 0
                            },
                            "size": 2,
                            "opacity": 0.9
                        },
                        "textfont": {},
                        "boxpoints": "all",
                        "fillcolor": "rgb(255, 255, 255)"
                    },
                    {
                        "line": {
                            "width": 1
                        },
                        "meta": {
                            "columnNames": {
                                "y": "Jamal Crawford"
                            }
                        },
                        "name": "Jamal Crawford",
                        "type": "box",
                        "ysrc": "njjacob:0:187ae9",
                        "jitter": 0.4,
                        "marker": {
                            "line": {
                                "width": 0
                            },
                            "size": 2,
                            "opacity": 0.9
                        },
                        "textfont": {},
                        "boxpoints": "all",
                        "fillcolor": "rgb(255, 255, 255)"
                    },
                    {
                        "line": {
                            "width": 1
                        },
                        "meta": {
                            "columnNames": {
                                "y": "Carlos Boozer"
                            }
                        },
                        "name": "Carlos Boozer",
                        "type": "box",
                        "ysrc": "njjacob:0:e40b5b",
                        "jitter": 0.4,
                        "marker": {
                            "line": {
                                "width": 0
                            },
                            "size": 2,
                            "opacity": 0.9
                        },
                        "textfont": {},
                        "boxpoints": "all",
                        "fillcolor": "rgb(255, 255, 255)"
                    },
                    {
                        "line": {
                            "width": 1
                        },
                        "meta": {
                            "columnNames": {
                                "y": "Luol Deng"
                            }
                        },
                        "name": "Luol Deng",
                        "type": "box",
                        "ysrc": "njjacob:0:2d3482",
                        "jitter": 0.4,
                        "marker": {
                            "line": {
                                "width": 0
                            },
                            "size": 2,
                            "opacity": 0.9
                        },
                        "textfont": {},
                        "boxpoints": "all",
                        "fillcolor": "rgb(255, 255, 255)"
                    },
                    {
                        "line": {
                            "width": 1
                        },
                        "meta": {
                            "columnNames": {
                                "y": "Glen Davis"
                            }
                        },
                        "name": "Glen Davis",
                        "type": "box",
                        "ysrc": "njjacob:0:cebac9",
                        "jitter": 0.4,
                        "marker": {
                            "line": {
                                "width": 0
                            },
                            "size": 2,
                            "opacity": 0.9
                        },
                        "textfont": {},
                        "boxpoints": "all",
                        "fillcolor": "rgb(255, 255, 255)"
                    },
                    {
                        "line": {
                            "width": 1
                        },
                        "meta": {
                            "columnNames": {
                                "y": "Gerald Henderson"
                            }
                        },
                        "name": "Gerald Henderson",
                        "type": "box",
                        "ysrc": "njjacob:0:42e9a7",
                        "jitter": 0.4,
                        "marker": {
                            "line": {
                                "width": 0
                            },
                            "size": 2,
                            "opacity": 0.9
                        },
                        "textfont": {},
                        "boxpoints": "all",
                        "fillcolor": "rgb(255, 255, 255)"
                    }
                ],
                "frames": [],
                "layout": {
                    "font": {
                        "size": 12,
                        "color": "#000",
                        "family": "Arial, sans-serif"
                    },
                    "title": {
                        "font": {
                            "size": 0,
                            "color": "",
                            "family": ""
                        },
                        "text": "Points Scored by the Top 50 Scoring NBA Players in 2012<BR><BR>Each point is a game"
                    },
                    "width": 1100,
                    "xaxis": {
                        "type": "category",
                        "unit": "",
                        "dtick": 1,
                        "range": [
                            -1.4486434447681589,
                            50.354030240448004
                        ],
                        "tick0": 0,
                        "ticks": "",
                        "title": {
                            "font": {
                                "size": 0,
                                "color": "",
                                "family": ""
                            },
                            "text": ""
                        },
                        "mirror": true,
                        "nticks": 0,
                        "ticklen": 5,
                        "showgrid": false,
                        "tickfont": {
                            "size": 12,
                            "color": "",
                            "family": ""
                        },
                        "tickmode": "auto",
                        "zeroline": false,
                        "autorange": false,
                        "gridcolor": "#ddd",
                        "gridwidth": 1,
                        "linecolor": "rgb(255, 255, 255)",
                        "linewidth": 0.1,
                        "tickangle": 90,
                        "tickcolor": "#000",
                        "tickwidth": 1,
                        "showexponent": "all",
                        "zerolinecolor": "#000",
                        "zerolinewidth": 1,
                        "exponentformat": "e",
                        "showticklabels": true
                    },
                    "yaxis": {
                        "type": "linear",
                        "unit": "",
                        "dtick": 10,
                        "range": [
                            -1.0000000000000004,
                            55
                        ],
                        "tick0": 0,
                        "ticks": "",
                        "title": {
                            "font": {
                                "size": 0,
                                "color": "",
                                "family": ""
                            },
                            "text": "Points"
                        },
                        "mirror": true,
                        "nticks": 0,
                        "ticklen": 5,
                        "showgrid": false,
                        "tickfont": {
                            "size": 0,
                            "color": "",
                            "family": ""
                        },
                        "tickmode": "auto",
                        "zeroline": false,
                        "autorange": false,
                        "gridcolor": "white",
                        "gridwidth": 1,
                        "linecolor": "rgb(255, 255, 255)",
                        "linewidth": 0.1,
                        "tickangle": "auto",
                        "tickcolor": "#000",
                        "tickwidth": 1,
                        "showexponent": "all",
                        "zerolinecolor": "#000",
                        "zerolinewidth": 1,
                        "exponentformat": "e",
                        "showticklabels": true
                    },
                    "bargap": 0.2,
                    "boxgap": 0.2,
                    "height": 450,
                    "legend": {
                        "font": {
                            "size": 0,
                            "color": "",
                            "family": ""
                        },
                        "bgcolor": "#fff",
                        "traceorder": "normal",
                        "bordercolor": "#000",
                        "borderwidth": 1
                    },
                    "margin": {
                        "b": 140,
                        "l": 80,
                        "r": 80,
                        "t": 80,
                        "pad": 2
                    },
                    "barmode": "stack",
                    "boxmode": "overlay",
                    "autosize": false,
                    "dragmode": "zoom",
                    "hovermode": "x",
                    "showlegend": false,
                    "annotations": [],
                    "bargroupgap": 0,
                    "boxgroupgap": 0.3,
                    "plot_bgcolor": "rgb(255, 255, 255)",
                    "paper_bgcolor": "rgb(255, 255, 255)"
                }
            },
            "height": 450,
            "width": 1100,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~njjacob",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/16.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-3.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2025-07-03 06:27:28",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "njjacob",
                "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": "2025-07-03T06:08:53.388665Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~P76124354/2.embed",
            "fid": "P76124354:2",
            "filename": "Plot 2",
            "filetype": "plot",
            "img_url": "https://api.plotly.com/v2/files/P76124354:2/image?image_name=list-thumb",
            "image_urls": {
                "default": "https://api.plotly.com/v2/files/P76124354:2/image?image_name=default",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/P76124354/2/8_W0UO8CO4TCHEMSVLRGLWUJ6740IE31.png",
                "list-thumb": "https://api.plotly.com/v2/files/P76124354:2/image?image_name=list-thumb"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/P76124354:2",
                "plots": "https://api.plotly.com/v2/plots/P76124354:2",
                "parent": "https://api.plotly.com/v2/folders/home?user=P76124354"
            },
            "owner": "P76124354",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 0,
            "web_url": "https://chart-studio.plotly.com/~P76124354/2/",
            "world_readable": true,
            "date_modified": "2025-07-04T07:40:54.570Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~P76124354/2/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": false,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "meta": {
                            "columnNames": {
                                "x": "Analysis - Method",
                                "y": "score",
                                "z": "score",
                                "marker": {
                                    "color": "D"
                                }
                            }
                        },
                        "mode": "lines",
                        "type": "bar",
                        "xsrc": "P76124354:1:5608b5,ad7c40*",
                        "ysrc": "P76124354:1:9d614d",
                        "zsrc": "P76124354:1:9d614d",
                        "marker": {
                            "line": {
                                "width": 0
                            },
                            "meta": {
                                "columnNames": {
                                    "color": "D"
                                }
                            },
                            "cauto": true,
                            "opacity": 1,
                            "colorsrc": "P76124354:1:737986",
                            "showscale": false,
                            "colorscale": [
                                [
                                    0,
                                    "#0508b8"
                                ],
                                [
                                    0.08333333333333333,
                                    "#1910d8"
                                ],
                                [
                                    0.16666666666666666,
                                    "#3c19f0"
                                ],
                                [
                                    0.25,
                                    "#6b1cfb"
                                ],
                                [
                                    0.3333333333333333,
                                    "#981cfd"
                                ],
                                [
                                    0.4166666666666667,
                                    "#bf1cfd"
                                ],
                                [
                                    0.5,
                                    "#dd2bfd"
                                ],
                                [
                                    0.5833333333333334,
                                    "#f246fe"
                                ],
                                [
                                    0.6666666666666666,
                                    "#fc67fd"
                                ],
                                [
                                    0.75,
                                    "#fe88fc"
                                ],
                                [
                                    0.8333333333333334,
                                    "#fea5fd"
                                ],
                                [
                                    0.9166666666666666,
                                    "#febefe"
                                ],
                                [
                                    1,
                                    "#fec3fe"
                                ]
                            ]
                        },
                        "boxpoints": false,
                        "orientation": "v",
                        "autocolorscale": false
                    }
                ],
                "frames": [],
                "layout": {
                    "font": {
                        "size": 19
                    },
                    "scene": {
                        "aspectmode": "auto",
                        "aspectratio": {
                            "x": 1,
                            "y": 1,
                            "z": 1
                        }
                    },
                    "title": {
                        "text": ""
                    },
                    "xaxis": {
                        "type": "multicategory",
                        "range": [
                            -0.5,
                            23.5
                        ],
                        "title": {
                            "text": "Analysis methods"
                        },
                        "autorange": true
                    },
                    "yaxis": {
                        "type": "linear",
                        "range": [
                            0,
                            0.7185263157894737
                        ],
                        "title": {
                            "text": "Score"
                        },
                        "autorange": true
                    },
                    "autosize": true,
                    "template": {
                        "data": {
                            "bar": [
                                {
                                    "type": "bar",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "table": [
                                {
                                    "type": "table",
                                    "cells": {
                                        "fill": {
                                            "color": "#EBF0F8"
                                        },
                                        "line": {
                                            "color": "white"
                                        }
                                    },
                                    "header": {
                                        "fill": {
                                            "color": "#C8D4E3"
                                        },
                                        "line": {
                                            "color": "white"
                                        }
                                    }
                                }
                            ],
                            "carpet": [
                                {
                                    "type": "carpet",
                                    "aaxis": {
                                        "gridcolor": "#C8D4E3",
                                        "linecolor": "#C8D4E3",
                                        "endlinecolor": "#2a3f5f",
                                        "minorgridcolor": "#C8D4E3",
                                        "startlinecolor": "#2a3f5f"
                                    },
                                    "baxis": {
                                        "gridcolor": "#C8D4E3",
                                        "linecolor": "#C8D4E3",
                                        "endlinecolor": "#2a3f5f",
                                        "minorgridcolor": "#C8D4E3",
                                        "startlinecolor": "#2a3f5f"
                                    }
                                }
                            ],
                            "mesh3d": [
                                {
                                    "type": "mesh3d",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "contour": [
                                {
                                    "type": "contour",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ],
                            "heatmap": [
                                {
                                    "type": "heatmap",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ],
                            "scatter": [
                                {
                                    "type": "scatter",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "surface": [
                                {
                                    "type": "surface",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "heatmapgl": [
                                {
                                    "type": "heatmapgl",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "histogram": [
                                {
                                    "type": "histogram",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "parcoords": [
                                {
                                    "line": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    },
                                    "type": "parcoords"
                                }
                            ],
                            "scatter3d": [
                                {
                                    "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
                                    },
                                    "autocolorscale": true
                                }
                            ],
                            "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
                                    },
                                    "autocolorscale": true
                                }
                            ]
                        },
                        "layout": {
                            "geo": {
                                "bgcolor": "white",
                                "showland": true,
                                "lakecolor": "white",
                                "landcolor": "white",
                                "showlakes": true,
                                "subunitcolor": "#C8D4E3"
                            },
                            "font": {
                                "color": "#2a3f5f"
                            },
                            "polar": {
                                "bgcolor": "white",
                                "radialaxis": {
                                    "ticks": "",
                                    "gridcolor": "#EBF0F8",
                                    "linecolor": "#EBF0F8"
                                },
                                "angularaxis": {
                                    "ticks": "",
                                    "gridcolor": "#EBF0F8",
                                    "linecolor": "#EBF0F8"
                                }
                            },
                            "scene": {
                                "xaxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "gridwidth": 2,
                                    "linecolor": "#EBF0F8",
                                    "zerolinecolor": "#EBF0F8",
                                    "showbackground": true,
                                    "backgroundcolor": "white"
                                },
                                "yaxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "gridwidth": 2,
                                    "linecolor": "#EBF0F8",
                                    "zerolinecolor": "#EBF0F8",
                                    "showbackground": true,
                                    "backgroundcolor": "white"
                                },
                                "zaxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "gridwidth": 2,
                                    "linecolor": "#EBF0F8",
                                    "zerolinecolor": "#EBF0F8",
                                    "showbackground": true,
                                    "backgroundcolor": "white"
                                }
                            },
                            "title": {
                                "x": 0.05
                            },
                            "xaxis": {
                                "ticks": "",
                                "gridcolor": "#EBF0F8",
                                "linecolor": "#EBF0F8",
                                "automargin": true,
                                "zerolinecolor": "#EBF0F8",
                                "zerolinewidth": 2
                            },
                            "yaxis": {
                                "ticks": "",
                                "gridcolor": "#EBF0F8",
                                "linecolor": "#EBF0F8",
                                "automargin": true,
                                "zerolinecolor": "#EBF0F8",
                                "zerolinewidth": 2
                            },
                            "ternary": {
                                "aaxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "linecolor": "#A2B1C6"
                                },
                                "baxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "linecolor": "#A2B1C6"
                                },
                                "caxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "linecolor": "#A2B1C6"
                                },
                                "bgcolor": "white"
                            },
                            "colorway": [
                                "#636efa",
                                "#EF553B",
                                "#00cc96",
                                "#ab63fa",
                                "#19d3f3",
                                "#e763fa",
                                "#fecb52",
                                "#ffa15a",
                                "#ff6692",
                                "#b6e880"
                            ],
                            "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,
                                        "#0508b8"
                                    ],
                                    [
                                        0.0893854748603352,
                                        "#1910d8"
                                    ],
                                    [
                                        0.1787709497206704,
                                        "#3c19f0"
                                    ],
                                    [
                                        0.2681564245810056,
                                        "#6b1cfb"
                                    ],
                                    [
                                        0.3575418994413408,
                                        "#981cfd"
                                    ],
                                    [
                                        0.44692737430167595,
                                        "#bf1cfd"
                                    ],
                                    [
                                        0.5363128491620112,
                                        "#dd2bfd"
                                    ],
                                    [
                                        0.6256983240223464,
                                        "#f246fe"
                                    ],
                                    [
                                        0.7150837988826816,
                                        "#fc67fd"
                                    ],
                                    [
                                        0.8044692737430168,
                                        "#fe88fc"
                                    ],
                                    [
                                        0.8938547486033519,
                                        "#fea5fd"
                                    ],
                                    [
                                        0.9832402234636871,
                                        "#febefe"
                                    ],
                                    [
                                        1,
                                        "#fec3fe"
                                    ]
                                ],
                                "sequentialminus": [
                                    [
                                        0,
                                        "#0508b8"
                                    ],
                                    [
                                        0.0893854748603352,
                                        "#1910d8"
                                    ],
                                    [
                                        0.1787709497206704,
                                        "#3c19f0"
                                    ],
                                    [
                                        0.2681564245810056,
                                        "#6b1cfb"
                                    ],
                                    [
                                        0.3575418994413408,
                                        "#981cfd"
                                    ],
                                    [
                                        0.44692737430167595,
                                        "#bf1cfd"
                                    ],
                                    [
                                        0.5363128491620112,
                                        "#dd2bfd"
                                    ],
                                    [
                                        0.6256983240223464,
                                        "#f246fe"
                                    ],
                                    [
                                        0.7150837988826816,
                                        "#fc67fd"
                                    ],
                                    [
                                        0.8044692737430168,
                                        "#fe88fc"
                                    ],
                                    [
                                        0.8938547486033519,
                                        "#fea5fd"
                                    ],
                                    [
                                        0.9832402234636871,
                                        "#febefe"
                                    ],
                                    [
                                        1,
                                        "#fec3fe"
                                    ]
                                ]
                            },
                            "plot_bgcolor": "white",
                            "paper_bgcolor": "white",
                            "shapedefaults": {
                                "line": {
                                    "width": 0
                                },
                                "opacity": 0.4,
                                "fillcolor": "#506784"
                            },
                            "annotationdefaults": {
                                "arrowhead": 0,
                                "arrowcolor": "#506784",
                                "arrowwidth": 1
                            }
                        },
                        "themeRef": "PLOTLY_WHITE"
                    }
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~P76124354",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/81.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": "2025-07-03 04:58:19",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "P76124354",
                "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": "2025-07-03T06:05:25.607252Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~kmtainsh/1.embed",
            "fid": "kmtainsh:1",
            "filename": "daisy",
            "filetype": "plot",
            "img_url": "https://api.plotly.com/v2/files/kmtainsh:1/image?image_name=list-thumb",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/kmtainsh/1/2_DLT1DGDYN0J0DZ77EL8IXYYP4M86NE.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/kmtainsh/1/8_4FW12DZ1CPG6MVIA7ASUYV1SKAVC86.png",
                "list-thumb": "https://api.plotly.com/v2/files/kmtainsh:1/image?image_name=list-thumb"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/kmtainsh:1",
                "plots": "https://api.plotly.com/v2/plots/kmtainsh:1",
                "parent": "https://api.plotly.com/v2/folders/home?user=kmtainsh"
            },
            "owner": "kmtainsh",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 0,
            "web_url": "https://chart-studio.plotly.com/~kmtainsh/1/",
            "world_readable": true,
            "date_modified": "2025-07-03T06:05:25.616Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~kmtainsh/1/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": false,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "meta": {
                            "columnNames": {
                                "x": "A",
                                "y": "B"
                            }
                        },
                        "mode": "markers",
                        "type": "bar",
                        "xsrc": "kmtainsh:0:2eabbc",
                        "ysrc": "kmtainsh:0:8ed647",
                        "orientation": "v",
                        "selectedpoints": [
                            1,
                            2,
                            3,
                            4,
                            5,
                            6,
                            7,
                            8,
                            9,
                            10,
                            11,
                            12,
                            13,
                            14,
                            15,
                            16,
                            17,
                            18,
                            19,
                            20,
                            21,
                            22,
                            23,
                            24,
                            25,
                            26,
                            27,
                            28,
                            29,
                            30,
                            31,
                            32,
                            33,
                            34,
                            35,
                            36,
                            37,
                            38,
                            39,
                            40,
                            41,
                            42,
                            43,
                            44,
                            45,
                            46,
                            48,
                            49,
                            50,
                            51,
                            52,
                            53,
                            54,
                            55,
                            56,
                            58,
                            59,
                            60,
                            61,
                            62,
                            63,
                            64,
                            65,
                            66,
                            67,
                            68,
                            69,
                            70,
                            71
                        ]
                    }
                ],
                "frames": [],
                "layout": {
                    "xaxis": {
                        "type": "category",
                        "range": [
                            -2.2274330843190917,
                            71.35216572504709
                        ],
                        "autorange": false,
                        "showspikes": false
                    },
                    "yaxis": {
                        "type": "linear",
                        "range": [
                            -0.08585858585858563,
                            6.805555401426376
                        ],
                        "autorange": false,
                        "showspikes": false
                    },
                    "autosize": true,
                    "dragmode": "select",
                    "template": {
                        "data": {
                            "bar": [
                                {
                                    "type": "bar",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "table": [
                                {
                                    "type": "table",
                                    "cells": {
                                        "fill": {
                                            "color": "#EBF0F8"
                                        },
                                        "line": {
                                            "color": "white"
                                        }
                                    },
                                    "header": {
                                        "fill": {
                                            "color": "#C8D4E3"
                                        },
                                        "line": {
                                            "color": "white"
                                        }
                                    }
                                }
                            ],
                            "carpet": [
                                {
                                    "type": "carpet",
                                    "aaxis": {
                                        "gridcolor": "#C8D4E3",
                                        "linecolor": "#C8D4E3",
                                        "endlinecolor": "#2a3f5f",
                                        "minorgridcolor": "#C8D4E3",
                                        "startlinecolor": "#2a3f5f"
                                    },
                                    "baxis": {
                                        "gridcolor": "#C8D4E3",
                                        "linecolor": "#C8D4E3",
                                        "endlinecolor": "#2a3f5f",
                                        "minorgridcolor": "#C8D4E3",
                                        "startlinecolor": "#2a3f5f"
                                    }
                                }
                            ],
                            "mesh3d": [
                                {
                                    "type": "mesh3d",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "contour": [
                                {
                                    "type": "contour",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ],
                            "heatmap": [
                                {
                                    "type": "heatmap",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ],
                            "scatter": [
                                {
                                    "type": "scatter",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "surface": [
                                {
                                    "type": "surface",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "heatmapgl": [
                                {
                                    "type": "heatmapgl",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "histogram": [
                                {
                                    "type": "histogram",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "parcoords": [
                                {
                                    "line": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    },
                                    "type": "parcoords"
                                }
                            ],
                            "scatter3d": [
                                {
                                    "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
                                    },
                                    "autocolorscale": true
                                }
                            ],
                            "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
                                    },
                                    "autocolorscale": true
                                }
                            ]
                        },
                        "layout": {
                            "geo": {
                                "bgcolor": "white",
                                "showland": true,
                                "lakecolor": "white",
                                "landcolor": "white",
                                "showlakes": true,
                                "subunitcolor": "#C8D4E3"
                            },
                            "font": {
                                "color": "#2a3f5f"
                            },
                            "polar": {
                                "bgcolor": "white",
                                "radialaxis": {
                                    "ticks": "",
                                    "gridcolor": "#EBF0F8",
                                    "linecolor": "#EBF0F8"
                                },
                                "angularaxis": {
                                    "ticks": "",
                                    "gridcolor": "#EBF0F8",
                                    "linecolor": "#EBF0F8"
                                }
                            },
                            "scene": {
                                "xaxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "gridwidth": 2,
                                    "linecolor": "#EBF0F8",
                                    "zerolinecolor": "#EBF0F8",
                                    "showbackground": true,
                                    "backgroundcolor": "white"
                                },
                                "yaxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "gridwidth": 2,
                                    "linecolor": "#EBF0F8",
                                    "zerolinecolor": "#EBF0F8",
                                    "showbackground": true,
                                    "backgroundcolor": "white"
                                },
                                "zaxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "gridwidth": 2,
                                    "linecolor": "#EBF0F8",
                                    "zerolinecolor": "#EBF0F8",
                                    "showbackground": true,
                                    "backgroundcolor": "white"
                                }
                            },
                            "title": {
                                "x": 0.05
                            },
                            "xaxis": {
                                "ticks": "",
                                "gridcolor": "#EBF0F8",
                                "linecolor": "#EBF0F8",
                                "automargin": true,
                                "zerolinecolor": "#EBF0F8",
                                "zerolinewidth": 2
                            },
                            "yaxis": {
                                "ticks": "",
                                "gridcolor": "#EBF0F8",
                                "linecolor": "#EBF0F8",
                                "automargin": true,
                                "zerolinecolor": "#EBF0F8",
                                "zerolinewidth": 2
                            },
                            "ternary": {
                                "aaxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "linecolor": "#A2B1C6"
                                },
                                "baxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "linecolor": "#A2B1C6"
                                },
                                "caxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "linecolor": "#A2B1C6"
                                },
                                "bgcolor": "white"
                            },
                            "colorway": [
                                "#636efa",
                                "#EF553B",
                                "#00cc96",
                                "#ab63fa",
                                "#19d3f3",
                                "#e763fa",
                                "#fecb52",
                                "#ffa15a",
                                "#ff6692",
                                "#b6e880"
                            ],
                            "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,
                                        "#0508b8"
                                    ],
                                    [
                                        0.0893854748603352,
                                        "#1910d8"
                                    ],
                                    [
                                        0.1787709497206704,
                                        "#3c19f0"
                                    ],
                                    [
                                        0.2681564245810056,
                                        "#6b1cfb"
                                    ],
                                    [
                                        0.3575418994413408,
                                        "#981cfd"
                                    ],
                                    [
                                        0.44692737430167595,
                                        "#bf1cfd"
                                    ],
                                    [
                                        0.5363128491620112,
                                        "#dd2bfd"
                                    ],
                                    [
                                        0.6256983240223464,
                                        "#f246fe"
                                    ],
                                    [
                                        0.7150837988826816,
                                        "#fc67fd"
                                    ],
                                    [
                                        0.8044692737430168,
                                        "#fe88fc"
                                    ],
                                    [
                                        0.8938547486033519,
                                        "#fea5fd"
                                    ],
                                    [
                                        0.9832402234636871,
                                        "#febefe"
                                    ],
                                    [
                                        1,
                                        "#fec3fe"
                                    ]
                                ],
                                "sequentialminus": [
                                    [
                                        0,
                                        "#0508b8"
                                    ],
                                    [
                                        0.0893854748603352,
                                        "#1910d8"
                                    ],
                                    [
                                        0.1787709497206704,
                                        "#3c19f0"
                                    ],
                                    [
                                        0.2681564245810056,
                                        "#6b1cfb"
                                    ],
                                    [
                                        0.3575418994413408,
                                        "#981cfd"
                                    ],
                                    [
                                        0.44692737430167595,
                                        "#bf1cfd"
                                    ],
                                    [
                                        0.5363128491620112,
                                        "#dd2bfd"
                                    ],
                                    [
                                        0.6256983240223464,
                                        "#f246fe"
                                    ],
                                    [
                                        0.7150837988826816,
                                        "#fc67fd"
                                    ],
                                    [
                                        0.8044692737430168,
                                        "#fe88fc"
                                    ],
                                    [
                                        0.8938547486033519,
                                        "#fea5fd"
                                    ],
                                    [
                                        0.9832402234636871,
                                        "#febefe"
                                    ],
                                    [
                                        1,
                                        "#fec3fe"
                                    ]
                                ]
                            },
                            "plot_bgcolor": "white",
                            "paper_bgcolor": "white",
                            "shapedefaults": {
                                "line": {
                                    "width": 0
                                },
                                "opacity": 0.4,
                                "fillcolor": "#506784"
                            },
                            "annotationdefaults": {
                                "arrowhead": 0,
                                "arrowcolor": "#506784",
                                "arrowwidth": 1
                            }
                        },
                        "themeRef": "PLOTLY_WHITE"
                    },
                    "hovermode": "closest"
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~kmtainsh",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/94.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": "2025-07-03 05:56:25",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "kmtainsh",
                "email": null,
                "is_active": null,
                "readonly": null,
                "is_dash_creator": null,
                "dash_created_count": null,
                "is_chart_creator": null,
                "charts_created_count": null
            }
        }
    ]
}