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=cD0yMDI0LTA0LTIzKzE2JTNBMzQlM0ExMy43MzMyOTAlMkIwMCUzQTAw&format=api
HTTP 200 OK
Allow: GET, POST, HEAD, OPTIONS
Content-Type: application/json
Vary: Accept

{
    "next": "https://api.plot.ly/v2/plots/?cursor=cD0yMDI0LTA0LTIzKzE2JTNBMTElM0EyNi4zOTQ2NDIlMkIwMCUzQTAw&format=api",
    "previous": "https://api.plot.ly/v2/plots/?cursor=cj0xJnA9MjAyNC0wNC0yMysxNiUzQTM0JTNBMTAuMTA4NjM1JTJCMDAlM0EwMA%3D%3D&format=api",
    "results": [
        {
            "creation_time": "2024-04-23T16:34:10.108635Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~isamm25/1.embed",
            "fid": "isamm25:1",
            "filename": "igPlotly1",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/isamm25/1/9_44851181JUK4I70EUFCQ4FBAO340GS.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/isamm25/1/2_M6HHKQNWBM211YNW3RKPJB15HOP7BP.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/isamm25/1/8_F7X7XCJTRWYO6IU1CTXN0YH71N1WII.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/isamm25/1/9_44851181JUK4I70EUFCQ4FBAO340GS.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/isamm25:1",
                "plots": "https://api.plotly.com/v2/plots/isamm25:1",
                "parent": "https://api.plotly.com/v2/folders/home?user=isamm25"
            },
            "owner": "isamm25",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 1,
            "web_url": "https://chart-studio.plotly.com/~isamm25/1/",
            "world_readable": true,
            "date_modified": "2024-04-23T16:34:10.117Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~isamm25/1/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "type": "bar",
                        "xsrc": "isamm25:0:f28f47",
                        "ysrc": "isamm25:0:516f6a",
                        "frame": null,
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "line": {
                                "color": "transparent",
                                "width": 1.8897637795275593
                            },
                            "color": "rgba(255,0,255,1)",
                            "autocolorscale": false
                        },
                        "basesrc": "isamm25:0:b3cd14",
                        "textsrc": "isamm25:0:7812c9",
                        "widthsrc": "isamm25:0:3150dd",
                        "hoverinfo": "text",
                        "showlegend": false,
                        "orientation": "v",
                        "textposition": "none"
                    }
                ],
                "layout": {
                    "font": {
                        "size": 14.611872146118724,
                        "color": "rgba(0,0,0,1)",
                        "family": ""
                    },
                    "xaxis": {
                        "type": "linear",
                        "range": [
                            -77.60000000000001,
                            1629.6
                        ],
                        "ticks": "outside",
                        "title": {
                            "font": {
                                "size": 14.611872146118724,
                                "color": "rgba(0,0,0,1)",
                                "family": ""
                            },
                            "text": ""
                        },
                        "anchor": "y",
                        "domain": [
                            0,
                            1
                        ],
                        "nticks": null,
                        "ticklen": 3.652968036529681,
                        "showgrid": true,
                        "showline": false,
                        "tickfont": {
                            "size": 11.68949771689498,
                            "color": "rgba(77,77,77,1)",
                            "family": ""
                        },
                        "tickmode": "array",
                        "ticktext": [
                            "0",
                            "500",
                            "1000",
                            "1500"
                        ],
                        "tickvals": [
                            0,
                            500,
                            999.9999999999999,
                            1500
                        ],
                        "zeroline": false,
                        "autorange": false,
                        "gridcolor": "rgba(255,255,255,1)",
                        "gridwidth": 0.66417600664176,
                        "linecolor": null,
                        "linewidth": 0,
                        "tickangle": 0,
                        "tickcolor": "rgba(51,51,51,1)",
                        "tickwidth": 0.66417600664176,
                        "automargin": true,
                        "hoverformat": ".2f",
                        "categoryarray": [
                            "0",
                            "500",
                            "1000",
                            "1500"
                        ],
                        "categoryorder": "array",
                        "showticklabels": true
                    },
                    "yaxis": {
                        "type": "linear",
                        "range": [
                            0.4,
                            10.6
                        ],
                        "ticks": "outside",
                        "title": {
                            "font": {
                                "size": 14.611872146118724,
                                "color": "rgba(0,0,0,1)",
                                "family": ""
                            },
                            "text": ""
                        },
                        "anchor": "x",
                        "domain": [
                            0,
                            1
                        ],
                        "nticks": null,
                        "ticklen": 3.652968036529681,
                        "showgrid": true,
                        "showline": false,
                        "tickfont": {
                            "size": 11.689497716894984,
                            "color": "rgba(77,77,77,1)",
                            "family": ""
                        },
                        "tickmode": "array",
                        "ticktext": [
                            "nuevoleon",
                            "vivemexico",
                            "sculturanl",
                            "nuevoleonextraordinario",
                            "cultural",
                            "cultura",
                            "monterrey",
                            "león",
                            "vivenuevoleon",
                            "culturanl"
                        ],
                        "tickvals": [
                            1,
                            2,
                            3,
                            4,
                            5,
                            6.000000000000001,
                            7,
                            8,
                            9,
                            10
                        ],
                        "zeroline": false,
                        "autorange": false,
                        "gridcolor": "rgba(255,255,255,1)",
                        "gridwidth": 0.66417600664176,
                        "linecolor": null,
                        "linewidth": 0,
                        "tickangle": 0,
                        "tickcolor": "rgba(51,51,51,1)",
                        "tickwidth": 0.66417600664176,
                        "automargin": true,
                        "hoverformat": ".2f",
                        "categoryarray": [
                            "nuevoleon",
                            "vivemexico",
                            "sculturanl",
                            "nuevoleonextraordinario",
                            "cultural",
                            "cultura",
                            "monterrey",
                            "león",
                            "vivenuevoleon",
                            "culturanl"
                        ],
                        "categoryorder": "array",
                        "showticklabels": true
                    },
                    "legend": {
                        "font": {
                            "size": 11.68949771689498,
                            "color": "rgba(0,0,0,1)",
                            "family": ""
                        },
                        "bgcolor": "rgba(255,255,255,1)",
                        "bordercolor": "transparent",
                        "borderwidth": 1.8897637795275593
                    },
                    "margin": {
                        "b": 39.56741167988466,
                        "l": 145.38812785388134,
                        "r": 7.305936073059362,
                        "t": 40.224945926459995
                    },
                    "shapes": [
                        {
                            "x0": 0,
                            "x1": 1,
                            "y0": 0,
                            "y1": 1,
                            "line": {
                                "color": null,
                                "width": 0,
                                "linetype": []
                            },
                            "type": "rect",
                            "xref": "paper",
                            "yref": "paper",
                            "fillcolor": null
                        }
                    ],
                    "barmode": "relative",
                    "hovermode": "closest",
                    "showlegend": false,
                    "plot_bgcolor": "rgba(235,235,235,1)",
                    "paper_bgcolor": "rgba(255,255,255,1)"
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~isamm25",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/49.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": "2024-04-23 15:50:58",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "isamm25",
                "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": "2024-04-23T16:34:08.463754Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~jeonyl1009/3.embed",
            "fid": "jeonyl1009:3",
            "filename": "two_features_svr_model_plot",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/jeonyl1009/3/9_MVKQ80PGSMQ1PUZATTI1ZSKW5YIEHX.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/jeonyl1009/3/2_2KPY9JLJWUO64DMOB8CHHXP2QWVDLI.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/jeonyl1009/3/8_1DRCIJ4A5YU4WHOUXMV8O8BFKT3F17.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/jeonyl1009/3/9_MVKQ80PGSMQ1PUZATTI1ZSKW5YIEHX.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/jeonyl1009:3",
                "plots": "https://api.plotly.com/v2/plots/jeonyl1009:3",
                "parent": "https://api.plotly.com/v2/folders/home?user=jeonyl1009"
            },
            "owner": "jeonyl1009",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 2,
            "web_url": "https://chart-studio.plotly.com/~jeonyl1009/3/",
            "world_readable": true,
            "date_modified": "2024-04-23T16:53:58.028Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~jeonyl1009/3/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "type": "surface",
                        "xsrc": "jeonyl1009:10:f94eb5",
                        "ysrc": "jeonyl1009:10:13c73a",
                        "zsrc": "jeonyl1009:10:2ffe06",
                        "scene": "scene",
                        "opacity": 0.8,
                        "showscale": false,
                        "colorscale": [
                            [
                                0.0,
                                "rgb(255,255,204)"
                            ],
                            [
                                0.125,
                                "rgb(255,237,160)"
                            ],
                            [
                                0.25,
                                "rgb(254,217,118)"
                            ],
                            [
                                0.375,
                                "rgb(254,178,76)"
                            ],
                            [
                                0.5,
                                "rgb(253,141,60)"
                            ],
                            [
                                0.625,
                                "rgb(252,78,42)"
                            ],
                            [
                                0.75,
                                "rgb(227,26,28)"
                            ],
                            [
                                0.875,
                                "rgb(189,0,38)"
                            ],
                            [
                                1.0,
                                "rgb(128,0,38)"
                            ]
                        ]
                    },
                    {
                        "mode": "markers",
                        "type": "scatter3d",
                        "xsrc": "jeonyl1009:10:a6bb7d",
                        "ysrc": "jeonyl1009:10:473f80",
                        "zsrc": "jeonyl1009:10:810806",
                        "scene": "scene",
                        "marker": {
                            "size": 2,
                            "color": "blue"
                        }
                    }
                ],
                "layout": {
                    "scene": {
                        "xaxis": {
                            "title": {
                                "text": "X1"
                            }
                        },
                        "yaxis": {
                            "title": {
                                "text": "X2"
                            }
                        },
                        "zaxis": {
                            "title": {
                                "text": "Predicted Y"
                            }
                        },
                        "domain": {
                            "x": [
                                0.0,
                                1.0
                            ],
                            "y": [
                                0.0,
                                1.0
                            ]
                        }
                    },
                    "title": {
                        "text": "Support Vector Regression"
                    },
                    "template": {
                        "data": {
                            "bar": [
                                {
                                    "type": "bar",
                                    "marker": {
                                        "line": {
                                            "color": "white",
                                            "width": 0.5
                                        },
                                        "pattern": {
                                            "size": 10,
                                            "fillmode": "overlay",
                                            "solidity": 0.2
                                        }
                                    },
                                    "error_x": {
                                        "color": "rgb(36,36,36)"
                                    },
                                    "error_y": {
                                        "color": "rgb(36,36,36)"
                                    }
                                }
                            ],
                            "pie": [
                                {
                                    "type": "pie",
                                    "automargin": true
                                }
                            ],
                            "table": [
                                {
                                    "type": "table",
                                    "cells": {
                                        "fill": {
                                            "color": "rgb(237,237,237)"
                                        },
                                        "line": {
                                            "color": "white"
                                        }
                                    },
                                    "header": {
                                        "fill": {
                                            "color": "rgb(217,217,217)"
                                        },
                                        "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",
                                        "tickcolor": "rgb(36,36,36)",
                                        "outlinewidth": 1
                                    }
                                }
                            ],
                            "contour": [
                                {
                                    "type": "contour",
                                    "colorbar": {
                                        "ticks": "outside",
                                        "tickcolor": "rgb(36,36,36)",
                                        "outlinewidth": 1
                                    },
                                    "colorscale": [
                                        [
                                            0.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.0,
                                            "#fde725"
                                        ]
                                    ]
                                }
                            ],
                            "heatmap": [
                                {
                                    "type": "heatmap",
                                    "colorbar": {
                                        "ticks": "outside",
                                        "tickcolor": "rgb(36,36,36)",
                                        "outlinewidth": 1
                                    },
                                    "colorscale": [
                                        [
                                            0.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.0,
                                            "#fde725"
                                        ]
                                    ]
                                }
                            ],
                            "scatter": [
                                {
                                    "type": "scatter",
                                    "fillpattern": {
                                        "size": 10,
                                        "fillmode": "overlay",
                                        "solidity": 0.2
                                    }
                                }
                            ],
                            "surface": [
                                {
                                    "type": "surface",
                                    "colorbar": {
                                        "ticks": "outside",
                                        "tickcolor": "rgb(36,36,36)",
                                        "outlinewidth": 1
                                    },
                                    "colorscale": [
                                        [
                                            0.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.0,
                                            "#fde725"
                                        ]
                                    ]
                                }
                            ],
                            "barpolar": [
                                {
                                    "type": "barpolar",
                                    "marker": {
                                        "line": {
                                            "color": "white",
                                            "width": 0.5
                                        },
                                        "pattern": {
                                            "size": 10,
                                            "fillmode": "overlay",
                                            "solidity": 0.2
                                        }
                                    }
                                }
                            ],
                            "heatmapgl": [
                                {
                                    "type": "heatmapgl",
                                    "colorbar": {
                                        "ticks": "outside",
                                        "tickcolor": "rgb(36,36,36)",
                                        "outlinewidth": 1
                                    },
                                    "colorscale": [
                                        [
                                            0.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.0,
                                            "#fde725"
                                        ]
                                    ]
                                }
                            ],
                            "histogram": [
                                {
                                    "type": "histogram",
                                    "marker": {
                                        "line": {
                                            "color": "white",
                                            "width": 0.6
                                        }
                                    }
                                }
                            ],
                            "parcoords": [
                                {
                                    "line": {
                                        "colorbar": {
                                            "ticks": "outside",
                                            "tickcolor": "rgb(36,36,36)",
                                            "outlinewidth": 1
                                        }
                                    },
                                    "type": "parcoords"
                                }
                            ],
                            "scatter3d": [
                                {
                                    "line": {
                                        "colorbar": {
                                            "ticks": "outside",
                                            "tickcolor": "rgb(36,36,36)",
                                            "outlinewidth": 1
                                        }
                                    },
                                    "type": "scatter3d",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "outside",
                                            "tickcolor": "rgb(36,36,36)",
                                            "outlinewidth": 1
                                        }
                                    }
                                }
                            ],
                            "scattergl": [
                                {
                                    "type": "scattergl",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "outside",
                                            "tickcolor": "rgb(36,36,36)",
                                            "outlinewidth": 1
                                        }
                                    }
                                }
                            ],
                            "choropleth": [
                                {
                                    "type": "choropleth",
                                    "colorbar": {
                                        "ticks": "outside",
                                        "tickcolor": "rgb(36,36,36)",
                                        "outlinewidth": 1
                                    }
                                }
                            ],
                            "scattergeo": [
                                {
                                    "type": "scattergeo",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "outside",
                                            "tickcolor": "rgb(36,36,36)",
                                            "outlinewidth": 1
                                        }
                                    }
                                }
                            ],
                            "histogram2d": [
                                {
                                    "type": "histogram2d",
                                    "colorbar": {
                                        "ticks": "outside",
                                        "tickcolor": "rgb(36,36,36)",
                                        "outlinewidth": 1
                                    },
                                    "colorscale": [
                                        [
                                            0.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.0,
                                            "#fde725"
                                        ]
                                    ]
                                }
                            ],
                            "scatterpolar": [
                                {
                                    "type": "scatterpolar",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "outside",
                                            "tickcolor": "rgb(36,36,36)",
                                            "outlinewidth": 1
                                        }
                                    }
                                }
                            ],
                            "contourcarpet": [
                                {
                                    "type": "contourcarpet",
                                    "colorbar": {
                                        "ticks": "outside",
                                        "tickcolor": "rgb(36,36,36)",
                                        "outlinewidth": 1
                                    }
                                }
                            ],
                            "scattercarpet": [
                                {
                                    "type": "scattercarpet",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "outside",
                                            "tickcolor": "rgb(36,36,36)",
                                            "outlinewidth": 1
                                        }
                                    }
                                }
                            ],
                            "scattermapbox": [
                                {
                                    "type": "scattermapbox",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "outside",
                                            "tickcolor": "rgb(36,36,36)",
                                            "outlinewidth": 1
                                        }
                                    }
                                }
                            ],
                            "scatterpolargl": [
                                {
                                    "type": "scatterpolargl",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "outside",
                                            "tickcolor": "rgb(36,36,36)",
                                            "outlinewidth": 1
                                        }
                                    }
                                }
                            ],
                            "scatterternary": [
                                {
                                    "type": "scatterternary",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "outside",
                                            "tickcolor": "rgb(36,36,36)",
                                            "outlinewidth": 1
                                        }
                                    }
                                }
                            ],
                            "histogram2dcontour": [
                                {
                                    "type": "histogram2dcontour",
                                    "colorbar": {
                                        "ticks": "outside",
                                        "tickcolor": "rgb(36,36,36)",
                                        "outlinewidth": 1
                                    },
                                    "colorscale": [
                                        [
                                            0.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.0,
                                            "#fde725"
                                        ]
                                    ]
                                }
                            ]
                        },
                        "layout": {
                            "geo": {
                                "bgcolor": "white",
                                "showland": true,
                                "lakecolor": "white",
                                "landcolor": "white",
                                "showlakes": true,
                                "subunitcolor": "white"
                            },
                            "font": {
                                "color": "rgb(36,36,36)"
                            },
                            "polar": {
                                "bgcolor": "white",
                                "radialaxis": {
                                    "ticks": "outside",
                                    "showgrid": false,
                                    "showline": true,
                                    "gridcolor": "rgb(232,232,232)",
                                    "linecolor": "rgb(36,36,36)"
                                },
                                "angularaxis": {
                                    "ticks": "outside",
                                    "showgrid": false,
                                    "showline": true,
                                    "gridcolor": "rgb(232,232,232)",
                                    "linecolor": "rgb(36,36,36)"
                                }
                            },
                            "scene": {
                                "xaxis": {
                                    "ticks": "outside",
                                    "showgrid": false,
                                    "showline": true,
                                    "zeroline": false,
                                    "gridcolor": "rgb(232,232,232)",
                                    "gridwidth": 2,
                                    "linecolor": "rgb(36,36,36)",
                                    "zerolinecolor": "rgb(36,36,36)",
                                    "showbackground": true,
                                    "backgroundcolor": "white"
                                },
                                "yaxis": {
                                    "ticks": "outside",
                                    "showgrid": false,
                                    "showline": true,
                                    "zeroline": false,
                                    "gridcolor": "rgb(232,232,232)",
                                    "gridwidth": 2,
                                    "linecolor": "rgb(36,36,36)",
                                    "zerolinecolor": "rgb(36,36,36)",
                                    "showbackground": true,
                                    "backgroundcolor": "white"
                                },
                                "zaxis": {
                                    "ticks": "outside",
                                    "showgrid": false,
                                    "showline": true,
                                    "zeroline": false,
                                    "gridcolor": "rgb(232,232,232)",
                                    "gridwidth": 2,
                                    "linecolor": "rgb(36,36,36)",
                                    "zerolinecolor": "rgb(36,36,36)",
                                    "showbackground": true,
                                    "backgroundcolor": "white"
                                }
                            },
                            "title": {
                                "x": 0.05
                            },
                            "xaxis": {
                                "ticks": "outside",
                                "title": {
                                    "standoff": 15
                                },
                                "showgrid": false,
                                "showline": true,
                                "zeroline": false,
                                "gridcolor": "rgb(232,232,232)",
                                "linecolor": "rgb(36,36,36)",
                                "automargin": true,
                                "zerolinecolor": "rgb(36,36,36)"
                            },
                            "yaxis": {
                                "ticks": "outside",
                                "title": {
                                    "standoff": 15
                                },
                                "showgrid": false,
                                "showline": true,
                                "zeroline": false,
                                "gridcolor": "rgb(232,232,232)",
                                "linecolor": "rgb(36,36,36)",
                                "automargin": true,
                                "zerolinecolor": "rgb(36,36,36)"
                            },
                            "mapbox": {
                                "style": "light"
                            },
                            "ternary": {
                                "aaxis": {
                                    "ticks": "outside",
                                    "showgrid": false,
                                    "showline": true,
                                    "gridcolor": "rgb(232,232,232)",
                                    "linecolor": "rgb(36,36,36)"
                                },
                                "baxis": {
                                    "ticks": "outside",
                                    "showgrid": false,
                                    "showline": true,
                                    "gridcolor": "rgb(232,232,232)",
                                    "linecolor": "rgb(36,36,36)"
                                },
                                "caxis": {
                                    "ticks": "outside",
                                    "showgrid": false,
                                    "showline": true,
                                    "gridcolor": "rgb(232,232,232)",
                                    "linecolor": "rgb(36,36,36)"
                                },
                                "bgcolor": "white"
                            },
                            "colorway": [
                                "#1F77B4",
                                "#FF7F0E",
                                "#2CA02C",
                                "#D62728",
                                "#9467BD",
                                "#8C564B",
                                "#E377C2",
                                "#7F7F7F",
                                "#BCBD22",
                                "#17BECF"
                            ],
                            "coloraxis": {
                                "colorbar": {
                                    "ticks": "outside",
                                    "tickcolor": "rgb(36,36,36)",
                                    "outlinewidth": 1
                                }
                            },
                            "hovermode": "closest",
                            "colorscale": {
                                "diverging": [
                                    [
                                        0.0,
                                        "rgb(103,0,31)"
                                    ],
                                    [
                                        0.1,
                                        "rgb(178,24,43)"
                                    ],
                                    [
                                        0.2,
                                        "rgb(214,96,77)"
                                    ],
                                    [
                                        0.3,
                                        "rgb(244,165,130)"
                                    ],
                                    [
                                        0.4,
                                        "rgb(253,219,199)"
                                    ],
                                    [
                                        0.5,
                                        "rgb(247,247,247)"
                                    ],
                                    [
                                        0.6,
                                        "rgb(209,229,240)"
                                    ],
                                    [
                                        0.7,
                                        "rgb(146,197,222)"
                                    ],
                                    [
                                        0.8,
                                        "rgb(67,147,195)"
                                    ],
                                    [
                                        0.9,
                                        "rgb(33,102,172)"
                                    ],
                                    [
                                        1.0,
                                        "rgb(5,48,97)"
                                    ]
                                ],
                                "sequential": [
                                    [
                                        0.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.0,
                                        "#fde725"
                                    ]
                                ],
                                "sequentialminus": [
                                    [
                                        0.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.0,
                                        "#fde725"
                                    ]
                                ]
                            },
                            "hoverlabel": {
                                "align": "left"
                            },
                            "plot_bgcolor": "white",
                            "paper_bgcolor": "white",
                            "shapedefaults": {
                                "line": {
                                    "width": 0
                                },
                                "opacity": 0.3,
                                "fillcolor": "black"
                            },
                            "autotypenumbers": "strict",
                            "annotationdefaults": {
                                "arrowhead": 0,
                                "arrowwidth": 1
                            }
                        }
                    },
                    "showlegend": false
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~jeonyl1009",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/38.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-11.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2024-04-23 16:31:18",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "jeonyl1009",
                "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": "2024-04-23T16:34:06.079281Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~maferchgz/1.embed",
            "fid": "maferchgz:1",
            "filename": "igPlotly1",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/maferchgz/1/9_HK3X9D12M39JRE16UIU075EJE0558J.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/maferchgz/1/2_9JRWN8R80448JZ8R6P0ICDOSFTZ8T3.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/maferchgz/1/8_9YTNOW0FOSKXIWH8XAU0ZRO3AELG0H.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/maferchgz/1/9_HK3X9D12M39JRE16UIU075EJE0558J.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/maferchgz:1",
                "plots": "https://api.plotly.com/v2/plots/maferchgz:1",
                "parent": "https://api.plotly.com/v2/folders/home?user=maferchgz"
            },
            "owner": "maferchgz",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 1,
            "web_url": "https://chart-studio.plotly.com/~maferchgz/1/",
            "world_readable": true,
            "date_modified": "2024-04-23T16:34:06.090Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~maferchgz/1/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "type": "bar",
                        "xsrc": "maferchgz:0:0e354c",
                        "ysrc": "maferchgz:0:2c728c",
                        "frame": null,
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "line": {
                                "color": "transparent",
                                "width": 1.8897637795275593
                            },
                            "color": "rgba(255,0,255,1)",
                            "autocolorscale": false
                        },
                        "basesrc": "maferchgz:0:66a6e0",
                        "textsrc": "maferchgz:0:d86c69",
                        "widthsrc": "maferchgz:0:bd3efe",
                        "hoverinfo": "text",
                        "showlegend": false,
                        "orientation": "v",
                        "textposition": "none"
                    }
                ],
                "layout": {
                    "font": {
                        "size": 14.611872146118724,
                        "color": "rgba(0,0,0,1)",
                        "family": ""
                    },
                    "xaxis": {
                        "type": "linear",
                        "range": [
                            -77.60000000000001,
                            1629.6
                        ],
                        "ticks": "outside",
                        "title": {
                            "font": {
                                "size": 14.611872146118724,
                                "color": "rgba(0,0,0,1)",
                                "family": ""
                            },
                            "text": ""
                        },
                        "anchor": "y",
                        "domain": [
                            0,
                            1
                        ],
                        "nticks": null,
                        "ticklen": 3.652968036529681,
                        "showgrid": true,
                        "showline": false,
                        "tickfont": {
                            "size": 11.689497716894984,
                            "color": "rgba(77,77,77,1)",
                            "family": ""
                        },
                        "tickmode": "array",
                        "ticktext": [
                            "0",
                            "500",
                            "1000",
                            "1500"
                        ],
                        "tickvals": [
                            0,
                            500,
                            999.9999999999999,
                            1500
                        ],
                        "zeroline": false,
                        "autorange": false,
                        "gridcolor": "rgba(255,255,255,1)",
                        "gridwidth": 0.66417600664176,
                        "linecolor": null,
                        "linewidth": 0,
                        "tickangle": 0,
                        "tickcolor": "rgba(51,51,51,1)",
                        "tickwidth": 0.66417600664176,
                        "automargin": true,
                        "hoverformat": ".2f",
                        "categoryarray": [
                            "0",
                            "500",
                            "1000",
                            "1500"
                        ],
                        "categoryorder": "array",
                        "showticklabels": true
                    },
                    "yaxis": {
                        "type": "linear",
                        "range": [
                            0.4,
                            10.6
                        ],
                        "ticks": "outside",
                        "title": {
                            "font": {
                                "size": 14.611872146118724,
                                "color": "rgba(0,0,0,1)",
                                "family": ""
                            },
                            "text": ""
                        },
                        "anchor": "x",
                        "domain": [
                            0,
                            1
                        ],
                        "nticks": null,
                        "ticklen": 3.652968036529681,
                        "showgrid": true,
                        "showline": false,
                        "tickfont": {
                            "size": 11.68949771689498,
                            "color": "rgba(77,77,77,1)",
                            "family": ""
                        },
                        "tickmode": "array",
                        "ticktext": [
                            "nuevoleon",
                            "vivemexico",
                            "sculturanl",
                            "nuevoleonextraordinario",
                            "cultural",
                            "cultura",
                            "monterrey",
                            "león",
                            "vivenuevoleon",
                            "culturanl"
                        ],
                        "tickvals": [
                            1,
                            2,
                            3,
                            4,
                            5,
                            6.000000000000001,
                            7,
                            8,
                            9,
                            10
                        ],
                        "zeroline": false,
                        "autorange": false,
                        "gridcolor": "rgba(255,255,255,1)",
                        "gridwidth": 0.66417600664176,
                        "linecolor": null,
                        "linewidth": 0,
                        "tickangle": 0,
                        "tickcolor": "rgba(51,51,51,1)",
                        "tickwidth": 0.66417600664176,
                        "automargin": true,
                        "hoverformat": ".2f",
                        "categoryarray": [
                            "nuevoleon",
                            "vivemexico",
                            "sculturanl",
                            "nuevoleonextraordinario",
                            "cultural",
                            "cultura",
                            "monterrey",
                            "león",
                            "vivenuevoleon",
                            "culturanl"
                        ],
                        "categoryorder": "array",
                        "showticklabels": true
                    },
                    "legend": {
                        "font": {
                            "size": 11.689497716894984,
                            "color": "rgba(0,0,0,1)",
                            "family": ""
                        },
                        "bgcolor": "rgba(255,255,255,1)",
                        "bordercolor": "transparent",
                        "borderwidth": 1.8897637795275593
                    },
                    "margin": {
                        "b": 32.494020439225935,
                        "l": 145.38812785388131,
                        "r": 7.305936073059362,
                        "t": 33.151554685801266
                    },
                    "shapes": [
                        {
                            "x0": 0,
                            "x1": 1,
                            "y0": 0,
                            "y1": 1,
                            "line": {
                                "color": null,
                                "width": 0,
                                "linetype": []
                            },
                            "type": "rect",
                            "xref": "paper",
                            "yref": "paper",
                            "fillcolor": null
                        }
                    ],
                    "barmode": "relative",
                    "hovermode": "closest",
                    "showlegend": false,
                    "plot_bgcolor": "rgba(235,235,235,1)",
                    "paper_bgcolor": "rgba(255,255,255,1)"
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~maferchgz",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/23.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-12.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2024-04-23 15:44:00",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "maferchgz",
                "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": "2024-04-23T16:34:03.284535Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~jeonyl1009/1.embed",
            "fid": "jeonyl1009:1",
            "filename": "two_features_xgb_model_plot",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/jeonyl1009/1/9_PI5FBRI40DF3MEGJ7NSK6ANFDOPTL5.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/jeonyl1009/1/2_BQ5Q0KEHZ00V2Y9KLCZLTI33GUP0C5.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/jeonyl1009/1/8_C6CPWSDZLFGEF1GXNJNZGYVE492OLF.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/jeonyl1009/1/9_PI5FBRI40DF3MEGJ7NSK6ANFDOPTL5.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/jeonyl1009:1",
                "plots": "https://api.plotly.com/v2/plots/jeonyl1009:1",
                "parent": "https://api.plotly.com/v2/folders/home?user=jeonyl1009"
            },
            "owner": "jeonyl1009",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 4,
            "web_url": "https://chart-studio.plotly.com/~jeonyl1009/1/",
            "world_readable": true,
            "date_modified": "2024-04-23T17:01:50.447Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~jeonyl1009/1/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "type": "surface",
                        "xsrc": "jeonyl1009:9:b82c8b",
                        "ysrc": "jeonyl1009:9:e5194b",
                        "zsrc": "jeonyl1009:9:9b896b",
                        "scene": "scene",
                        "opacity": 0.8,
                        "showscale": false,
                        "colorscale": [
                            [
                                0.0,
                                "rgb(255,255,204)"
                            ],
                            [
                                0.125,
                                "rgb(255,237,160)"
                            ],
                            [
                                0.25,
                                "rgb(254,217,118)"
                            ],
                            [
                                0.375,
                                "rgb(254,178,76)"
                            ],
                            [
                                0.5,
                                "rgb(253,141,60)"
                            ],
                            [
                                0.625,
                                "rgb(252,78,42)"
                            ],
                            [
                                0.75,
                                "rgb(227,26,28)"
                            ],
                            [
                                0.875,
                                "rgb(189,0,38)"
                            ],
                            [
                                1.0,
                                "rgb(128,0,38)"
                            ]
                        ]
                    },
                    {
                        "mode": "markers",
                        "type": "scatter3d",
                        "xsrc": "jeonyl1009:9:2f14b3",
                        "ysrc": "jeonyl1009:9:7573ad",
                        "zsrc": "jeonyl1009:9:06d0e7",
                        "scene": "scene",
                        "marker": {
                            "size": 2,
                            "color": "blue"
                        }
                    }
                ],
                "layout": {
                    "scene": {
                        "xaxis": {
                            "title": {
                                "text": "X1"
                            }
                        },
                        "yaxis": {
                            "title": {
                                "text": "X2"
                            }
                        },
                        "zaxis": {
                            "title": {
                                "text": "Predicted Y"
                            }
                        },
                        "domain": {
                            "x": [
                                0.0,
                                1.0
                            ],
                            "y": [
                                0.0,
                                1.0
                            ]
                        }
                    },
                    "title": {
                        "text": "Decision Tree Regression(e.g. xgboost)"
                    },
                    "template": {
                        "data": {
                            "bar": [
                                {
                                    "type": "bar",
                                    "marker": {
                                        "line": {
                                            "color": "white",
                                            "width": 0.5
                                        },
                                        "pattern": {
                                            "size": 10,
                                            "fillmode": "overlay",
                                            "solidity": 0.2
                                        }
                                    },
                                    "error_x": {
                                        "color": "rgb(36,36,36)"
                                    },
                                    "error_y": {
                                        "color": "rgb(36,36,36)"
                                    }
                                }
                            ],
                            "pie": [
                                {
                                    "type": "pie",
                                    "automargin": true
                                }
                            ],
                            "table": [
                                {
                                    "type": "table",
                                    "cells": {
                                        "fill": {
                                            "color": "rgb(237,237,237)"
                                        },
                                        "line": {
                                            "color": "white"
                                        }
                                    },
                                    "header": {
                                        "fill": {
                                            "color": "rgb(217,217,217)"
                                        },
                                        "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",
                                        "tickcolor": "rgb(36,36,36)",
                                        "outlinewidth": 1
                                    }
                                }
                            ],
                            "contour": [
                                {
                                    "type": "contour",
                                    "colorbar": {
                                        "ticks": "outside",
                                        "tickcolor": "rgb(36,36,36)",
                                        "outlinewidth": 1
                                    },
                                    "colorscale": [
                                        [
                                            0.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.0,
                                            "#fde725"
                                        ]
                                    ]
                                }
                            ],
                            "heatmap": [
                                {
                                    "type": "heatmap",
                                    "colorbar": {
                                        "ticks": "outside",
                                        "tickcolor": "rgb(36,36,36)",
                                        "outlinewidth": 1
                                    },
                                    "colorscale": [
                                        [
                                            0.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.0,
                                            "#fde725"
                                        ]
                                    ]
                                }
                            ],
                            "scatter": [
                                {
                                    "type": "scatter",
                                    "fillpattern": {
                                        "size": 10,
                                        "fillmode": "overlay",
                                        "solidity": 0.2
                                    }
                                }
                            ],
                            "surface": [
                                {
                                    "type": "surface",
                                    "colorbar": {
                                        "ticks": "outside",
                                        "tickcolor": "rgb(36,36,36)",
                                        "outlinewidth": 1
                                    },
                                    "colorscale": [
                                        [
                                            0.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.0,
                                            "#fde725"
                                        ]
                                    ]
                                }
                            ],
                            "barpolar": [
                                {
                                    "type": "barpolar",
                                    "marker": {
                                        "line": {
                                            "color": "white",
                                            "width": 0.5
                                        },
                                        "pattern": {
                                            "size": 10,
                                            "fillmode": "overlay",
                                            "solidity": 0.2
                                        }
                                    }
                                }
                            ],
                            "heatmapgl": [
                                {
                                    "type": "heatmapgl",
                                    "colorbar": {
                                        "ticks": "outside",
                                        "tickcolor": "rgb(36,36,36)",
                                        "outlinewidth": 1
                                    },
                                    "colorscale": [
                                        [
                                            0.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.0,
                                            "#fde725"
                                        ]
                                    ]
                                }
                            ],
                            "histogram": [
                                {
                                    "type": "histogram",
                                    "marker": {
                                        "line": {
                                            "color": "white",
                                            "width": 0.6
                                        }
                                    }
                                }
                            ],
                            "parcoords": [
                                {
                                    "line": {
                                        "colorbar": {
                                            "ticks": "outside",
                                            "tickcolor": "rgb(36,36,36)",
                                            "outlinewidth": 1
                                        }
                                    },
                                    "type": "parcoords"
                                }
                            ],
                            "scatter3d": [
                                {
                                    "line": {
                                        "colorbar": {
                                            "ticks": "outside",
                                            "tickcolor": "rgb(36,36,36)",
                                            "outlinewidth": 1
                                        }
                                    },
                                    "type": "scatter3d",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "outside",
                                            "tickcolor": "rgb(36,36,36)",
                                            "outlinewidth": 1
                                        }
                                    }
                                }
                            ],
                            "scattergl": [
                                {
                                    "type": "scattergl",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "outside",
                                            "tickcolor": "rgb(36,36,36)",
                                            "outlinewidth": 1
                                        }
                                    }
                                }
                            ],
                            "choropleth": [
                                {
                                    "type": "choropleth",
                                    "colorbar": {
                                        "ticks": "outside",
                                        "tickcolor": "rgb(36,36,36)",
                                        "outlinewidth": 1
                                    }
                                }
                            ],
                            "scattergeo": [
                                {
                                    "type": "scattergeo",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "outside",
                                            "tickcolor": "rgb(36,36,36)",
                                            "outlinewidth": 1
                                        }
                                    }
                                }
                            ],
                            "histogram2d": [
                                {
                                    "type": "histogram2d",
                                    "colorbar": {
                                        "ticks": "outside",
                                        "tickcolor": "rgb(36,36,36)",
                                        "outlinewidth": 1
                                    },
                                    "colorscale": [
                                        [
                                            0.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.0,
                                            "#fde725"
                                        ]
                                    ]
                                }
                            ],
                            "scatterpolar": [
                                {
                                    "type": "scatterpolar",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "outside",
                                            "tickcolor": "rgb(36,36,36)",
                                            "outlinewidth": 1
                                        }
                                    }
                                }
                            ],
                            "contourcarpet": [
                                {
                                    "type": "contourcarpet",
                                    "colorbar": {
                                        "ticks": "outside",
                                        "tickcolor": "rgb(36,36,36)",
                                        "outlinewidth": 1
                                    }
                                }
                            ],
                            "scattercarpet": [
                                {
                                    "type": "scattercarpet",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "outside",
                                            "tickcolor": "rgb(36,36,36)",
                                            "outlinewidth": 1
                                        }
                                    }
                                }
                            ],
                            "scattermapbox": [
                                {
                                    "type": "scattermapbox",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "outside",
                                            "tickcolor": "rgb(36,36,36)",
                                            "outlinewidth": 1
                                        }
                                    }
                                }
                            ],
                            "scatterpolargl": [
                                {
                                    "type": "scatterpolargl",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "outside",
                                            "tickcolor": "rgb(36,36,36)",
                                            "outlinewidth": 1
                                        }
                                    }
                                }
                            ],
                            "scatterternary": [
                                {
                                    "type": "scatterternary",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "outside",
                                            "tickcolor": "rgb(36,36,36)",
                                            "outlinewidth": 1
                                        }
                                    }
                                }
                            ],
                            "histogram2dcontour": [
                                {
                                    "type": "histogram2dcontour",
                                    "colorbar": {
                                        "ticks": "outside",
                                        "tickcolor": "rgb(36,36,36)",
                                        "outlinewidth": 1
                                    },
                                    "colorscale": [
                                        [
                                            0.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.0,
                                            "#fde725"
                                        ]
                                    ]
                                }
                            ]
                        },
                        "layout": {
                            "geo": {
                                "bgcolor": "white",
                                "showland": true,
                                "lakecolor": "white",
                                "landcolor": "white",
                                "showlakes": true,
                                "subunitcolor": "white"
                            },
                            "font": {
                                "color": "rgb(36,36,36)"
                            },
                            "polar": {
                                "bgcolor": "white",
                                "radialaxis": {
                                    "ticks": "outside",
                                    "showgrid": false,
                                    "showline": true,
                                    "gridcolor": "rgb(232,232,232)",
                                    "linecolor": "rgb(36,36,36)"
                                },
                                "angularaxis": {
                                    "ticks": "outside",
                                    "showgrid": false,
                                    "showline": true,
                                    "gridcolor": "rgb(232,232,232)",
                                    "linecolor": "rgb(36,36,36)"
                                }
                            },
                            "scene": {
                                "xaxis": {
                                    "ticks": "outside",
                                    "showgrid": false,
                                    "showline": true,
                                    "zeroline": false,
                                    "gridcolor": "rgb(232,232,232)",
                                    "gridwidth": 2,
                                    "linecolor": "rgb(36,36,36)",
                                    "zerolinecolor": "rgb(36,36,36)",
                                    "showbackground": true,
                                    "backgroundcolor": "white"
                                },
                                "yaxis": {
                                    "ticks": "outside",
                                    "showgrid": false,
                                    "showline": true,
                                    "zeroline": false,
                                    "gridcolor": "rgb(232,232,232)",
                                    "gridwidth": 2,
                                    "linecolor": "rgb(36,36,36)",
                                    "zerolinecolor": "rgb(36,36,36)",
                                    "showbackground": true,
                                    "backgroundcolor": "white"
                                },
                                "zaxis": {
                                    "ticks": "outside",
                                    "showgrid": false,
                                    "showline": true,
                                    "zeroline": false,
                                    "gridcolor": "rgb(232,232,232)",
                                    "gridwidth": 2,
                                    "linecolor": "rgb(36,36,36)",
                                    "zerolinecolor": "rgb(36,36,36)",
                                    "showbackground": true,
                                    "backgroundcolor": "white"
                                }
                            },
                            "title": {
                                "x": 0.05
                            },
                            "xaxis": {
                                "ticks": "outside",
                                "title": {
                                    "standoff": 15
                                },
                                "showgrid": false,
                                "showline": true,
                                "zeroline": false,
                                "gridcolor": "rgb(232,232,232)",
                                "linecolor": "rgb(36,36,36)",
                                "automargin": true,
                                "zerolinecolor": "rgb(36,36,36)"
                            },
                            "yaxis": {
                                "ticks": "outside",
                                "title": {
                                    "standoff": 15
                                },
                                "showgrid": false,
                                "showline": true,
                                "zeroline": false,
                                "gridcolor": "rgb(232,232,232)",
                                "linecolor": "rgb(36,36,36)",
                                "automargin": true,
                                "zerolinecolor": "rgb(36,36,36)"
                            },
                            "mapbox": {
                                "style": "light"
                            },
                            "ternary": {
                                "aaxis": {
                                    "ticks": "outside",
                                    "showgrid": false,
                                    "showline": true,
                                    "gridcolor": "rgb(232,232,232)",
                                    "linecolor": "rgb(36,36,36)"
                                },
                                "baxis": {
                                    "ticks": "outside",
                                    "showgrid": false,
                                    "showline": true,
                                    "gridcolor": "rgb(232,232,232)",
                                    "linecolor": "rgb(36,36,36)"
                                },
                                "caxis": {
                                    "ticks": "outside",
                                    "showgrid": false,
                                    "showline": true,
                                    "gridcolor": "rgb(232,232,232)",
                                    "linecolor": "rgb(36,36,36)"
                                },
                                "bgcolor": "white"
                            },
                            "colorway": [
                                "#1F77B4",
                                "#FF7F0E",
                                "#2CA02C",
                                "#D62728",
                                "#9467BD",
                                "#8C564B",
                                "#E377C2",
                                "#7F7F7F",
                                "#BCBD22",
                                "#17BECF"
                            ],
                            "coloraxis": {
                                "colorbar": {
                                    "ticks": "outside",
                                    "tickcolor": "rgb(36,36,36)",
                                    "outlinewidth": 1
                                }
                            },
                            "hovermode": "closest",
                            "colorscale": {
                                "diverging": [
                                    [
                                        0.0,
                                        "rgb(103,0,31)"
                                    ],
                                    [
                                        0.1,
                                        "rgb(178,24,43)"
                                    ],
                                    [
                                        0.2,
                                        "rgb(214,96,77)"
                                    ],
                                    [
                                        0.3,
                                        "rgb(244,165,130)"
                                    ],
                                    [
                                        0.4,
                                        "rgb(253,219,199)"
                                    ],
                                    [
                                        0.5,
                                        "rgb(247,247,247)"
                                    ],
                                    [
                                        0.6,
                                        "rgb(209,229,240)"
                                    ],
                                    [
                                        0.7,
                                        "rgb(146,197,222)"
                                    ],
                                    [
                                        0.8,
                                        "rgb(67,147,195)"
                                    ],
                                    [
                                        0.9,
                                        "rgb(33,102,172)"
                                    ],
                                    [
                                        1.0,
                                        "rgb(5,48,97)"
                                    ]
                                ],
                                "sequential": [
                                    [
                                        0.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.0,
                                        "#fde725"
                                    ]
                                ],
                                "sequentialminus": [
                                    [
                                        0.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.0,
                                        "#fde725"
                                    ]
                                ]
                            },
                            "hoverlabel": {
                                "align": "left"
                            },
                            "plot_bgcolor": "white",
                            "paper_bgcolor": "white",
                            "shapedefaults": {
                                "line": {
                                    "width": 0
                                },
                                "opacity": 0.3,
                                "fillcolor": "black"
                            },
                            "autotypenumbers": "strict",
                            "annotationdefaults": {
                                "arrowhead": 0,
                                "arrowwidth": 1
                            }
                        }
                    },
                    "showlegend": false
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~jeonyl1009",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/38.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-11.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2024-04-23 16:31:18",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "jeonyl1009",
                "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": "2024-04-23T16:28:47.929255Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~apeixinho/3.embed",
            "fid": "apeixinho:3",
            "filename": "Plot 3",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/apeixinho/3/9_D4LC8U7BT4FFVR43ZO04H43YW4YRDD.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/apeixinho/3/2_YMV7VKVG2OBLWFEMNRHJO5XHWXU05C.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/apeixinho/3/8_XH7ZSIIGTL0GEV344D1NEY8PA1T16Y.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/apeixinho/3/9_D4LC8U7BT4FFVR43ZO04H43YW4YRDD.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/apeixinho:3",
                "plots": "https://api.plotly.com/v2/plots/apeixinho:3",
                "parent": "https://api.plotly.com/v2/folders/home?user=apeixinho"
            },
            "owner": "apeixinho",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 1,
            "web_url": "https://chart-studio.plotly.com/~apeixinho/3/",
            "world_readable": true,
            "date_modified": "2024-04-23T16:28:47.943Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~apeixinho/3/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": false,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "line": {
                            "color": "rgb(39, 56, 255)"
                        },
                        "meta": {
                            "columnNames": {
                                "x": "B"
                            }
                        },
                        "mode": "markers",
                        "name": "<br>",
                        "type": "box",
                        "xsrc": "apeixinho:2:7988de",
                        "jitter": 0,
                        "marker": {
                            "line": {
                                "color": "rgb(230, 182, 254)",
                                "width": 2
                            },
                            "size": 11,
                            "color": "rgb(174, 137, 255)",
                            "symbol": "circle-open"
                        },
                        "pointpos": 0,
                        "boxpoints": "all",
                        "fillcolor": "rgba(215, 217, 253, 0.5)"
                    }
                ],
                "frames": [],
                "layout": {
                    "title": {
                        "text": "X-Ray/Mamm Hourly Rate and Years of Experience"
                    },
                    "xaxis": {
                        "range": [
                            25.168333333333333,
                            46.80166666666666
                        ],
                        "title": {
                            "text": "Hourly Rate ($)"
                        },
                        "showline": false,
                        "tickmode": "linear",
                        "autorange": true
                    },
                    "yaxis": {
                        "type": "category",
                        "range": [
                            -0.5,
                            0.5
                        ],
                        "autorange": true
                    },
                    "boxgap": 0.75,
                    "legend": {
                        "x": 0.747853152434158,
                        "y": 1.1877551020408164,
                        "title": {
                            "font": {
                                "color": "rgb(251, 0, 255)"
                            },
                            "text": "<b>LEGEND:</b><br><br>\nPink= Mamm"
                        }
                    },
                    "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"
                    },
                    "showlegend": true,
                    "annotations": [
                        {
                            "x": 26.25,
                            "y": 0,
                            "ax": -18,
                            "ay": -50,
                            "text": "0"
                        },
                        {
                            "x": 27.31,
                            "y": 0,
                            "ax": -21,
                            "ay": -44,
                            "text": "4"
                        },
                        {
                            "x": 28.32,
                            "y": 0,
                            "ax": -10,
                            "ay": -43,
                            "text": "3"
                        },
                        {
                            "x": 29.98,
                            "y": 0,
                            "text": "6"
                        },
                        {
                            "x": 30.17,
                            "y": 0,
                            "ax": -10,
                            "ay": -43,
                            "text": "6"
                        },
                        {
                            "x": 30.77,
                            "y": 0,
                            "ax": -10,
                            "ay": -30,
                            "text": "5"
                        },
                        {
                            "x": 30.87,
                            "y": 0,
                            "ax": -9,
                            "ay": -54,
                            "text": "9"
                        },
                        {
                            "x": 30.87,
                            "y": 0,
                            "ax": 7,
                            "ay": -39,
                            "text": "10"
                        },
                        {
                            "x": 31.74,
                            "y": 0,
                            "text": "21"
                        },
                        {
                            "x": 31.85,
                            "y": 0,
                            "ax": 4,
                            "ay": -30,
                            "text": "17"
                        },
                        {
                            "x": 33.99,
                            "y": 0,
                            "font": {
                                "color": "rgb(255, 0, 207)"
                            },
                            "text": "5",
                            "arrowcolor": "rgb(255, 0, 211)",
                            "arrowwidth": 2
                        },
                        {
                            "x": 34.47,
                            "y": 0,
                            "ax": -10,
                            "ay": -30,
                            "font": {
                                "color": "rgb(255, 6, 227)"
                            },
                            "text": "6.2",
                            "arrowcolor": "rgb(253, 0, 214)",
                            "arrowwidth": 2
                        },
                        {
                            "x": 34.77,
                            "y": 0,
                            "ax": -20,
                            "ay": -59,
                            "text": "21"
                        },
                        {
                            "x": 35.07,
                            "y": 0,
                            "ax": -18,
                            "ay": -61,
                            "font": {
                                "color": "rgb(250, 0, 222)"
                            },
                            "text": "2.4",
                            "arrowcolor": "rgb(255, 0, 235)",
                            "arrowwidth": 2
                        },
                        {
                            "x": 35.07,
                            "y": 0,
                            "ax": -1,
                            "ay": -30,
                            "font": {
                                "color": "rgb(251, 0, 255)"
                            },
                            "text": "3",
                            "arrowcolor": "rgb(255, 0, 240)",
                            "arrowwidth": 2
                        },
                        {
                            "x": 35.14,
                            "y": 0,
                            "ax": 10,
                            "ay": -29,
                            "font": {
                                "color": "rgb(255, 0, 236)"
                            },
                            "text": "9",
                            "arrowsize": 1,
                            "arrowcolor": "rgb(255, 0, 226)",
                            "arrowwidth": 2
                        },
                        {
                            "x": 35.68,
                            "y": 0,
                            "ax": -18,
                            "ay": -65,
                            "font": {
                                "color": "rgb(255, 0, 250)"
                            },
                            "text": "6",
                            "arrowcolor": "rgb(255, 0, 234)",
                            "arrowwidth": 2
                        },
                        {
                            "x": 35.71,
                            "y": 0,
                            "ax": -1,
                            "ay": -66,
                            "text": "44"
                        },
                        {
                            "x": 35.75,
                            "y": 0,
                            "ax": 11,
                            "ay": -30,
                            "font": {
                                "color": "rgb(217, 0, 255)"
                            },
                            "text": "5.4",
                            "arrowcolor": "rgb(255, 0, 235)",
                            "arrowwidth": 2
                        },
                        {
                            "x": 36.05,
                            "y": 0,
                            "ax": 15,
                            "ay": -30,
                            "font": {
                                "color": "rgb(250, 0, 255)"
                            },
                            "text": "7",
                            "arrowcolor": "rgb(226, 0, 255)",
                            "arrowwidth": 2
                        },
                        {
                            "x": 37.08,
                            "y": 0,
                            "ax": -19,
                            "ay": -30,
                            "font": {
                                "color": "rgb(250, 0, 255)"
                            },
                            "text": "6",
                            "arrowcolor": "rgb(255, 0, 250)",
                            "arrowwidth": 2
                        },
                        {
                            "x": 37.49,
                            "y": 0,
                            "ax": -19,
                            "ay": -31,
                            "text": "37"
                        },
                        {
                            "x": 37.49,
                            "y": 0,
                            "ax": -8,
                            "ay": -65,
                            "font": {
                                "color": "rgb(255, 0, 241)"
                            },
                            "text": "7",
                            "arrowcolor": "rgb(250, 0, 255)",
                            "arrowwidth": 2
                        },
                        {
                            "x": 37.49,
                            "y": 0,
                            "ax": 11,
                            "ay": -29,
                            "font": {
                                "color": "rgb(255, 0, 250)"
                            },
                            "text": "7.1",
                            "arrowcolor": "rgb(250, 0, 255)",
                            "arrowwidth": 2
                        },
                        {
                            "x": 38.22,
                            "y": 0,
                            "font": {
                                "color": "rgb(240, 0, 255)"
                            },
                            "text": "6",
                            "arrowcolor": "rgb(240, 0, 255)",
                            "arrowwidth": 2
                        },
                        {
                            "x": 38.56,
                            "y": 0,
                            "font": {
                                "color": "rgb(255, 0, 241)"
                            },
                            "text": "11",
                            "arrowcolor": "rgb(255, 0, 224)",
                            "arrowwidth": 2
                        },
                        {
                            "x": 38.86,
                            "y": 0,
                            "font": {
                                "color": "rgb(250, 0, 255)"
                            },
                            "text": "17",
                            "arrowcolor": "rgb(255, 0, 240)",
                            "arrowwidth": 2
                        },
                        {
                            "x": 39.13,
                            "y": 0,
                            "font": {
                                "color": "rgb(255, 0, 236)"
                            },
                            "text": "13",
                            "arrowcolor": "rgb(255, 0, 191)",
                            "arrowwidth": 2
                        },
                        {
                            "x": 39.73,
                            "y": 0,
                            "ax": -10,
                            "ay": -22,
                            "font": {
                                "color": "rgb(255, 0, 241)"
                            },
                            "text": "18.6",
                            "arrowcolor": "rgb(255, 0, 250)",
                            "arrowwidth": 2
                        },
                        {
                            "x": 40.1,
                            "y": 0,
                            "ax": -25,
                            "ay": -58,
                            "font": {
                                "color": "rgb(252, 0, 205)"
                            },
                            "text": "11",
                            "arrowcolor": "rgb(255, 0, 216)",
                            "arrowwidth": 2
                        },
                        {
                            "x": 40.12,
                            "y": 0,
                            "ax": -19,
                            "ay": -81,
                            "font": {
                                "color": "rgb(255, 0, 202)"
                            },
                            "text": "23",
                            "arrowcolor": "rgb(255, 0, 191)",
                            "arrowwidth": 2
                        },
                        {
                            "x": 40.17,
                            "y": 0,
                            "ax": -6,
                            "ay": -57,
                            "font": {
                                "color": "rgb(250, 0, 255)"
                            },
                            "text": "32",
                            "arrowcolor": "rgb(255, 0, 240)",
                            "arrowwidth": 2
                        },
                        {
                            "x": 40.32,
                            "y": 0,
                            "ax": -1,
                            "ay": -30,
                            "font": {
                                "color": "rgb(255, 0, 192)"
                            },
                            "text": "14",
                            "arrowcolor": "rgb(235, 0, 255)",
                            "arrowwidth": 2
                        },
                        {
                            "x": 40.92,
                            "y": 0,
                            "font": {
                                "color": "rgb(240, 0, 255)"
                            },
                            "text": "28",
                            "arrowcolor": "rgb(255, 0, 250)",
                            "arrowwidth": 2
                        },
                        {
                            "x": 41.51,
                            "y": 0,
                            "ax": -20,
                            "ay": -22,
                            "font": {
                                "color": "rgb(255, 0, 241)"
                            },
                            "text": "16.2",
                            "arrowcolor": "rgb(255, 0, 226)",
                            "arrowwidth": 2
                        },
                        {
                            "x": 41.62,
                            "y": 0,
                            "ax": 0,
                            "ay": -30,
                            "font": {
                                "color": "rgb(250, 0, 255)"
                            },
                            "text": "36",
                            "arrowcolor": "rgb(255, 0, 226)",
                            "arrowwidth": 2
                        },
                        {
                            "x": 42.1,
                            "y": 0,
                            "ax": -10,
                            "ay": -55,
                            "font": {
                                "color": "rgb(255, 0, 241)"
                            },
                            "text": "26",
                            "arrowcolor": "rgb(255, 0, 240)",
                            "arrowwidth": 2
                        },
                        {
                            "x": 42.1,
                            "y": 0,
                            "ax": 5,
                            "ay": -41,
                            "font": {
                                "color": "rgb(243, 3, 255)"
                            },
                            "text": "53",
                            "arrowcolor": "rgb(255, 0, 240)",
                            "arrowwidth": 2
                        },
                        {
                            "x": 42.1,
                            "y": 0,
                            "ax": 24,
                            "ay": -30,
                            "font": {
                                "color": "rgb(255, 0, 241)"
                            },
                            "text": "37",
                            "arrowcolor": "rgb(255, 0, 240)",
                            "arrowwidth": 2
                        },
                        {
                            "x": 43.554,
                            "y": 0,
                            "ax": -23,
                            "ay": -20,
                            "font": {
                                "color": "rgb(241, 0, 255)"
                            },
                            "text": "40",
                            "arrowcolor": "rgb(240, 0, 255)",
                            "arrowwidth": 2
                        },
                        {
                            "x": 43.86,
                            "y": 0,
                            "ax": -18,
                            "ay": -30,
                            "font": {
                                "color": "rgb(252, 7, 208)"
                            },
                            "text": "36.9",
                            "arrowsize": 1,
                            "arrowcolor": "rgb(234, 5, 246)",
                            "arrowwidth": 2
                        },
                        {
                            "x": 44.33,
                            "y": 0,
                            "ax": -20,
                            "ay": -30,
                            "font": {
                                "color": "rgb(255, 0, 241)"
                            },
                            "text": "19",
                            "arrowcolor": "rgb(255, 0, 201)",
                            "arrowwidth": 2
                        },
                        {
                            "x": 44.5,
                            "y": 0,
                            "ax": -31,
                            "ay": -62,
                            "font": {
                                "color": "rgb(250, 1, 246)"
                            },
                            "text": "27",
                            "arrowcolor": "rgb(248, 7, 229)",
                            "arrowwidth": 2
                        },
                        {
                            "x": 44.67,
                            "y": 0,
                            "ax": -19,
                            "ay": -38,
                            "font": {
                                "color": "rgb(250, 10, 214)"
                            },
                            "text": "42",
                            "arrowcolor": "rgb(248, 7, 211)",
                            "arrowwidth": 2
                        },
                        {
                            "x": 44.75,
                            "y": 0,
                            "ax": -19,
                            "ay": -69,
                            "font": {
                                "color": "rgb(255, 0, 226)"
                            },
                            "text": "52",
                            "arrowcolor": "rgb(253, 0, 210)",
                            "arrowwidth": 2
                        },
                        {
                            "x": 44.77,
                            "y": 0,
                            "ax": 5,
                            "ay": -49,
                            "font": {
                                "color": "rgb(255, 0, 217)"
                            },
                            "text": "27",
                            "arrowcolor": "rgb(248, 7, 228)",
                            "arrowwidth": 2
                        },
                        {
                            "x": 44.93,
                            "y": 0,
                            "ax": 7,
                            "ay": -30,
                            "font": {
                                "color": "rgb(255, 0, 241)"
                            },
                            "text": "50",
                            "arrowcolor": "rgb(255, 0, 250)",
                            "arrowwidth": 2
                        },
                        {
                            "x": 45.72,
                            "y": 0,
                            "ax": -10,
                            "ay": -50,
                            "font": {
                                "color": "rgb(255, 0, 217)"
                            },
                            "text": "36",
                            "arrowcolor": "rgb(255, 0, 211)",
                            "arrowwidth": 2
                        }
                    ]
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~apeixinho",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/46.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": "2024-04-22 20:18:06",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "apeixinho",
                "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": "2024-04-23T16:28:34.234658Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~francoismartins/2.embed",
            "fid": "francoismartins:2",
            "filename": "Validation Scenario 1",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/francoismartins/2/9_K41OXKGBAENCNGIEK2IN40B8EOK5OZ.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/francoismartins/2/2_IC94IAYTQ0VT9JH02NVM1FVP11LZ4R.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/francoismartins/2/8_Z4YQ1S2RLTENTF7QBEXVWE7LPVUYYU.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/francoismartins/2/9_K41OXKGBAENCNGIEK2IN40B8EOK5OZ.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/francoismartins:2",
                "plots": "https://api.plotly.com/v2/plots/francoismartins:2",
                "parent": "https://api.plotly.com/v2/folders/home?user=francoismartins"
            },
            "owner": "francoismartins",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 1,
            "web_url": "https://chart-studio.plotly.com/~francoismartins/2/",
            "world_readable": true,
            "date_modified": "2024-04-23T18:14:32.868Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~francoismartins/2/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": false,
            "autosize": false,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "uid": "259a8f",
                        "fill": "none",
                        "line": {
                            "shape": "linear"
                        },
                        "meta": {
                            "columnNames": {
                                "x": "THD",
                                "y": "L_ew",
                                "text": ""
                            }
                        },
                        "mode": "markers",
                        "name": "Ideal Pareto Front",
                        "type": "scatter",
                        "xsrc": "francoismartins:0:454579",
                        "ysrc": "francoismartins:0:8938ed",
                        "marker": {
                            "line": {
                                "color": "rgb(127, 96, 0)",
                                "width": 1
                            },
                            "size": 20,
                            "color": "rgb(255, 255, 0)",
                            "maxdisplayed": 0
                        },
                        "error_x": {
                            "type": "percent",
                            "color": "rgb(255, 255, 0)",
                            "value": 10,
                            "width": 4,
                            "visible": false,
                            "symmetric": false,
                            "thickness": 2,
                            "valueminus": 10
                        },
                        "hoveron": "points",
                        "opacity": 1,
                        "hoverinfo": "x+y+name",
                        "cliponaxis": false,
                        "hoverlabel": {
                            "namelength": 15
                        },
                        "showlegend": true,
                        "legendgroup": ""
                    },
                    {
                        "uid": "72bf77",
                        "meta": {
                            "columnNames": {
                                "x": "A",
                                "y": "B",
                                "marker": {
                                    "color": ""
                                }
                            }
                        },
                        "mode": "markers",
                        "name": "MOPSO Pareto Front",
                        "type": "scatter",
                        "xsrc": "francoismartins:1:b97a51",
                        "ysrc": "francoismartins:1:6a9fae",
                        "marker": {
                            "line": {
                                "color": "rgb(124, 124, 124)",
                                "width": 1
                            },
                            "meta": {
                                "columnNames": {
                                    "color": "L_ew"
                                }
                            },
                            "size": 11,
                            "color": "rgb(0, 0, 0)",
                            "symbol": "diamond"
                        },
                        "stackgroup": null
                    }
                ],
                "frames": [],
                "layout": {
                    "font": {
                        "size": 12,
                        "family": "Roboto"
                    },
                    "width": 800,
                    "xaxis": {
                        "type": "linear",
                        "range": [
                            0.06811973684210526,
                            0.32641026315789473
                        ],
                        "ticks": "",
                        "title": {
                            "font": {
                                "size": 14,
                                "family": "Open Sans"
                            },
                            "text": "Total Harmonic Distorion (THD)"
                        },
                        "nticks": 0,
                        "showline": false,
                        "tickfont": {
                            "size": 12
                        },
                        "tickmode": "auto",
                        "zeroline": true,
                        "autorange": true,
                        "gridwidth": 1,
                        "showspikes": false,
                        "rangeslider": {
                            "range": [
                                0.07245818293683348,
                                0.3220718170631665
                            ],
                            "yaxis": {},
                            "visible": false,
                            "autorange": true
                        },
                        "exponentformat": "power",
                        "separatethousands": false
                    },
                    "yaxis": {
                        "type": "log",
                        "range": [
                            -18.081441759170016,
                            -7.740072000656825
                        ],
                        "ticks": "",
                        "title": {
                            "font": {
                                "size": 14,
                                "family": "Open Sans"
                            },
                            "text": "End Winding Leakage Induction [H]"
                        },
                        "nticks": 0,
                        "showline": false,
                        "tickfont": {
                            "size": 12
                        },
                        "tickmode": "auto",
                        "zeroline": true,
                        "autorange": true,
                        "gridwidth": 1,
                        "fixedrange": false,
                        "showspikes": false,
                        "tickformat": "",
                        "tickprefix": "",
                        "ticksuffix": "",
                        "showexponent": "all",
                        "exponentformat": "power",
                        "separatethousands": false
                    },
                    "height": 400,
                    "legend": {
                        "x": 1.02,
                        "y": 1.02,
                        "font": {
                            "size": 12
                        },
                        "valign": "top",
                        "xanchor": "right",
                        "yanchor": "auto",
                        "borderwidth": 0,
                        "orientation": "v"
                    },
                    "margin": {
                        "b": 80,
                        "l": 80,
                        "r": 80,
                        "t": 0,
                        "pad": 0
                    },
                    "shapes": [],
                    "modebar": {
                        "orientation": "h"
                    },
                    "autosize": false,
                    "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",
                    "showlegend": true,
                    "annotations": [],
                    "plot_bgcolor": "rgb(255, 255, 255)"
                }
            },
            "height": 400,
            "width": 800,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~francoismartins",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/22.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": "2024-04-23 15:38:59",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "francoismartins",
                "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": "2024-04-23T16:27:23.725183Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~MarisolSandoval71/1.embed",
            "fid": "MarisolSandoval71:1",
            "filename": "igPlotly1",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/MarisolSandoval71/1/9_LS7NO3ZEODC4HJOVJZSJO0LQPJ4X1S.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/MarisolSandoval71/1/2_7IJFGJPH3KRJJSUN82XP4WN1R2V3RD.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/MarisolSandoval71/1/8_YTTT11VFPLZINKGYK3F1AMJKR3IO0B.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/MarisolSandoval71/1/9_LS7NO3ZEODC4HJOVJZSJO0LQPJ4X1S.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/MarisolSandoval71:1",
                "plots": "https://api.plotly.com/v2/plots/MarisolSandoval71:1",
                "parent": "https://api.plotly.com/v2/folders/home?user=MarisolSandoval71"
            },
            "owner": "MarisolSandoval71",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 1,
            "web_url": "https://chart-studio.plotly.com/~MarisolSandoval71/1/",
            "world_readable": true,
            "date_modified": "2024-04-23T16:27:23.733Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~MarisolSandoval71/1/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "base": 0.55,
                        "text": "n: 104<br />reorder(palabra, n): cerrodelasilla<br />n: 104",
                        "type": "bar",
                        "xsrc": "MarisolSandoval71:0:b11593",
                        "ysrc": "MarisolSandoval71:0:59b26c",
                        "frame": null,
                        "width": 104,
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "line": {
                                "color": "transparent",
                                "width": 1.8897637795275593
                            },
                            "color": "rgba(19,43,67,1)",
                            "autocolorscale": false
                        },
                        "hoverinfo": "text",
                        "showlegend": false,
                        "orientation": "v",
                        "textposition": "none"
                    },
                    {
                        "base": 1.55,
                        "text": "n: 107<br />reorder(palabra, n): visitmonterrey<br />n: 107",
                        "type": "bar",
                        "xsrc": "MarisolSandoval71:0:633b78",
                        "ysrc": "MarisolSandoval71:0:7dc843",
                        "frame": null,
                        "width": 107,
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "line": {
                                "color": "transparent",
                                "width": 1.8897637795275593
                            },
                            "color": "rgba(20,44,69,1)",
                            "autocolorscale": false
                        },
                        "hoverinfo": "text",
                        "showlegend": false,
                        "orientation": "v",
                        "textposition": "none"
                    },
                    {
                        "base": 2.55,
                        "text": "n: 108<br />reorder(palabra, n): colorphoto<br />n: 108",
                        "type": "bar",
                        "xsrc": "MarisolSandoval71:0:ed890d",
                        "ysrc": "MarisolSandoval71:0:954009",
                        "frame": null,
                        "width": 108,
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "line": {
                                "color": "transparent",
                                "width": 1.8897637795275593
                            },
                            "color": "rgba(20,45,69,1)",
                            "autocolorscale": false
                        },
                        "hoverinfo": "text",
                        "showlegend": false,
                        "orientation": "v",
                        "textposition": "none"
                    },
                    {
                        "base": 3.55,
                        "text": "n: 109<br />reorder(palabra, n): turismo<br />n: 109",
                        "type": "bar",
                        "xsrc": "MarisolSandoval71:0:cb29bc",
                        "ysrc": "MarisolSandoval71:0:730972",
                        "frame": null,
                        "width": 109,
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "line": {
                                "color": "transparent",
                                "width": 1.8897637795275593
                            },
                            "color": "rgba(20,45,70,1)",
                            "autocolorscale": false
                        },
                        "hoverinfo": "text",
                        "showlegend": false,
                        "orientation": "v",
                        "textposition": "none"
                    },
                    {
                        "type": "bar",
                        "xsrc": "MarisolSandoval71:0:71e969",
                        "ysrc": "MarisolSandoval71:0:01dee7",
                        "frame": null,
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "line": {
                                "color": "transparent",
                                "width": 1.8897637795275593
                            },
                            "color": "rgba(20,45,70,1)",
                            "autocolorscale": false
                        },
                        "basesrc": "MarisolSandoval71:0:2ddf80",
                        "textsrc": "MarisolSandoval71:0:5d79a2",
                        "widthsrc": "MarisolSandoval71:0:e4fcaf",
                        "hoverinfo": "text",
                        "showlegend": false,
                        "orientation": "v",
                        "textposition": "none"
                    },
                    {
                        "base": 6.55,
                        "text": "n: 116<br />reorder(palabra, n): mty<br />n: 116",
                        "type": "bar",
                        "xsrc": "MarisolSandoval71:0:b9d387",
                        "ysrc": "MarisolSandoval71:0:4151c8",
                        "frame": null,
                        "width": 116,
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "line": {
                                "color": "transparent",
                                "width": 1.8897637795275593
                            },
                            "color": "rgba(21,48,73,1)",
                            "autocolorscale": false
                        },
                        "hoverinfo": "text",
                        "showlegend": false,
                        "orientation": "v",
                        "textposition": "none"
                    },
                    {
                        "base": 7.55,
                        "text": "n: 118<br />reorder(palabra, n): hiking<br />n: 118",
                        "type": "bar",
                        "xsrc": "MarisolSandoval71:0:e7c3fe",
                        "ysrc": "MarisolSandoval71:0:5ae1b5",
                        "frame": null,
                        "width": 118,
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "line": {
                                "color": "transparent",
                                "width": 1.8897637795275593
                            },
                            "color": "rgba(22,48,74,1)",
                            "autocolorscale": false
                        },
                        "hoverinfo": "text",
                        "showlegend": false,
                        "orientation": "v",
                        "textposition": "none"
                    },
                    {
                        "base": 8.55,
                        "text": "n: 119<br />reorder(palabra, n): sanpedro<br />n: 119",
                        "type": "bar",
                        "xsrc": "MarisolSandoval71:0:e04a23",
                        "ysrc": "MarisolSandoval71:0:c50f7e",
                        "frame": null,
                        "width": 119,
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "line": {
                                "color": "transparent",
                                "width": 1.8897637795275593
                            },
                            "color": "rgba(22,49,75,1)",
                            "autocolorscale": false
                        },
                        "hoverinfo": "text",
                        "showlegend": false,
                        "orientation": "v",
                        "textposition": "none"
                    },
                    {
                        "base": 9.55,
                        "text": "n: 120<br />reorder(palabra, n): cerro<br />n: 120",
                        "type": "bar",
                        "xsrc": "MarisolSandoval71:0:3ee4e4",
                        "ysrc": "MarisolSandoval71:0:868f88",
                        "frame": null,
                        "width": 120,
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "line": {
                                "color": "transparent",
                                "width": 1.8897637795275593
                            },
                            "color": "rgba(22,49,75,1)",
                            "autocolorscale": false
                        },
                        "hoverinfo": "text",
                        "showlegend": false,
                        "orientation": "v",
                        "textposition": "none"
                    },
                    {
                        "type": "bar",
                        "xsrc": "MarisolSandoval71:0:b72b2a",
                        "ysrc": "MarisolSandoval71:0:73f75d",
                        "frame": null,
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "line": {
                                "color": "transparent",
                                "width": 1.8897637795275593
                            },
                            "color": "rgba(22,50,76,1)",
                            "autocolorscale": false
                        },
                        "basesrc": "MarisolSandoval71:0:e4f0cb",
                        "textsrc": "MarisolSandoval71:0:1cdf18",
                        "widthsrc": "MarisolSandoval71:0:404534",
                        "hoverinfo": "text",
                        "showlegend": false,
                        "orientation": "v",
                        "textposition": "none"
                    },
                    {
                        "base": 12.55,
                        "text": "n: 122<br />reorder(palabra, n): montaña<br />n: 122",
                        "type": "bar",
                        "xsrc": "MarisolSandoval71:0:6185e2",
                        "ysrc": "MarisolSandoval71:0:eca280",
                        "frame": null,
                        "width": 122,
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "line": {
                                "color": "transparent",
                                "width": 1.8897637795275593
                            },
                            "color": "rgba(23,50,76,1)",
                            "autocolorscale": false
                        },
                        "hoverinfo": "text",
                        "showlegend": false,
                        "orientation": "v",
                        "textposition": "none"
                    },
                    {
                        "base": 13.55,
                        "text": "n: 127<br />reorder(palabra, n): pasionxmexico<br />n: 127",
                        "type": "bar",
                        "xsrc": "MarisolSandoval71:0:77fbab",
                        "ysrc": "MarisolSandoval71:0:6fff86",
                        "frame": null,
                        "width": 127,
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "line": {
                                "color": "transparent",
                                "width": 1.8897637795275593
                            },
                            "color": "rgba(24,52,79,1)",
                            "autocolorscale": false
                        },
                        "hoverinfo": "text",
                        "showlegend": false,
                        "orientation": "v",
                        "textposition": "none"
                    },
                    {
                        "base": 14.55,
                        "text": "n: 181<br />reorder(palabra, n): descubremexico<br />n: 181",
                        "type": "bar",
                        "xsrc": "MarisolSandoval71:0:d5a184",
                        "ysrc": "MarisolSandoval71:0:b0d7b2",
                        "frame": null,
                        "width": 181,
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "line": {
                                "color": "transparent",
                                "width": 1.8897637795275593
                            },
                            "color": "rgba(35,74,109,1)",
                            "autocolorscale": false
                        },
                        "hoverinfo": "text",
                        "showlegend": false,
                        "orientation": "v",
                        "textposition": "none"
                    },
                    {
                        "base": 15.55,
                        "text": "n: 199<br />reorder(palabra, n): exploremexico<br />n: 199",
                        "type": "bar",
                        "xsrc": "MarisolSandoval71:0:9c8d35",
                        "ysrc": "MarisolSandoval71:0:591ea2",
                        "frame": null,
                        "width": 199,
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "line": {
                                "color": "transparent",
                                "width": 1.8897637795275593
                            },
                            "color": "rgba(39,82,119,1)",
                            "autocolorscale": false
                        },
                        "hoverinfo": "text",
                        "showlegend": false,
                        "orientation": "v",
                        "textposition": "none"
                    },
                    {
                        "base": 16.55,
                        "text": "n: 220<br />reorder(palabra, n): capturanuevoleon<br />n: 220",
                        "type": "bar",
                        "xsrc": "MarisolSandoval71:0:22be39",
                        "ysrc": "MarisolSandoval71:0:a3d20e",
                        "frame": null,
                        "width": 220,
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "line": {
                                "color": "transparent",
                                "width": 1.8897637795275593
                            },
                            "color": "rgba(43,91,131,1)",
                            "autocolorscale": false
                        },
                        "hoverinfo": "text",
                        "showlegend": false,
                        "orientation": "v",
                        "textposition": "none"
                    },
                    {
                        "base": 17.55,
                        "text": "n: 279<br />reorder(palabra, n): postalesdenl<br />n: 279",
                        "type": "bar",
                        "xsrc": "MarisolSandoval71:0:31105f",
                        "ysrc": "MarisolSandoval71:0:2e73bf",
                        "frame": null,
                        "width": 279,
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "line": {
                                "color": "transparent",
                                "width": 1.8897637795275593
                            },
                            "color": "rgba(56,117,167,1)",
                            "autocolorscale": false
                        },
                        "hoverinfo": "text",
                        "showlegend": false,
                        "orientation": "v",
                        "textposition": "none"
                    },
                    {
                        "base": 18.55,
                        "text": "n: 306<br />reorder(palabra, n): vivesanpedro<br />n: 306",
                        "type": "bar",
                        "xsrc": "MarisolSandoval71:0:1a2619",
                        "ysrc": "MarisolSandoval71:0:c354e6",
                        "frame": null,
                        "width": 306,
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "line": {
                                "color": "transparent",
                                "width": 1.8897637795275593
                            },
                            "color": "rgba(63,130,183,1)",
                            "autocolorscale": false
                        },
                        "hoverinfo": "text",
                        "showlegend": false,
                        "orientation": "v",
                        "textposition": "none"
                    },
                    {
                        "base": 19.55,
                        "text": "n: 405<br />reorder(palabra, n): nuevoleon<br />n: 405",
                        "type": "bar",
                        "xsrc": "MarisolSandoval71:0:5a501a",
                        "ysrc": "MarisolSandoval71:0:c0cbe5",
                        "frame": null,
                        "width": 405,
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "line": {
                                "color": "transparent",
                                "width": 1.8897637795275593
                            },
                            "color": "rgba(86,177,247,1)",
                            "autocolorscale": false
                        },
                        "hoverinfo": "text",
                        "showlegend": false,
                        "orientation": "v",
                        "textposition": "none"
                    },
                    {
                        "mode": "markers",
                        "name": "e30f08d882432725e6bc1547f58545b3",
                        "type": "scatter",
                        "xsrc": "MarisolSandoval71:0:4203d5",
                        "ysrc": "MarisolSandoval71:0:df2af7",
                        "frame": null,
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "colorbar": {
                                "len": 0.5,
                                "title": "n",
                                "bgcolor": "rgba(255,255,255,1)",
                                "ticklen": 2,
                                "tickfont": {
                                    "size": 11.689497716894978,
                                    "color": "rgba(0,0,0,1)",
                                    "family": ""
                                },
                                "tickmode": "array",
                                "thickness": 23.040000000000003,
                                "titlefont": {
                                    "size": 14.611872146118724,
                                    "color": "rgba(0,0,0,1)",
                                    "family": ""
                                },
                                "bordercolor": "transparent",
                                "borderwidth": 1.8897637795275593,
                                "ticktextsrc": "MarisolSandoval71:0:1b1287",
                                "tickvalssrc": "MarisolSandoval71:0:fb9ba1"
                            },
                            "colorsrc": "MarisolSandoval71:0:97413d",
                            "colorscale": [
                                [
                                    0,
                                    "#132B43"
                                ],
                                [
                                    0.003344481605351184,
                                    "#132B44"
                                ],
                                [
                                    0.00668896321070232,
                                    "#132C44"
                                ],
                                [
                                    0.010033444816053505,
                                    "#142C45"
                                ],
                                [
                                    0.013377926421404689,
                                    "#142D45"
                                ],
                                [
                                    0.016722408026755873,
                                    "#142D46"
                                ],
                                [
                                    0.02006688963210701,
                                    "#142D46"
                                ],
                                [
                                    0.023411371237458192,
                                    "#142E47"
                                ],
                                [
                                    0.026755852842809378,
                                    "#152E47"
                                ],
                                [
                                    0.03010033444816056,
                                    "#152F48"
                                ],
                                [
                                    0.0334448160535117,
                                    "#152F48"
                                ],
                                [
                                    0.03678929765886288,
                                    "#152F49"
                                ],
                                [
                                    0.04013377926421406,
                                    "#153049"
                                ],
                                [
                                    0.0434782608695652,
                                    "#16304A"
                                ],
                                [
                                    0.046822742474916385,
                                    "#16304A"
                                ],
                                [
                                    0.05016722408026757,
                                    "#16314B"
                                ],
                                [
                                    0.053511705685618756,
                                    "#16314B"
                                ],
                                [
                                    0.05685618729096989,
                                    "#16324C"
                                ],
                                [
                                    0.06020066889632107,
                                    "#17324D"
                                ],
                                [
                                    0.06354515050167225,
                                    "#17324D"
                                ],
                                [
                                    0.0668896321070234,
                                    "#17334E"
                                ],
                                [
                                    0.07023411371237458,
                                    "#17334E"
                                ],
                                [
                                    0.07357859531772576,
                                    "#17344F"
                                ],
                                [
                                    0.07692307692307694,
                                    "#18344F"
                                ],
                                [
                                    0.08026755852842812,
                                    "#183450"
                                ],
                                [
                                    0.08361204013377922,
                                    "#183550"
                                ],
                                [
                                    0.0869565217391304,
                                    "#183551"
                                ],
                                [
                                    0.09030100334448159,
                                    "#183651"
                                ],
                                [
                                    0.09364548494983277,
                                    "#193652"
                                ],
                                [
                                    0.09698996655518395,
                                    "#193652"
                                ],
                                [
                                    0.10033444816053513,
                                    "#193753"
                                ],
                                [
                                    0.10367892976588632,
                                    "#193754"
                                ],
                                [
                                    0.10702341137123751,
                                    "#193854"
                                ],
                                [
                                    0.1103678929765886,
                                    "#1A3855"
                                ],
                                [
                                    0.11371237458193978,
                                    "#1A3955"
                                ],
                                [
                                    0.11705685618729096,
                                    "#1A3956"
                                ],
                                [
                                    0.12040133779264214,
                                    "#1A3956"
                                ],
                                [
                                    0.12374581939799333,
                                    "#1A3A57"
                                ],
                                [
                                    0.1270903010033445,
                                    "#1B3A57"
                                ],
                                [
                                    0.1304347826086956,
                                    "#1B3B58"
                                ],
                                [
                                    0.1337792642140468,
                                    "#1B3B59"
                                ],
                                [
                                    0.13712374581939796,
                                    "#1B3B59"
                                ],
                                [
                                    0.14046822742474915,
                                    "#1C3C5A"
                                ],
                                [
                                    0.14381270903010035,
                                    "#1C3C5A"
                                ],
                                [
                                    0.14715719063545152,
                                    "#1C3D5B"
                                ],
                                [
                                    0.15050167224080271,
                                    "#1C3D5B"
                                ],
                                [
                                    0.15384615384615388,
                                    "#1C3D5C"
                                ],
                                [
                                    0.15719063545150508,
                                    "#1D3E5C"
                                ],
                                [
                                    0.16053511705685616,
                                    "#1D3E5D"
                                ],
                                [
                                    0.16387959866220736,
                                    "#1D3F5D"
                                ],
                                [
                                    0.16722408026755853,
                                    "#1D3F5E"
                                ],
                                [
                                    0.17056856187290972,
                                    "#1D3F5F"
                                ],
                                [
                                    0.1739130434782609,
                                    "#1E405F"
                                ],
                                [
                                    0.17725752508361198,
                                    "#1E4060"
                                ],
                                [
                                    0.18060200668896317,
                                    "#1E4160"
                                ],
                                [
                                    0.18394648829431434,
                                    "#1E4161"
                                ],
                                [
                                    0.18729096989966554,
                                    "#1E4261"
                                ],
                                [
                                    0.19063545150501673,
                                    "#1F4262"
                                ],
                                [
                                    0.1939799331103679,
                                    "#1F4263"
                                ],
                                [
                                    0.1973244147157191,
                                    "#1F4363"
                                ],
                                [
                                    0.20066889632107027,
                                    "#1F4364"
                                ],
                                [
                                    0.20401337792642146,
                                    "#1F4464"
                                ],
                                [
                                    0.20735785953177255,
                                    "#204465"
                                ],
                                [
                                    0.21070234113712374,
                                    "#204465"
                                ],
                                [
                                    0.2140468227424749,
                                    "#204566"
                                ],
                                [
                                    0.2173913043478261,
                                    "#204566"
                                ],
                                [
                                    0.2207357859531772,
                                    "#214667"
                                ],
                                [
                                    0.22408026755852836,
                                    "#214668"
                                ],
                                [
                                    0.22742474916387956,
                                    "#214768"
                                ],
                                [
                                    0.23076923076923073,
                                    "#214769"
                                ],
                                [
                                    0.23411371237458192,
                                    "#214769"
                                ],
                                [
                                    0.23745819397993312,
                                    "#22486A"
                                ],
                                [
                                    0.2408026755852843,
                                    "#22486A"
                                ],
                                [
                                    0.24414715719063548,
                                    "#22496B"
                                ],
                                [
                                    0.24749163879598665,
                                    "#22496C"
                                ],
                                [
                                    0.25083612040133785,
                                    "#224A6C"
                                ],
                                [
                                    0.254180602006689,
                                    "#234A6D"
                                ],
                                [
                                    0.25752508361204013,
                                    "#234A6D"
                                ],
                                [
                                    0.2608695652173913,
                                    "#234B6E"
                                ],
                                [
                                    0.26421404682274247,
                                    "#234B6E"
                                ],
                                [
                                    0.2675585284280937,
                                    "#244C6F"
                                ],
                                [
                                    0.27090301003344475,
                                    "#244C70"
                                ],
                                [
                                    0.2742474916387959,
                                    "#244C70"
                                ],
                                [
                                    0.27759197324414714,
                                    "#244D71"
                                ],
                                [
                                    0.2809364548494983,
                                    "#244D71"
                                ],
                                [
                                    0.2842809364548495,
                                    "#254E72"
                                ],
                                [
                                    0.2876254180602007,
                                    "#254E72"
                                ],
                                [
                                    0.29096989966555187,
                                    "#254F73"
                                ],
                                [
                                    0.29431438127090304,
                                    "#254F74"
                                ],
                                [
                                    0.2976588628762542,
                                    "#254F74"
                                ],
                                [
                                    0.30100334448160543,
                                    "#265075"
                                ],
                                [
                                    0.3043478260869565,
                                    "#265075"
                                ],
                                [
                                    0.3076923076923077,
                                    "#265176"
                                ],
                                [
                                    0.3110367892976589,
                                    "#265176"
                                ],
                                [
                                    0.31438127090301005,
                                    "#275277"
                                ],
                                [
                                    0.31772575250836116,
                                    "#275278"
                                ],
                                [
                                    0.3210702341137123,
                                    "#275278"
                                ],
                                [
                                    0.3244147157190635,
                                    "#275379"
                                ],
                                [
                                    0.3277591973244147,
                                    "#275379"
                                ],
                                [
                                    0.3311036789297659,
                                    "#28547A"
                                ],
                                [
                                    0.33444816053511706,
                                    "#28547B"
                                ],
                                [
                                    0.3377926421404682,
                                    "#28557B"
                                ],
                                [
                                    0.34113712374581945,
                                    "#28557C"
                                ],
                                [
                                    0.3444816053511706,
                                    "#28567C"
                                ],
                                [
                                    0.3478260869565218,
                                    "#29567D"
                                ],
                                [
                                    0.3511705685618729,
                                    "#29567D"
                                ],
                                [
                                    0.35451505016722407,
                                    "#29577E"
                                ],
                                [
                                    0.35785953177257523,
                                    "#29577F"
                                ],
                                [
                                    0.36120401337792646,
                                    "#2A587F"
                                ],
                                [
                                    0.3645484949832775,
                                    "#2A5880"
                                ],
                                [
                                    0.3678929765886287,
                                    "#2A5980"
                                ],
                                [
                                    0.3712374581939799,
                                    "#2A5981"
                                ],
                                [
                                    0.3745819397993311,
                                    "#2A5982"
                                ],
                                [
                                    0.37792642140468224,
                                    "#2B5A82"
                                ],
                                [
                                    0.38127090301003347,
                                    "#2B5A83"
                                ],
                                [
                                    0.38461538461538464,
                                    "#2B5B83"
                                ],
                                [
                                    0.3879598662207358,
                                    "#2B5B84"
                                ],
                                [
                                    0.391304347826087,
                                    "#2C5C85"
                                ],
                                [
                                    0.3946488294314382,
                                    "#2C5C85"
                                ],
                                [
                                    0.39799331103678937,
                                    "#2C5D86"
                                ],
                                [
                                    0.4013377926421405,
                                    "#2C5D86"
                                ],
                                [
                                    0.40468227424749165,
                                    "#2C5D87"
                                ],
                                [
                                    0.4080267558528428,
                                    "#2D5E87"
                                ],
                                [
                                    0.41137123745819393,
                                    "#2D5E88"
                                ],
                                [
                                    0.4147157190635451,
                                    "#2D5F89"
                                ],
                                [
                                    0.41806020066889626,
                                    "#2D5F89"
                                ],
                                [
                                    0.4214046822742475,
                                    "#2E608A"
                                ],
                                [
                                    0.42474916387959866,
                                    "#2E608A"
                                ],
                                [
                                    0.4280936454849498,
                                    "#2E618B"
                                ],
                                [
                                    0.431438127090301,
                                    "#2E618C"
                                ],
                                [
                                    0.4347826086956522,
                                    "#2E618C"
                                ],
                                [
                                    0.4381270903010034,
                                    "#2F628D"
                                ],
                                [
                                    0.4414715719063545,
                                    "#2F628D"
                                ],
                                [
                                    0.44481605351170567,
                                    "#2F638E"
                                ],
                                [
                                    0.44816053511705684,
                                    "#2F638F"
                                ],
                                [
                                    0.451505016722408,
                                    "#30648F"
                                ],
                                [
                                    0.4548494983277592,
                                    "#306490"
                                ],
                                [
                                    0.4581939799331104,
                                    "#306590"
                                ],
                                [
                                    0.46153846153846156,
                                    "#306591"
                                ],
                                [
                                    0.4648829431438127,
                                    "#306592"
                                ],
                                [
                                    0.46822742474916385,
                                    "#316692"
                                ],
                                [
                                    0.471571906354515,
                                    "#316693"
                                ],
                                [
                                    0.47491638795986624,
                                    "#316793"
                                ],
                                [
                                    0.4782608695652174,
                                    "#316794"
                                ],
                                [
                                    0.4816053511705686,
                                    "#326895"
                                ],
                                [
                                    0.48494983277591974,
                                    "#326895"
                                ],
                                [
                                    0.48829431438127086,
                                    "#326996"
                                ],
                                [
                                    0.491638795986622,
                                    "#326996"
                                ],
                                [
                                    0.49498327759197325,
                                    "#326997"
                                ],
                                [
                                    0.4983277591973244,
                                    "#336A98"
                                ],
                                [
                                    0.5016722408026756,
                                    "#336A98"
                                ],
                                [
                                    0.5050167224080266,
                                    "#336B99"
                                ],
                                [
                                    0.508361204013378,
                                    "#336B99"
                                ],
                                [
                                    0.5117056856187291,
                                    "#346C9A"
                                ],
                                [
                                    0.5150501672240803,
                                    "#346C9B"
                                ],
                                [
                                    0.5183946488294314,
                                    "#346D9B"
                                ],
                                [
                                    0.5217391304347826,
                                    "#346D9C"
                                ],
                                [
                                    0.5250836120401338,
                                    "#346E9D"
                                ],
                                [
                                    0.5284280936454849,
                                    "#356E9D"
                                ],
                                [
                                    0.5317725752508361,
                                    "#356E9E"
                                ],
                                [
                                    0.5351170568561874,
                                    "#356F9E"
                                ],
                                [
                                    0.5384615384615385,
                                    "#356F9F"
                                ],
                                [
                                    0.5418060200668895,
                                    "#3670A0"
                                ],
                                [
                                    0.5451505016722409,
                                    "#3670A0"
                                ],
                                [
                                    0.5484949832775918,
                                    "#3671A1"
                                ],
                                [
                                    0.5518394648829432,
                                    "#3671A1"
                                ],
                                [
                                    0.5551839464882943,
                                    "#3772A2"
                                ],
                                [
                                    0.5585284280936457,
                                    "#3772A3"
                                ],
                                [
                                    0.5618729096989966,
                                    "#3773A3"
                                ],
                                [
                                    0.5652173913043478,
                                    "#3773A4"
                                ],
                                [
                                    0.568561872909699,
                                    "#3773A4"
                                ],
                                [
                                    0.5719063545150501,
                                    "#3874A5"
                                ],
                                [
                                    0.5752508361204014,
                                    "#3874A6"
                                ],
                                [
                                    0.5785953177257526,
                                    "#3875A6"
                                ],
                                [
                                    0.5819397993311037,
                                    "#3875A7"
                                ],
                                [
                                    0.5852842809364547,
                                    "#3976A8"
                                ],
                                [
                                    0.5886287625418061,
                                    "#3976A8"
                                ],
                                [
                                    0.5919732441471571,
                                    "#3977A9"
                                ],
                                [
                                    0.5953177257525084,
                                    "#3977A9"
                                ],
                                [
                                    0.5986622073578595,
                                    "#3978AA"
                                ],
                                [
                                    0.6020066889632109,
                                    "#3A78AB"
                                ],
                                [
                                    0.6053511705685618,
                                    "#3A79AB"
                                ],
                                [
                                    0.608695652173913,
                                    "#3A79AC"
                                ],
                                [
                                    0.6120401337792641,
                                    "#3A79AC"
                                ],
                                [
                                    0.6153846153846154,
                                    "#3B7AAD"
                                ],
                                [
                                    0.6187290969899666,
                                    "#3B7AAE"
                                ],
                                [
                                    0.6220735785953178,
                                    "#3B7BAE"
                                ],
                                [
                                    0.6254180602006689,
                                    "#3B7BAF"
                                ],
                                [
                                    0.6287625418060201,
                                    "#3C7CB0"
                                ],
                                [
                                    0.6321070234113713,
                                    "#3C7CB0"
                                ],
                                [
                                    0.6354515050167223,
                                    "#3C7DB1"
                                ],
                                [
                                    0.6387959866220737,
                                    "#3C7DB1"
                                ],
                                [
                                    0.6421404682274247,
                                    "#3C7EB2"
                                ],
                                [
                                    0.645484949832776,
                                    "#3D7EB3"
                                ],
                                [
                                    0.648829431438127,
                                    "#3D7FB3"
                                ],
                                [
                                    0.6521739130434784,
                                    "#3D7FB4"
                                ],
                                [
                                    0.6555183946488294,
                                    "#3D7FB5"
                                ],
                                [
                                    0.6588628762541806,
                                    "#3E80B5"
                                ],
                                [
                                    0.6622073578595318,
                                    "#3E80B6"
                                ],
                                [
                                    0.6655518394648829,
                                    "#3E81B6"
                                ],
                                [
                                    0.6688963210702341,
                                    "#3E81B7"
                                ],
                                [
                                    0.6722408026755853,
                                    "#3F82B8"
                                ],
                                [
                                    0.6755852842809364,
                                    "#3F82B8"
                                ],
                                [
                                    0.6789297658862875,
                                    "#3F83B9"
                                ],
                                [
                                    0.6822742474916389,
                                    "#3F83BA"
                                ],
                                [
                                    0.6856187290969898,
                                    "#4084BA"
                                ],
                                [
                                    0.6889632107023412,
                                    "#4084BB"
                                ],
                                [
                                    0.6923076923076922,
                                    "#4085BB"
                                ],
                                [
                                    0.6956521739130436,
                                    "#4085BC"
                                ],
                                [
                                    0.6989966555183946,
                                    "#4086BD"
                                ],
                                [
                                    0.7023411371237458,
                                    "#4186BD"
                                ],
                                [
                                    0.705685618729097,
                                    "#4186BE"
                                ],
                                [
                                    0.7090301003344481,
                                    "#4187BF"
                                ],
                                [
                                    0.7123745819397993,
                                    "#4187BF"
                                ],
                                [
                                    0.7157190635451505,
                                    "#4288C0"
                                ],
                                [
                                    0.7190635451505016,
                                    "#4288C1"
                                ],
                                [
                                    0.7224080267558529,
                                    "#4289C1"
                                ],
                                [
                                    0.7257525083612041,
                                    "#4289C2"
                                ],
                                [
                                    0.729096989966555,
                                    "#438AC2"
                                ],
                                [
                                    0.7324414715719064,
                                    "#438AC3"
                                ],
                                [
                                    0.7357859531772574,
                                    "#438BC4"
                                ],
                                [
                                    0.7391304347826088,
                                    "#438BC4"
                                ],
                                [
                                    0.7424749163879598,
                                    "#438CC5"
                                ],
                                [
                                    0.7458193979933112,
                                    "#448CC6"
                                ],
                                [
                                    0.7491638795986622,
                                    "#448DC6"
                                ],
                                [
                                    0.7525083612040133,
                                    "#448DC7"
                                ],
                                [
                                    0.7558528428093645,
                                    "#448EC8"
                                ],
                                [
                                    0.7591973244147157,
                                    "#458EC8"
                                ],
                                [
                                    0.7625418060200669,
                                    "#458FC9"
                                ],
                                [
                                    0.7658862876254181,
                                    "#458FC9"
                                ],
                                [
                                    0.7692307692307693,
                                    "#458FCA"
                                ],
                                [
                                    0.7725752508361204,
                                    "#4690CB"
                                ],
                                [
                                    0.7759197324414716,
                                    "#4690CB"
                                ],
                                [
                                    0.7792642140468227,
                                    "#4691CC"
                                ],
                                [
                                    0.782608695652174,
                                    "#4691CD"
                                ],
                                [
                                    0.785953177257525,
                                    "#4792CD"
                                ],
                                [
                                    0.7892976588628764,
                                    "#4792CE"
                                ],
                                [
                                    0.7926421404682273,
                                    "#4793CF"
                                ],
                                [
                                    0.7959866220735787,
                                    "#4793CF"
                                ],
                                [
                                    0.7993311036789297,
                                    "#4894D0"
                                ],
                                [
                                    0.802675585284281,
                                    "#4894D0"
                                ],
                                [
                                    0.8060200668896321,
                                    "#4895D1"
                                ],
                                [
                                    0.8093645484949833,
                                    "#4895D2"
                                ],
                                [
                                    0.8127090301003345,
                                    "#4896D2"
                                ],
                                [
                                    0.8160535117056856,
                                    "#4996D3"
                                ],
                                [
                                    0.8193979933110368,
                                    "#4997D4"
                                ],
                                [
                                    0.8227424749163879,
                                    "#4997D4"
                                ],
                                [
                                    0.8260869565217392,
                                    "#4998D5"
                                ],
                                [
                                    0.8294314381270902,
                                    "#4A98D6"
                                ],
                                [
                                    0.8327759197324416,
                                    "#4A99D6"
                                ],
                                [
                                    0.8361204013377925,
                                    "#4A99D7"
                                ],
                                [
                                    0.8394648829431439,
                                    "#4A9AD8"
                                ],
                                [
                                    0.842809364548495,
                                    "#4B9AD8"
                                ],
                                [
                                    0.8461538461538461,
                                    "#4B9BD9"
                                ],
                                [
                                    0.8494983277591973,
                                    "#4B9BDA"
                                ],
                                [
                                    0.8528428093645485,
                                    "#4B9BDA"
                                ],
                                [
                                    0.8561872909698997,
                                    "#4C9CDB"
                                ],
                                [
                                    0.8595317725752508,
                                    "#4C9CDB"
                                ],
                                [
                                    0.862876254180602,
                                    "#4C9DDC"
                                ],
                                [
                                    0.8662207357859533,
                                    "#4C9DDD"
                                ],
                                [
                                    0.8695652173913044,
                                    "#4D9EDD"
                                ],
                                [
                                    0.8729096989966556,
                                    "#4D9EDE"
                                ],
                                [
                                    0.8762541806020068,
                                    "#4D9FDF"
                                ],
                                [
                                    0.8795986622073579,
                                    "#4D9FDF"
                                ],
                                [
                                    0.882943143812709,
                                    "#4DA0E0"
                                ],
                                [
                                    0.8862876254180602,
                                    "#4EA0E1"
                                ],
                                [
                                    0.8896321070234113,
                                    "#4EA1E1"
                                ],
                                [
                                    0.8929765886287625,
                                    "#4EA1E2"
                                ],
                                [
                                    0.8963210702341137,
                                    "#4EA2E3"
                                ],
                                [
                                    0.8996655518394648,
                                    "#4FA2E3"
                                ],
                                [
                                    0.903010033444816,
                                    "#4FA3E4"
                                ],
                                [
                                    0.9063545150501672,
                                    "#4FA3E5"
                                ],
                                [
                                    0.9096989966555185,
                                    "#4FA4E5"
                                ],
                                [
                                    0.9130434782608696,
                                    "#50A4E6"
                                ],
                                [
                                    0.9163879598662208,
                                    "#50A5E7"
                                ],
                                [
                                    0.919732441471572,
                                    "#50A5E7"
                                ],
                                [
                                    0.9230769230769231,
                                    "#50A6E8"
                                ],
                                [
                                    0.9264214046822743,
                                    "#51A6E8"
                                ],
                                [
                                    0.9297658862876254,
                                    "#51A7E9"
                                ],
                                [
                                    0.9331103678929765,
                                    "#51A7EA"
                                ],
                                [
                                    0.9364548494983277,
                                    "#51A8EA"
                                ],
                                [
                                    0.9397993311036789,
                                    "#52A8EB"
                                ],
                                [
                                    0.94314381270903,
                                    "#52A9EC"
                                ],
                                [
                                    0.9464882943143812,
                                    "#52A9EC"
                                ],
                                [
                                    0.9498327759197325,
                                    "#52AAED"
                                ],
                                [
                                    0.9531772575250836,
                                    "#53AAEE"
                                ],
                                [
                                    0.9565217391304348,
                                    "#53ABEE"
                                ],
                                [
                                    0.959866220735786,
                                    "#53ABEF"
                                ],
                                [
                                    0.9632107023411371,
                                    "#53ACF0"
                                ],
                                [
                                    0.9665551839464883,
                                    "#54ACF0"
                                ],
                                [
                                    0.9698996655518395,
                                    "#54ADF1"
                                ],
                                [
                                    0.9732441471571908,
                                    "#54ADF2"
                                ],
                                [
                                    0.9765886287625417,
                                    "#54AEF2"
                                ],
                                [
                                    0.9799331103678929,
                                    "#55AEF3"
                                ],
                                [
                                    0.983277591973244,
                                    "#55AFF4"
                                ],
                                [
                                    0.9866220735785952,
                                    "#55AFF4"
                                ],
                                [
                                    0.9899665551839465,
                                    "#55B0F5"
                                ],
                                [
                                    0.9933110367892977,
                                    "#56B0F6"
                                ],
                                [
                                    0.9966555183946488,
                                    "#56B1F6"
                                ],
                                [
                                    1,
                                    "#56B1F7"
                                ]
                            ]
                        },
                        "opacity": 0,
                        "hoverinfo": "skip",
                        "showlegend": false
                    }
                ],
                "layout": {
                    "font": {
                        "size": 14.611872146118724,
                        "color": "rgba(0,0,0,1)",
                        "family": ""
                    },
                    "xaxis": {
                        "type": "linear",
                        "range": [
                            -20.25,
                            425.25
                        ],
                        "ticks": "outside",
                        "title": {
                            "font": {
                                "size": 14.611872146118724,
                                "color": "rgba(0,0,0,1)",
                                "family": ""
                            },
                            "text": "n"
                        },
                        "anchor": "y",
                        "domain": [
                            0,
                            1
                        ],
                        "nticks": null,
                        "ticklen": 3.652968036529681,
                        "showgrid": true,
                        "showline": false,
                        "tickfont": {
                            "size": 11.689497716894978,
                            "color": "rgba(77,77,77,1)",
                            "family": ""
                        },
                        "tickmode": "array",
                        "ticktext": [
                            "0",
                            "100",
                            "200",
                            "300",
                            "400"
                        ],
                        "tickvals": [
                            0,
                            100,
                            200,
                            300,
                            400
                        ],
                        "zeroline": false,
                        "autorange": false,
                        "gridcolor": "rgba(255,255,255,1)",
                        "gridwidth": 0.66417600664176,
                        "linecolor": null,
                        "linewidth": 0,
                        "tickangle": 0,
                        "tickcolor": "rgba(51,51,51,1)",
                        "tickwidth": 0.66417600664176,
                        "automargin": true,
                        "hoverformat": ".2f",
                        "categoryarray": [
                            "0",
                            "100",
                            "200",
                            "300",
                            "400"
                        ],
                        "categoryorder": "array",
                        "showticklabels": true
                    },
                    "yaxis": {
                        "type": "linear",
                        "range": [
                            0.4,
                            20.6
                        ],
                        "ticks": "outside",
                        "title": {
                            "font": {
                                "size": 14.611872146118724,
                                "color": "rgba(0,0,0,1)",
                                "family": ""
                            },
                            "text": ""
                        },
                        "anchor": "x",
                        "domain": [
                            0,
                            1
                        ],
                        "nticks": null,
                        "ticklen": 3.652968036529681,
                        "showgrid": true,
                        "showline": false,
                        "tickfont": {
                            "size": 11.689497716894984,
                            "color": "rgba(77,77,77,1)",
                            "family": ""
                        },
                        "tickmode": "array",
                        "ticktext": [
                            "cerrodelasilla",
                            "visitmonterrey",
                            "colorphoto",
                            "turismo",
                            "ciudadelasmontañas",
                            "colorphotography",
                            "mty",
                            "hiking",
                            "sanpedro",
                            "cerro",
                            "montanhismo",
                            "vivemonterrey",
                            "montaña",
                            "pasionxmexico",
                            "descubremexico",
                            "exploremexico",
                            "capturanuevoleon",
                            "postalesdenl",
                            "vivesanpedro",
                            "nuevoleon"
                        ],
                        "tickvals": [
                            1,
                            2,
                            3,
                            4.000000000000001,
                            5,
                            6.000000000000001,
                            7,
                            8,
                            9,
                            10,
                            11,
                            12.000000000000002,
                            13,
                            14.000000000000002,
                            15,
                            16,
                            17,
                            18,
                            19,
                            20
                        ],
                        "zeroline": false,
                        "autorange": false,
                        "gridcolor": "rgba(255,255,255,1)",
                        "gridwidth": 0.66417600664176,
                        "linecolor": null,
                        "linewidth": 0,
                        "tickangle": 0,
                        "tickcolor": "rgba(51,51,51,1)",
                        "tickwidth": 0.66417600664176,
                        "automargin": true,
                        "hoverformat": ".2f",
                        "categoryarray": [
                            "cerrodelasilla",
                            "visitmonterrey",
                            "colorphoto",
                            "turismo",
                            "ciudadelasmontañas",
                            "colorphotography",
                            "mty",
                            "hiking",
                            "sanpedro",
                            "cerro",
                            "montanhismo",
                            "vivemonterrey",
                            "montaña",
                            "pasionxmexico",
                            "descubremexico",
                            "exploremexico",
                            "capturanuevoleon",
                            "postalesdenl",
                            "vivesanpedro",
                            "nuevoleon"
                        ],
                        "categoryorder": "array",
                        "showticklabels": true
                    },
                    "legend": {
                        "font": {
                            "size": 11.689497716894978,
                            "color": "rgba(0,0,0,1)",
                            "family": ""
                        },
                        "title": {
                            "font": {
                                "size": 14.611872146118724,
                                "color": "rgba(0,0,0,1)",
                                "family": ""
                            },
                            "text": "n"
                        },
                        "bgcolor": "rgba(255,255,255,1)",
                        "bordercolor": "transparent",
                        "borderwidth": 1.8897637795275593
                    },
                    "margin": {
                        "b": 42.77418799000604,
                        "l": 116.16438356164389,
                        "r": 7.305936073059362,
                        "t": 28.81985009046265
                    },
                    "shapes": [
                        {
                            "x0": 0,
                            "x1": 1,
                            "y0": 0,
                            "y1": 1,
                            "line": {
                                "color": null,
                                "width": 0,
                                "linetype": []
                            },
                            "type": "rect",
                            "xref": "paper",
                            "yref": "paper",
                            "fillcolor": null
                        }
                    ],
                    "barmode": "relative",
                    "hovermode": "closest",
                    "showlegend": false,
                    "plot_bgcolor": "rgba(235,235,235,1)",
                    "paper_bgcolor": "rgba(255,255,255,1)"
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~MarisolSandoval71",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/34.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": "2024-04-23 15:58:56",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "MarisolSandoval71",
                "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": "2024-04-23T16:19:26.268678Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~Debramirez/1.embed",
            "fid": "Debramirez:1",
            "filename": "igPlotly1",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/Debramirez/1/9_662D5CBK2USC50NYCXKG47KWCYZTSL.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/Debramirez/1/2_JIDQXPBGHVYU8EBGTZQXXMOA2FCR5E.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/Debramirez/1/8_6O21X2KYNKYO63VBN2ENLPDTFZXVT0.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/Debramirez/1/9_662D5CBK2USC50NYCXKG47KWCYZTSL.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/Debramirez:1",
                "plots": "https://api.plotly.com/v2/plots/Debramirez:1",
                "parent": "https://api.plotly.com/v2/folders/home?user=Debramirez"
            },
            "owner": "Debramirez",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 1,
            "web_url": "https://chart-studio.plotly.com/~Debramirez/1/",
            "world_readable": true,
            "date_modified": "2024-04-23T16:19:26.279Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~Debramirez/1/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "base": 0.55,
                        "text": "n: 104<br />reorder(palabra, n): cerrodelasilla<br />n: 104",
                        "type": "bar",
                        "xsrc": "Debramirez:0:ca6018",
                        "ysrc": "Debramirez:0:c8b628",
                        "frame": null,
                        "width": 104,
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "line": {
                                "color": "transparent",
                                "width": 1.8897637795275593
                            },
                            "color": "rgba(19,43,67,1)",
                            "autocolorscale": false
                        },
                        "hoverinfo": "text",
                        "showlegend": false,
                        "orientation": "v",
                        "textposition": "none"
                    },
                    {
                        "base": 1.55,
                        "text": "n: 107<br />reorder(palabra, n): visitmonterrey<br />n: 107",
                        "type": "bar",
                        "xsrc": "Debramirez:0:d38bdd",
                        "ysrc": "Debramirez:0:8b02dd",
                        "frame": null,
                        "width": 107,
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "line": {
                                "color": "transparent",
                                "width": 1.8897637795275593
                            },
                            "color": "rgba(20,44,69,1)",
                            "autocolorscale": false
                        },
                        "hoverinfo": "text",
                        "showlegend": false,
                        "orientation": "v",
                        "textposition": "none"
                    },
                    {
                        "base": 2.55,
                        "text": "n: 108<br />reorder(palabra, n): colorphoto<br />n: 108",
                        "type": "bar",
                        "xsrc": "Debramirez:0:f1aeba",
                        "ysrc": "Debramirez:0:189d06",
                        "frame": null,
                        "width": 108,
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "line": {
                                "color": "transparent",
                                "width": 1.8897637795275593
                            },
                            "color": "rgba(20,45,69,1)",
                            "autocolorscale": false
                        },
                        "hoverinfo": "text",
                        "showlegend": false,
                        "orientation": "v",
                        "textposition": "none"
                    },
                    {
                        "base": 3.55,
                        "text": "n: 109<br />reorder(palabra, n): turismo<br />n: 109",
                        "type": "bar",
                        "xsrc": "Debramirez:0:b0fcac",
                        "ysrc": "Debramirez:0:b08757",
                        "frame": null,
                        "width": 109,
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "line": {
                                "color": "transparent",
                                "width": 1.8897637795275593
                            },
                            "color": "rgba(20,45,70,1)",
                            "autocolorscale": false
                        },
                        "hoverinfo": "text",
                        "showlegend": false,
                        "orientation": "v",
                        "textposition": "none"
                    },
                    {
                        "type": "bar",
                        "xsrc": "Debramirez:0:d3d79c",
                        "ysrc": "Debramirez:0:88e7b8",
                        "frame": null,
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "line": {
                                "color": "transparent",
                                "width": 1.8897637795275593
                            },
                            "color": "rgba(20,45,70,1)",
                            "autocolorscale": false
                        },
                        "basesrc": "Debramirez:0:d2c48e",
                        "textsrc": "Debramirez:0:ee90fe",
                        "widthsrc": "Debramirez:0:38ae77",
                        "hoverinfo": "text",
                        "showlegend": false,
                        "orientation": "v",
                        "textposition": "none"
                    },
                    {
                        "base": 6.55,
                        "text": "n: 116<br />reorder(palabra, n): mty<br />n: 116",
                        "type": "bar",
                        "xsrc": "Debramirez:0:e45bb7",
                        "ysrc": "Debramirez:0:ab708b",
                        "frame": null,
                        "width": 116,
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "line": {
                                "color": "transparent",
                                "width": 1.8897637795275593
                            },
                            "color": "rgba(21,48,73,1)",
                            "autocolorscale": false
                        },
                        "hoverinfo": "text",
                        "showlegend": false,
                        "orientation": "v",
                        "textposition": "none"
                    },
                    {
                        "base": 7.55,
                        "text": "n: 118<br />reorder(palabra, n): hiking<br />n: 118",
                        "type": "bar",
                        "xsrc": "Debramirez:0:be7219",
                        "ysrc": "Debramirez:0:88c5f4",
                        "frame": null,
                        "width": 118,
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "line": {
                                "color": "transparent",
                                "width": 1.8897637795275593
                            },
                            "color": "rgba(22,48,74,1)",
                            "autocolorscale": false
                        },
                        "hoverinfo": "text",
                        "showlegend": false,
                        "orientation": "v",
                        "textposition": "none"
                    },
                    {
                        "base": 8.55,
                        "text": "n: 119<br />reorder(palabra, n): sanpedro<br />n: 119",
                        "type": "bar",
                        "xsrc": "Debramirez:0:51ee89",
                        "ysrc": "Debramirez:0:8676b0",
                        "frame": null,
                        "width": 119,
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "line": {
                                "color": "transparent",
                                "width": 1.8897637795275593
                            },
                            "color": "rgba(22,49,75,1)",
                            "autocolorscale": false
                        },
                        "hoverinfo": "text",
                        "showlegend": false,
                        "orientation": "v",
                        "textposition": "none"
                    },
                    {
                        "base": 9.55,
                        "text": "n: 120<br />reorder(palabra, n): cerro<br />n: 120",
                        "type": "bar",
                        "xsrc": "Debramirez:0:a2397b",
                        "ysrc": "Debramirez:0:779a86",
                        "frame": null,
                        "width": 120,
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "line": {
                                "color": "transparent",
                                "width": 1.8897637795275593
                            },
                            "color": "rgba(22,49,75,1)",
                            "autocolorscale": false
                        },
                        "hoverinfo": "text",
                        "showlegend": false,
                        "orientation": "v",
                        "textposition": "none"
                    },
                    {
                        "type": "bar",
                        "xsrc": "Debramirez:0:20f34f",
                        "ysrc": "Debramirez:0:e6b913",
                        "frame": null,
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "line": {
                                "color": "transparent",
                                "width": 1.8897637795275593
                            },
                            "color": "rgba(22,50,76,1)",
                            "autocolorscale": false
                        },
                        "basesrc": "Debramirez:0:6d4f98",
                        "textsrc": "Debramirez:0:41e5a3",
                        "widthsrc": "Debramirez:0:ac7b34",
                        "hoverinfo": "text",
                        "showlegend": false,
                        "orientation": "v",
                        "textposition": "none"
                    },
                    {
                        "base": 12.55,
                        "text": "n: 122<br />reorder(palabra, n): montaña<br />n: 122",
                        "type": "bar",
                        "xsrc": "Debramirez:0:189aad",
                        "ysrc": "Debramirez:0:ea6888",
                        "frame": null,
                        "width": 122,
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "line": {
                                "color": "transparent",
                                "width": 1.8897637795275593
                            },
                            "color": "rgba(23,50,76,1)",
                            "autocolorscale": false
                        },
                        "hoverinfo": "text",
                        "showlegend": false,
                        "orientation": "v",
                        "textposition": "none"
                    },
                    {
                        "base": 13.55,
                        "text": "n: 127<br />reorder(palabra, n): pasionxmexico<br />n: 127",
                        "type": "bar",
                        "xsrc": "Debramirez:0:05629f",
                        "ysrc": "Debramirez:0:740efe",
                        "frame": null,
                        "width": 127,
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "line": {
                                "color": "transparent",
                                "width": 1.8897637795275593
                            },
                            "color": "rgba(24,52,79,1)",
                            "autocolorscale": false
                        },
                        "hoverinfo": "text",
                        "showlegend": false,
                        "orientation": "v",
                        "textposition": "none"
                    },
                    {
                        "base": 14.55,
                        "text": "n: 181<br />reorder(palabra, n): descubremexico<br />n: 181",
                        "type": "bar",
                        "xsrc": "Debramirez:0:08cb1f",
                        "ysrc": "Debramirez:0:6446c9",
                        "frame": null,
                        "width": 181,
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "line": {
                                "color": "transparent",
                                "width": 1.8897637795275593
                            },
                            "color": "rgba(35,74,109,1)",
                            "autocolorscale": false
                        },
                        "hoverinfo": "text",
                        "showlegend": false,
                        "orientation": "v",
                        "textposition": "none"
                    },
                    {
                        "base": 15.55,
                        "text": "n: 199<br />reorder(palabra, n): exploremexico<br />n: 199",
                        "type": "bar",
                        "xsrc": "Debramirez:0:471499",
                        "ysrc": "Debramirez:0:d287a2",
                        "frame": null,
                        "width": 199,
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "line": {
                                "color": "transparent",
                                "width": 1.8897637795275593
                            },
                            "color": "rgba(39,82,119,1)",
                            "autocolorscale": false
                        },
                        "hoverinfo": "text",
                        "showlegend": false,
                        "orientation": "v",
                        "textposition": "none"
                    },
                    {
                        "base": 16.55,
                        "text": "n: 220<br />reorder(palabra, n): capturanuevoleon<br />n: 220",
                        "type": "bar",
                        "xsrc": "Debramirez:0:152ea5",
                        "ysrc": "Debramirez:0:ecab0f",
                        "frame": null,
                        "width": 220,
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "line": {
                                "color": "transparent",
                                "width": 1.8897637795275593
                            },
                            "color": "rgba(43,91,131,1)",
                            "autocolorscale": false
                        },
                        "hoverinfo": "text",
                        "showlegend": false,
                        "orientation": "v",
                        "textposition": "none"
                    },
                    {
                        "base": 17.55,
                        "text": "n: 279<br />reorder(palabra, n): postalesdenl<br />n: 279",
                        "type": "bar",
                        "xsrc": "Debramirez:0:87b444",
                        "ysrc": "Debramirez:0:f6370f",
                        "frame": null,
                        "width": 279,
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "line": {
                                "color": "transparent",
                                "width": 1.8897637795275593
                            },
                            "color": "rgba(56,117,167,1)",
                            "autocolorscale": false
                        },
                        "hoverinfo": "text",
                        "showlegend": false,
                        "orientation": "v",
                        "textposition": "none"
                    },
                    {
                        "base": 18.55,
                        "text": "n: 306<br />reorder(palabra, n): vivesanpedro<br />n: 306",
                        "type": "bar",
                        "xsrc": "Debramirez:0:b2d1d1",
                        "ysrc": "Debramirez:0:0cc075",
                        "frame": null,
                        "width": 306,
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "line": {
                                "color": "transparent",
                                "width": 1.8897637795275593
                            },
                            "color": "rgba(63,130,183,1)",
                            "autocolorscale": false
                        },
                        "hoverinfo": "text",
                        "showlegend": false,
                        "orientation": "v",
                        "textposition": "none"
                    },
                    {
                        "base": 19.55,
                        "text": "n: 405<br />reorder(palabra, n): nuevoleon<br />n: 405",
                        "type": "bar",
                        "xsrc": "Debramirez:0:1adba2",
                        "ysrc": "Debramirez:0:622687",
                        "frame": null,
                        "width": 405,
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "line": {
                                "color": "transparent",
                                "width": 1.8897637795275593
                            },
                            "color": "rgba(86,177,247,1)",
                            "autocolorscale": false
                        },
                        "hoverinfo": "text",
                        "showlegend": false,
                        "orientation": "v",
                        "textposition": "none"
                    },
                    {
                        "mode": "markers",
                        "name": "e30f08d882432725e6bc1547f58545b3",
                        "type": "scatter",
                        "xsrc": "Debramirez:0:1fd749",
                        "ysrc": "Debramirez:0:380795",
                        "frame": null,
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "colorbar": {
                                "len": 0.5,
                                "title": "n",
                                "bgcolor": "rgba(255,255,255,1)",
                                "ticklen": 2,
                                "tickfont": {
                                    "size": 11.689497716894984,
                                    "color": "rgba(0,0,0,1)",
                                    "family": ""
                                },
                                "tickmode": "array",
                                "thickness": 23.039999999999996,
                                "titlefont": {
                                    "size": 14.611872146118724,
                                    "color": "rgba(0,0,0,1)",
                                    "family": ""
                                },
                                "bordercolor": "transparent",
                                "borderwidth": 1.8897637795275593,
                                "ticktextsrc": "Debramirez:0:6234e7",
                                "tickvalssrc": "Debramirez:0:bee537"
                            },
                            "colorsrc": "Debramirez:0:ac43e4",
                            "colorscale": [
                                [
                                    0,
                                    "#132B43"
                                ],
                                [
                                    0.003344481605351184,
                                    "#132B44"
                                ],
                                [
                                    0.00668896321070232,
                                    "#132C44"
                                ],
                                [
                                    0.010033444816053505,
                                    "#142C45"
                                ],
                                [
                                    0.013377926421404689,
                                    "#142D45"
                                ],
                                [
                                    0.016722408026755873,
                                    "#142D46"
                                ],
                                [
                                    0.02006688963210701,
                                    "#142D46"
                                ],
                                [
                                    0.023411371237458192,
                                    "#142E47"
                                ],
                                [
                                    0.026755852842809378,
                                    "#152E47"
                                ],
                                [
                                    0.03010033444816056,
                                    "#152F48"
                                ],
                                [
                                    0.0334448160535117,
                                    "#152F48"
                                ],
                                [
                                    0.03678929765886288,
                                    "#152F49"
                                ],
                                [
                                    0.04013377926421406,
                                    "#153049"
                                ],
                                [
                                    0.0434782608695652,
                                    "#16304A"
                                ],
                                [
                                    0.046822742474916385,
                                    "#16304A"
                                ],
                                [
                                    0.05016722408026757,
                                    "#16314B"
                                ],
                                [
                                    0.053511705685618756,
                                    "#16314B"
                                ],
                                [
                                    0.05685618729096989,
                                    "#16324C"
                                ],
                                [
                                    0.06020066889632107,
                                    "#17324D"
                                ],
                                [
                                    0.06354515050167225,
                                    "#17324D"
                                ],
                                [
                                    0.0668896321070234,
                                    "#17334E"
                                ],
                                [
                                    0.07023411371237458,
                                    "#17334E"
                                ],
                                [
                                    0.07357859531772576,
                                    "#17344F"
                                ],
                                [
                                    0.07692307692307694,
                                    "#18344F"
                                ],
                                [
                                    0.08026755852842812,
                                    "#183450"
                                ],
                                [
                                    0.08361204013377922,
                                    "#183550"
                                ],
                                [
                                    0.0869565217391304,
                                    "#183551"
                                ],
                                [
                                    0.09030100334448159,
                                    "#183651"
                                ],
                                [
                                    0.09364548494983277,
                                    "#193652"
                                ],
                                [
                                    0.09698996655518395,
                                    "#193652"
                                ],
                                [
                                    0.10033444816053513,
                                    "#193753"
                                ],
                                [
                                    0.10367892976588632,
                                    "#193754"
                                ],
                                [
                                    0.10702341137123751,
                                    "#193854"
                                ],
                                [
                                    0.1103678929765886,
                                    "#1A3855"
                                ],
                                [
                                    0.11371237458193978,
                                    "#1A3955"
                                ],
                                [
                                    0.11705685618729096,
                                    "#1A3956"
                                ],
                                [
                                    0.12040133779264214,
                                    "#1A3956"
                                ],
                                [
                                    0.12374581939799333,
                                    "#1A3A57"
                                ],
                                [
                                    0.1270903010033445,
                                    "#1B3A57"
                                ],
                                [
                                    0.1304347826086956,
                                    "#1B3B58"
                                ],
                                [
                                    0.1337792642140468,
                                    "#1B3B59"
                                ],
                                [
                                    0.13712374581939796,
                                    "#1B3B59"
                                ],
                                [
                                    0.14046822742474915,
                                    "#1C3C5A"
                                ],
                                [
                                    0.14381270903010035,
                                    "#1C3C5A"
                                ],
                                [
                                    0.14715719063545152,
                                    "#1C3D5B"
                                ],
                                [
                                    0.15050167224080271,
                                    "#1C3D5B"
                                ],
                                [
                                    0.15384615384615388,
                                    "#1C3D5C"
                                ],
                                [
                                    0.15719063545150508,
                                    "#1D3E5C"
                                ],
                                [
                                    0.16053511705685616,
                                    "#1D3E5D"
                                ],
                                [
                                    0.16387959866220736,
                                    "#1D3F5D"
                                ],
                                [
                                    0.16722408026755853,
                                    "#1D3F5E"
                                ],
                                [
                                    0.17056856187290972,
                                    "#1D3F5F"
                                ],
                                [
                                    0.1739130434782609,
                                    "#1E405F"
                                ],
                                [
                                    0.17725752508361198,
                                    "#1E4060"
                                ],
                                [
                                    0.18060200668896317,
                                    "#1E4160"
                                ],
                                [
                                    0.18394648829431434,
                                    "#1E4161"
                                ],
                                [
                                    0.18729096989966554,
                                    "#1E4261"
                                ],
                                [
                                    0.19063545150501673,
                                    "#1F4262"
                                ],
                                [
                                    0.1939799331103679,
                                    "#1F4263"
                                ],
                                [
                                    0.1973244147157191,
                                    "#1F4363"
                                ],
                                [
                                    0.20066889632107027,
                                    "#1F4364"
                                ],
                                [
                                    0.20401337792642146,
                                    "#1F4464"
                                ],
                                [
                                    0.20735785953177255,
                                    "#204465"
                                ],
                                [
                                    0.21070234113712374,
                                    "#204465"
                                ],
                                [
                                    0.2140468227424749,
                                    "#204566"
                                ],
                                [
                                    0.2173913043478261,
                                    "#204566"
                                ],
                                [
                                    0.2207357859531772,
                                    "#214667"
                                ],
                                [
                                    0.22408026755852836,
                                    "#214668"
                                ],
                                [
                                    0.22742474916387956,
                                    "#214768"
                                ],
                                [
                                    0.23076923076923073,
                                    "#214769"
                                ],
                                [
                                    0.23411371237458192,
                                    "#214769"
                                ],
                                [
                                    0.23745819397993312,
                                    "#22486A"
                                ],
                                [
                                    0.2408026755852843,
                                    "#22486A"
                                ],
                                [
                                    0.24414715719063548,
                                    "#22496B"
                                ],
                                [
                                    0.24749163879598665,
                                    "#22496C"
                                ],
                                [
                                    0.25083612040133785,
                                    "#224A6C"
                                ],
                                [
                                    0.254180602006689,
                                    "#234A6D"
                                ],
                                [
                                    0.25752508361204013,
                                    "#234A6D"
                                ],
                                [
                                    0.2608695652173913,
                                    "#234B6E"
                                ],
                                [
                                    0.26421404682274247,
                                    "#234B6E"
                                ],
                                [
                                    0.2675585284280937,
                                    "#244C6F"
                                ],
                                [
                                    0.27090301003344475,
                                    "#244C70"
                                ],
                                [
                                    0.2742474916387959,
                                    "#244C70"
                                ],
                                [
                                    0.27759197324414714,
                                    "#244D71"
                                ],
                                [
                                    0.2809364548494983,
                                    "#244D71"
                                ],
                                [
                                    0.2842809364548495,
                                    "#254E72"
                                ],
                                [
                                    0.2876254180602007,
                                    "#254E72"
                                ],
                                [
                                    0.29096989966555187,
                                    "#254F73"
                                ],
                                [
                                    0.29431438127090304,
                                    "#254F74"
                                ],
                                [
                                    0.2976588628762542,
                                    "#254F74"
                                ],
                                [
                                    0.30100334448160543,
                                    "#265075"
                                ],
                                [
                                    0.3043478260869565,
                                    "#265075"
                                ],
                                [
                                    0.3076923076923077,
                                    "#265176"
                                ],
                                [
                                    0.3110367892976589,
                                    "#265176"
                                ],
                                [
                                    0.31438127090301005,
                                    "#275277"
                                ],
                                [
                                    0.31772575250836116,
                                    "#275278"
                                ],
                                [
                                    0.3210702341137123,
                                    "#275278"
                                ],
                                [
                                    0.3244147157190635,
                                    "#275379"
                                ],
                                [
                                    0.3277591973244147,
                                    "#275379"
                                ],
                                [
                                    0.3311036789297659,
                                    "#28547A"
                                ],
                                [
                                    0.33444816053511706,
                                    "#28547B"
                                ],
                                [
                                    0.3377926421404682,
                                    "#28557B"
                                ],
                                [
                                    0.34113712374581945,
                                    "#28557C"
                                ],
                                [
                                    0.3444816053511706,
                                    "#28567C"
                                ],
                                [
                                    0.3478260869565218,
                                    "#29567D"
                                ],
                                [
                                    0.3511705685618729,
                                    "#29567D"
                                ],
                                [
                                    0.35451505016722407,
                                    "#29577E"
                                ],
                                [
                                    0.35785953177257523,
                                    "#29577F"
                                ],
                                [
                                    0.36120401337792646,
                                    "#2A587F"
                                ],
                                [
                                    0.3645484949832775,
                                    "#2A5880"
                                ],
                                [
                                    0.3678929765886287,
                                    "#2A5980"
                                ],
                                [
                                    0.3712374581939799,
                                    "#2A5981"
                                ],
                                [
                                    0.3745819397993311,
                                    "#2A5982"
                                ],
                                [
                                    0.37792642140468224,
                                    "#2B5A82"
                                ],
                                [
                                    0.38127090301003347,
                                    "#2B5A83"
                                ],
                                [
                                    0.38461538461538464,
                                    "#2B5B83"
                                ],
                                [
                                    0.3879598662207358,
                                    "#2B5B84"
                                ],
                                [
                                    0.391304347826087,
                                    "#2C5C85"
                                ],
                                [
                                    0.3946488294314382,
                                    "#2C5C85"
                                ],
                                [
                                    0.39799331103678937,
                                    "#2C5D86"
                                ],
                                [
                                    0.4013377926421405,
                                    "#2C5D86"
                                ],
                                [
                                    0.40468227424749165,
                                    "#2C5D87"
                                ],
                                [
                                    0.4080267558528428,
                                    "#2D5E87"
                                ],
                                [
                                    0.41137123745819393,
                                    "#2D5E88"
                                ],
                                [
                                    0.4147157190635451,
                                    "#2D5F89"
                                ],
                                [
                                    0.41806020066889626,
                                    "#2D5F89"
                                ],
                                [
                                    0.4214046822742475,
                                    "#2E608A"
                                ],
                                [
                                    0.42474916387959866,
                                    "#2E608A"
                                ],
                                [
                                    0.4280936454849498,
                                    "#2E618B"
                                ],
                                [
                                    0.431438127090301,
                                    "#2E618C"
                                ],
                                [
                                    0.4347826086956522,
                                    "#2E618C"
                                ],
                                [
                                    0.4381270903010034,
                                    "#2F628D"
                                ],
                                [
                                    0.4414715719063545,
                                    "#2F628D"
                                ],
                                [
                                    0.44481605351170567,
                                    "#2F638E"
                                ],
                                [
                                    0.44816053511705684,
                                    "#2F638F"
                                ],
                                [
                                    0.451505016722408,
                                    "#30648F"
                                ],
                                [
                                    0.4548494983277592,
                                    "#306490"
                                ],
                                [
                                    0.4581939799331104,
                                    "#306590"
                                ],
                                [
                                    0.46153846153846156,
                                    "#306591"
                                ],
                                [
                                    0.4648829431438127,
                                    "#306592"
                                ],
                                [
                                    0.46822742474916385,
                                    "#316692"
                                ],
                                [
                                    0.471571906354515,
                                    "#316693"
                                ],
                                [
                                    0.47491638795986624,
                                    "#316793"
                                ],
                                [
                                    0.4782608695652174,
                                    "#316794"
                                ],
                                [
                                    0.4816053511705686,
                                    "#326895"
                                ],
                                [
                                    0.48494983277591974,
                                    "#326895"
                                ],
                                [
                                    0.48829431438127086,
                                    "#326996"
                                ],
                                [
                                    0.491638795986622,
                                    "#326996"
                                ],
                                [
                                    0.49498327759197325,
                                    "#326997"
                                ],
                                [
                                    0.4983277591973244,
                                    "#336A98"
                                ],
                                [
                                    0.5016722408026756,
                                    "#336A98"
                                ],
                                [
                                    0.5050167224080266,
                                    "#336B99"
                                ],
                                [
                                    0.508361204013378,
                                    "#336B99"
                                ],
                                [
                                    0.5117056856187291,
                                    "#346C9A"
                                ],
                                [
                                    0.5150501672240803,
                                    "#346C9B"
                                ],
                                [
                                    0.5183946488294314,
                                    "#346D9B"
                                ],
                                [
                                    0.5217391304347826,
                                    "#346D9C"
                                ],
                                [
                                    0.5250836120401338,
                                    "#346E9D"
                                ],
                                [
                                    0.5284280936454849,
                                    "#356E9D"
                                ],
                                [
                                    0.5317725752508361,
                                    "#356E9E"
                                ],
                                [
                                    0.5351170568561874,
                                    "#356F9E"
                                ],
                                [
                                    0.5384615384615385,
                                    "#356F9F"
                                ],
                                [
                                    0.5418060200668895,
                                    "#3670A0"
                                ],
                                [
                                    0.5451505016722409,
                                    "#3670A0"
                                ],
                                [
                                    0.5484949832775918,
                                    "#3671A1"
                                ],
                                [
                                    0.5518394648829432,
                                    "#3671A1"
                                ],
                                [
                                    0.5551839464882943,
                                    "#3772A2"
                                ],
                                [
                                    0.5585284280936457,
                                    "#3772A3"
                                ],
                                [
                                    0.5618729096989966,
                                    "#3773A3"
                                ],
                                [
                                    0.5652173913043478,
                                    "#3773A4"
                                ],
                                [
                                    0.568561872909699,
                                    "#3773A4"
                                ],
                                [
                                    0.5719063545150501,
                                    "#3874A5"
                                ],
                                [
                                    0.5752508361204014,
                                    "#3874A6"
                                ],
                                [
                                    0.5785953177257526,
                                    "#3875A6"
                                ],
                                [
                                    0.5819397993311037,
                                    "#3875A7"
                                ],
                                [
                                    0.5852842809364547,
                                    "#3976A8"
                                ],
                                [
                                    0.5886287625418061,
                                    "#3976A8"
                                ],
                                [
                                    0.5919732441471571,
                                    "#3977A9"
                                ],
                                [
                                    0.5953177257525084,
                                    "#3977A9"
                                ],
                                [
                                    0.5986622073578595,
                                    "#3978AA"
                                ],
                                [
                                    0.6020066889632109,
                                    "#3A78AB"
                                ],
                                [
                                    0.6053511705685618,
                                    "#3A79AB"
                                ],
                                [
                                    0.608695652173913,
                                    "#3A79AC"
                                ],
                                [
                                    0.6120401337792641,
                                    "#3A79AC"
                                ],
                                [
                                    0.6153846153846154,
                                    "#3B7AAD"
                                ],
                                [
                                    0.6187290969899666,
                                    "#3B7AAE"
                                ],
                                [
                                    0.6220735785953178,
                                    "#3B7BAE"
                                ],
                                [
                                    0.6254180602006689,
                                    "#3B7BAF"
                                ],
                                [
                                    0.6287625418060201,
                                    "#3C7CB0"
                                ],
                                [
                                    0.6321070234113713,
                                    "#3C7CB0"
                                ],
                                [
                                    0.6354515050167223,
                                    "#3C7DB1"
                                ],
                                [
                                    0.6387959866220737,
                                    "#3C7DB1"
                                ],
                                [
                                    0.6421404682274247,
                                    "#3C7EB2"
                                ],
                                [
                                    0.645484949832776,
                                    "#3D7EB3"
                                ],
                                [
                                    0.648829431438127,
                                    "#3D7FB3"
                                ],
                                [
                                    0.6521739130434784,
                                    "#3D7FB4"
                                ],
                                [
                                    0.6555183946488294,
                                    "#3D7FB5"
                                ],
                                [
                                    0.6588628762541806,
                                    "#3E80B5"
                                ],
                                [
                                    0.6622073578595318,
                                    "#3E80B6"
                                ],
                                [
                                    0.6655518394648829,
                                    "#3E81B6"
                                ],
                                [
                                    0.6688963210702341,
                                    "#3E81B7"
                                ],
                                [
                                    0.6722408026755853,
                                    "#3F82B8"
                                ],
                                [
                                    0.6755852842809364,
                                    "#3F82B8"
                                ],
                                [
                                    0.6789297658862875,
                                    "#3F83B9"
                                ],
                                [
                                    0.6822742474916389,
                                    "#3F83BA"
                                ],
                                [
                                    0.6856187290969898,
                                    "#4084BA"
                                ],
                                [
                                    0.6889632107023412,
                                    "#4084BB"
                                ],
                                [
                                    0.6923076923076922,
                                    "#4085BB"
                                ],
                                [
                                    0.6956521739130436,
                                    "#4085BC"
                                ],
                                [
                                    0.6989966555183946,
                                    "#4086BD"
                                ],
                                [
                                    0.7023411371237458,
                                    "#4186BD"
                                ],
                                [
                                    0.705685618729097,
                                    "#4186BE"
                                ],
                                [
                                    0.7090301003344481,
                                    "#4187BF"
                                ],
                                [
                                    0.7123745819397993,
                                    "#4187BF"
                                ],
                                [
                                    0.7157190635451505,
                                    "#4288C0"
                                ],
                                [
                                    0.7190635451505016,
                                    "#4288C1"
                                ],
                                [
                                    0.7224080267558529,
                                    "#4289C1"
                                ],
                                [
                                    0.7257525083612041,
                                    "#4289C2"
                                ],
                                [
                                    0.729096989966555,
                                    "#438AC2"
                                ],
                                [
                                    0.7324414715719064,
                                    "#438AC3"
                                ],
                                [
                                    0.7357859531772574,
                                    "#438BC4"
                                ],
                                [
                                    0.7391304347826088,
                                    "#438BC4"
                                ],
                                [
                                    0.7424749163879598,
                                    "#438CC5"
                                ],
                                [
                                    0.7458193979933112,
                                    "#448CC6"
                                ],
                                [
                                    0.7491638795986622,
                                    "#448DC6"
                                ],
                                [
                                    0.7525083612040133,
                                    "#448DC7"
                                ],
                                [
                                    0.7558528428093645,
                                    "#448EC8"
                                ],
                                [
                                    0.7591973244147157,
                                    "#458EC8"
                                ],
                                [
                                    0.7625418060200669,
                                    "#458FC9"
                                ],
                                [
                                    0.7658862876254181,
                                    "#458FC9"
                                ],
                                [
                                    0.7692307692307693,
                                    "#458FCA"
                                ],
                                [
                                    0.7725752508361204,
                                    "#4690CB"
                                ],
                                [
                                    0.7759197324414716,
                                    "#4690CB"
                                ],
                                [
                                    0.7792642140468227,
                                    "#4691CC"
                                ],
                                [
                                    0.782608695652174,
                                    "#4691CD"
                                ],
                                [
                                    0.785953177257525,
                                    "#4792CD"
                                ],
                                [
                                    0.7892976588628764,
                                    "#4792CE"
                                ],
                                [
                                    0.7926421404682273,
                                    "#4793CF"
                                ],
                                [
                                    0.7959866220735787,
                                    "#4793CF"
                                ],
                                [
                                    0.7993311036789297,
                                    "#4894D0"
                                ],
                                [
                                    0.802675585284281,
                                    "#4894D0"
                                ],
                                [
                                    0.8060200668896321,
                                    "#4895D1"
                                ],
                                [
                                    0.8093645484949833,
                                    "#4895D2"
                                ],
                                [
                                    0.8127090301003345,
                                    "#4896D2"
                                ],
                                [
                                    0.8160535117056856,
                                    "#4996D3"
                                ],
                                [
                                    0.8193979933110368,
                                    "#4997D4"
                                ],
                                [
                                    0.8227424749163879,
                                    "#4997D4"
                                ],
                                [
                                    0.8260869565217392,
                                    "#4998D5"
                                ],
                                [
                                    0.8294314381270902,
                                    "#4A98D6"
                                ],
                                [
                                    0.8327759197324416,
                                    "#4A99D6"
                                ],
                                [
                                    0.8361204013377925,
                                    "#4A99D7"
                                ],
                                [
                                    0.8394648829431439,
                                    "#4A9AD8"
                                ],
                                [
                                    0.842809364548495,
                                    "#4B9AD8"
                                ],
                                [
                                    0.8461538461538461,
                                    "#4B9BD9"
                                ],
                                [
                                    0.8494983277591973,
                                    "#4B9BDA"
                                ],
                                [
                                    0.8528428093645485,
                                    "#4B9BDA"
                                ],
                                [
                                    0.8561872909698997,
                                    "#4C9CDB"
                                ],
                                [
                                    0.8595317725752508,
                                    "#4C9CDB"
                                ],
                                [
                                    0.862876254180602,
                                    "#4C9DDC"
                                ],
                                [
                                    0.8662207357859533,
                                    "#4C9DDD"
                                ],
                                [
                                    0.8695652173913044,
                                    "#4D9EDD"
                                ],
                                [
                                    0.8729096989966556,
                                    "#4D9EDE"
                                ],
                                [
                                    0.8762541806020068,
                                    "#4D9FDF"
                                ],
                                [
                                    0.8795986622073579,
                                    "#4D9FDF"
                                ],
                                [
                                    0.882943143812709,
                                    "#4DA0E0"
                                ],
                                [
                                    0.8862876254180602,
                                    "#4EA0E1"
                                ],
                                [
                                    0.8896321070234113,
                                    "#4EA1E1"
                                ],
                                [
                                    0.8929765886287625,
                                    "#4EA1E2"
                                ],
                                [
                                    0.8963210702341137,
                                    "#4EA2E3"
                                ],
                                [
                                    0.8996655518394648,
                                    "#4FA2E3"
                                ],
                                [
                                    0.903010033444816,
                                    "#4FA3E4"
                                ],
                                [
                                    0.9063545150501672,
                                    "#4FA3E5"
                                ],
                                [
                                    0.9096989966555185,
                                    "#4FA4E5"
                                ],
                                [
                                    0.9130434782608696,
                                    "#50A4E6"
                                ],
                                [
                                    0.9163879598662208,
                                    "#50A5E7"
                                ],
                                [
                                    0.919732441471572,
                                    "#50A5E7"
                                ],
                                [
                                    0.9230769230769231,
                                    "#50A6E8"
                                ],
                                [
                                    0.9264214046822743,
                                    "#51A6E8"
                                ],
                                [
                                    0.9297658862876254,
                                    "#51A7E9"
                                ],
                                [
                                    0.9331103678929765,
                                    "#51A7EA"
                                ],
                                [
                                    0.9364548494983277,
                                    "#51A8EA"
                                ],
                                [
                                    0.9397993311036789,
                                    "#52A8EB"
                                ],
                                [
                                    0.94314381270903,
                                    "#52A9EC"
                                ],
                                [
                                    0.9464882943143812,
                                    "#52A9EC"
                                ],
                                [
                                    0.9498327759197325,
                                    "#52AAED"
                                ],
                                [
                                    0.9531772575250836,
                                    "#53AAEE"
                                ],
                                [
                                    0.9565217391304348,
                                    "#53ABEE"
                                ],
                                [
                                    0.959866220735786,
                                    "#53ABEF"
                                ],
                                [
                                    0.9632107023411371,
                                    "#53ACF0"
                                ],
                                [
                                    0.9665551839464883,
                                    "#54ACF0"
                                ],
                                [
                                    0.9698996655518395,
                                    "#54ADF1"
                                ],
                                [
                                    0.9732441471571908,
                                    "#54ADF2"
                                ],
                                [
                                    0.9765886287625417,
                                    "#54AEF2"
                                ],
                                [
                                    0.9799331103678929,
                                    "#55AEF3"
                                ],
                                [
                                    0.983277591973244,
                                    "#55AFF4"
                                ],
                                [
                                    0.9866220735785952,
                                    "#55AFF4"
                                ],
                                [
                                    0.9899665551839465,
                                    "#55B0F5"
                                ],
                                [
                                    0.9933110367892977,
                                    "#56B0F6"
                                ],
                                [
                                    0.9966555183946488,
                                    "#56B1F6"
                                ],
                                [
                                    1,
                                    "#56B1F7"
                                ]
                            ]
                        },
                        "opacity": 0,
                        "hoverinfo": "skip",
                        "showlegend": false
                    }
                ],
                "layout": {
                    "font": {
                        "size": 14.611872146118724,
                        "color": "rgba(0,0,0,1)",
                        "family": ""
                    },
                    "xaxis": {
                        "type": "linear",
                        "range": [
                            -20.25,
                            425.25
                        ],
                        "ticks": "outside",
                        "title": {
                            "font": {
                                "size": 14.611872146118724,
                                "color": "rgba(0,0,0,1)",
                                "family": ""
                            },
                            "text": "n"
                        },
                        "anchor": "y",
                        "domain": [
                            0,
                            1
                        ],
                        "nticks": null,
                        "ticklen": 3.652968036529681,
                        "showgrid": true,
                        "showline": false,
                        "tickfont": {
                            "size": 11.689497716894984,
                            "color": "rgba(77,77,77,1)",
                            "family": ""
                        },
                        "tickmode": "array",
                        "ticktext": [
                            "0",
                            "100",
                            "200",
                            "300",
                            "400"
                        ],
                        "tickvals": [
                            0,
                            100,
                            200,
                            300,
                            400
                        ],
                        "zeroline": false,
                        "autorange": false,
                        "gridcolor": "rgba(255,255,255,1)",
                        "gridwidth": 0.66417600664176,
                        "linecolor": null,
                        "linewidth": 0,
                        "tickangle": 0,
                        "tickcolor": "rgba(51,51,51,1)",
                        "tickwidth": 0.66417600664176,
                        "automargin": true,
                        "hoverformat": ".2f",
                        "categoryarray": [
                            "0",
                            "100",
                            "200",
                            "300",
                            "400"
                        ],
                        "categoryorder": "array",
                        "showticklabels": true
                    },
                    "yaxis": {
                        "type": "linear",
                        "range": [
                            0.4,
                            20.6
                        ],
                        "ticks": "outside",
                        "title": {
                            "font": {
                                "size": 14.611872146118724,
                                "color": "rgba(0,0,0,1)",
                                "family": ""
                            },
                            "text": ""
                        },
                        "anchor": "x",
                        "domain": [
                            0,
                            1
                        ],
                        "nticks": null,
                        "ticklen": 3.652968036529681,
                        "showgrid": true,
                        "showline": false,
                        "tickfont": {
                            "size": 11.68949771689498,
                            "color": "rgba(77,77,77,1)",
                            "family": ""
                        },
                        "tickmode": "array",
                        "ticktext": [
                            "cerrodelasilla",
                            "visitmonterrey",
                            "colorphoto",
                            "turismo",
                            "ciudadelasmontañas",
                            "colorphotography",
                            "mty",
                            "hiking",
                            "sanpedro",
                            "cerro",
                            "montanhismo",
                            "vivemonterrey",
                            "montaña",
                            "pasionxmexico",
                            "descubremexico",
                            "exploremexico",
                            "capturanuevoleon",
                            "postalesdenl",
                            "vivesanpedro",
                            "nuevoleon"
                        ],
                        "tickvals": [
                            1,
                            2,
                            3,
                            4.000000000000001,
                            5,
                            6.000000000000001,
                            7,
                            8,
                            9,
                            10,
                            11,
                            12.000000000000002,
                            13,
                            14.000000000000002,
                            15,
                            16,
                            17,
                            18,
                            19,
                            20
                        ],
                        "zeroline": false,
                        "autorange": false,
                        "gridcolor": "rgba(255,255,255,1)",
                        "gridwidth": 0.66417600664176,
                        "linecolor": null,
                        "linewidth": 0,
                        "tickangle": 0,
                        "tickcolor": "rgba(51,51,51,1)",
                        "tickwidth": 0.66417600664176,
                        "automargin": true,
                        "hoverformat": ".2f",
                        "categoryarray": [
                            "cerrodelasilla",
                            "visitmonterrey",
                            "colorphoto",
                            "turismo",
                            "ciudadelasmontañas",
                            "colorphotography",
                            "mty",
                            "hiking",
                            "sanpedro",
                            "cerro",
                            "montanhismo",
                            "vivemonterrey",
                            "montaña",
                            "pasionxmexico",
                            "descubremexico",
                            "exploremexico",
                            "capturanuevoleon",
                            "postalesdenl",
                            "vivesanpedro",
                            "nuevoleon"
                        ],
                        "categoryorder": "array",
                        "showticklabels": true
                    },
                    "legend": {
                        "font": {
                            "size": 11.689497716894984,
                            "color": "rgba(0,0,0,1)",
                            "family": ""
                        },
                        "title": {
                            "font": {
                                "size": 14.611872146118724,
                                "color": "rgba(0,0,0,1)",
                                "family": ""
                            },
                            "text": "n"
                        },
                        "bgcolor": "rgba(255,255,255,1)",
                        "bordercolor": "transparent",
                        "borderwidth": 1.8897637795275593
                    },
                    "margin": {
                        "b": 50.35349648555746,
                        "l": 116.16438356164386,
                        "r": 7.305936073059362,
                        "t": 36.39915858601407
                    },
                    "shapes": [
                        {
                            "x0": 0,
                            "x1": 1,
                            "y0": 0,
                            "y1": 1,
                            "line": {
                                "color": null,
                                "width": 0,
                                "linetype": []
                            },
                            "type": "rect",
                            "xref": "paper",
                            "yref": "paper",
                            "fillcolor": null
                        }
                    ],
                    "barmode": "relative",
                    "hovermode": "closest",
                    "showlegend": false,
                    "plot_bgcolor": "rgba(235,235,235,1)",
                    "paper_bgcolor": "rgba(255,255,255,1)"
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~Debramirez",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/5.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-4.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2024-04-23 15:44:24",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "Debramirez",
                "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": "2024-04-23T16:18:19.116082Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~Iruehlman/61.embed",
            "fid": "Iruehlman:61",
            "filename": "Plot 61",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/Iruehlman/61/9_OH13UMIMAZANX2PWJ8W85REZDJX2NG.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/Iruehlman/61/2_F5VICCWVOF972003MMEP2QJAMK0IQ4.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/Iruehlman/61/8_93TCMFK0LHEWZW6DOQGGS92QXONQQK.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/Iruehlman/61/9_OH13UMIMAZANX2PWJ8W85REZDJX2NG.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/Iruehlman:61",
                "plots": "https://api.plotly.com/v2/plots/Iruehlman:61",
                "parent": "https://api.plotly.com/v2/folders/home?user=Iruehlman"
            },
            "owner": "Iruehlman",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 1,
            "web_url": "https://chart-studio.plotly.com/~Iruehlman/61/",
            "world_readable": true,
            "date_modified": "2024-04-23T16:18:19.127Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~Iruehlman/61/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": false,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "meta": {
                            "columnNames": {
                                "x": "health",
                                "y": "acorn score"
                            }
                        },
                        "mode": "lines",
                        "type": "bar",
                        "xsrc": "Iruehlman:60:6c4a6b",
                        "ysrc": "Iruehlman:60:1ab2ed",
                        "stackgroup": 1,
                        "orientation": "v"
                    }
                ],
                "frames": [],
                "layout": {
                    "xaxis": {
                        "type": "category",
                        "range": [
                            -0.5,
                            5.5
                        ],
                        "autorange": false
                    },
                    "yaxis": {
                        "type": "linear",
                        "range": [
                            0,
                            1761.0526315789473
                        ],
                        "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/~Iruehlman",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/55.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": "2023-09-26 16:43:34",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "Iruehlman",
                "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": "2024-04-23T16:11:26.394642Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~m_cebral/82.embed",
            "fid": "m_cebral:82",
            "filename": "igPlotly1",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/m_cebral/82/9_G9RCP2SPDO61HGSFNB0UOTEYPA2PYO.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/m_cebral/82/2_EES2XH5M0KQ58T0P9STA33458LS741.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/m_cebral/82/8_95OLKQN7KJHA3SYQS1DGP12NTJO3OC.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/m_cebral/82/9_G9RCP2SPDO61HGSFNB0UOTEYPA2PYO.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/m_cebral:82",
                "plots": "https://api.plotly.com/v2/plots/m_cebral:82",
                "parent": "https://api.plotly.com/v2/folders/home?user=m_cebral"
            },
            "owner": "m_cebral",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 12,
            "web_url": "https://chart-studio.plotly.com/~m_cebral/82/",
            "world_readable": true,
            "date_modified": "2024-04-23T16:11:26.403Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~m_cebral/82/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "base": 0.55,
                        "text": "nuevoleon 349",
                        "type": "bar",
                        "xsrc": "m_cebral:81:c62ca5",
                        "ysrc": "m_cebral:81:48bd60",
                        "frame": null,
                        "width": 349,
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "line": {
                                "color": "transparent",
                                "width": 1.8897637795275593
                            },
                            "color": "rgba(19,43,67,1)",
                            "autocolorscale": false
                        },
                        "hoverinfo": "text",
                        "showlegend": false,
                        "orientation": "v",
                        "textposition": "none"
                    },
                    {
                        "base": 1.55,
                        "text": "vivemexico 377",
                        "type": "bar",
                        "xsrc": "m_cebral:81:675794",
                        "ysrc": "m_cebral:81:f03d0a",
                        "frame": null,
                        "width": 377,
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "line": {
                                "color": "transparent",
                                "width": 1.8897637795275593
                            },
                            "color": "rgba(20,46,71,1)",
                            "autocolorscale": false
                        },
                        "hoverinfo": "text",
                        "showlegend": false,
                        "orientation": "v",
                        "textposition": "none"
                    },
                    {
                        "base": 2.55,
                        "text": "sculturanl 390",
                        "type": "bar",
                        "xsrc": "m_cebral:81:3ff692",
                        "ysrc": "m_cebral:81:6c8319",
                        "frame": null,
                        "width": 390,
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "line": {
                                "color": "transparent",
                                "width": 1.8897637795275593
                            },
                            "color": "rgba(21,47,72,1)",
                            "autocolorscale": false
                        },
                        "hoverinfo": "text",
                        "showlegend": false,
                        "orientation": "v",
                        "textposition": "none"
                    },
                    {
                        "base": 3.55,
                        "text": "nuevoleonextraordinario 410",
                        "type": "bar",
                        "xsrc": "m_cebral:81:5e91f0",
                        "ysrc": "m_cebral:81:1fec67",
                        "frame": null,
                        "width": 410,
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "line": {
                                "color": "transparent",
                                "width": 1.8897637795275593
                            },
                            "color": "rgba(22,49,75,1)",
                            "autocolorscale": false
                        },
                        "hoverinfo": "text",
                        "showlegend": false,
                        "orientation": "v",
                        "textposition": "none"
                    },
                    {
                        "base": 4.55,
                        "text": "cultural 630",
                        "type": "bar",
                        "xsrc": "m_cebral:81:85191c",
                        "ysrc": "m_cebral:81:153316",
                        "frame": null,
                        "width": 630,
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "line": {
                                "color": "transparent",
                                "width": 1.8897637795275593
                            },
                            "color": "rgba(33,71,105,1)",
                            "autocolorscale": false
                        },
                        "hoverinfo": "text",
                        "showlegend": false,
                        "orientation": "v",
                        "textposition": "none"
                    },
                    {
                        "base": 5.55,
                        "text": "cultura 699",
                        "type": "bar",
                        "xsrc": "m_cebral:81:d9566f",
                        "ysrc": "m_cebral:81:f91eda",
                        "frame": null,
                        "width": 699,
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "line": {
                                "color": "transparent",
                                "width": 1.8897637795275593
                            },
                            "color": "rgba(37,79,115,1)",
                            "autocolorscale": false
                        },
                        "hoverinfo": "text",
                        "showlegend": false,
                        "orientation": "v",
                        "textposition": "none"
                    },
                    {
                        "base": 6.55,
                        "text": "monterrey 835",
                        "type": "bar",
                        "xsrc": "m_cebral:81:6d05cf",
                        "ysrc": "m_cebral:81:fd5c4c",
                        "frame": null,
                        "width": 835,
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "line": {
                                "color": "transparent",
                                "width": 1.8897637795275593
                            },
                            "color": "rgba(44,93,135,1)",
                            "autocolorscale": false
                        },
                        "hoverinfo": "text",
                        "showlegend": false,
                        "orientation": "v",
                        "textposition": "none"
                    },
                    {
                        "base": 7.55,
                        "text": "león 881",
                        "type": "bar",
                        "xsrc": "m_cebral:81:c9910c",
                        "ysrc": "m_cebral:81:cfcb1a",
                        "frame": null,
                        "width": 881,
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "line": {
                                "color": "transparent",
                                "width": 1.8897637795275593
                            },
                            "color": "rgba(47,98,142,1)",
                            "autocolorscale": false
                        },
                        "hoverinfo": "text",
                        "showlegend": false,
                        "orientation": "v",
                        "textposition": "none"
                    },
                    {
                        "base": 8.55,
                        "text": "vivenuevoleon 1096",
                        "type": "bar",
                        "xsrc": "m_cebral:81:297779",
                        "ysrc": "m_cebral:81:458712",
                        "frame": null,
                        "width": 1096,
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "line": {
                                "color": "transparent",
                                "width": 1.8897637795275593
                            },
                            "color": "rgba(59,123,174,1)",
                            "autocolorscale": false
                        },
                        "hoverinfo": "text",
                        "showlegend": false,
                        "orientation": "v",
                        "textposition": "none"
                    },
                    {
                        "base": 9.55,
                        "text": "culturanl 1552",
                        "type": "bar",
                        "xsrc": "m_cebral:81:860781",
                        "ysrc": "m_cebral:81:353cbd",
                        "frame": null,
                        "width": 1552,
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "line": {
                                "color": "transparent",
                                "width": 1.8897637795275593
                            },
                            "color": "rgba(86,177,247,1)",
                            "autocolorscale": false
                        },
                        "hoverinfo": "text",
                        "showlegend": false,
                        "orientation": "v",
                        "textposition": "none"
                    }
                ],
                "layout": {
                    "font": {
                        "size": 14.611872146118724,
                        "color": "rgba(0,0,0,1)",
                        "family": ""
                    },
                    "xaxis": {
                        "type": "linear",
                        "range": [
                            -77.60000000000001,
                            1629.6
                        ],
                        "ticks": "outside",
                        "title": {
                            "font": {
                                "size": 14.611872146118724,
                                "color": "rgba(0,0,0,1)",
                                "family": ""
                            },
                            "text": ""
                        },
                        "anchor": "y",
                        "domain": [
                            0,
                            1
                        ],
                        "nticks": null,
                        "ticklen": 3.652968036529681,
                        "showgrid": true,
                        "showline": false,
                        "tickfont": {
                            "size": 11.68949771689498,
                            "color": "rgba(77,77,77,1)",
                            "family": ""
                        },
                        "tickmode": "array",
                        "ticktext": [
                            "0",
                            "500",
                            "1000",
                            "1500"
                        ],
                        "tickvals": [
                            0,
                            500,
                            999.9999999999999,
                            1500
                        ],
                        "zeroline": false,
                        "autorange": false,
                        "gridcolor": "rgba(255,255,255,1)",
                        "gridwidth": 0.66417600664176,
                        "linecolor": null,
                        "linewidth": 0,
                        "tickangle": 0,
                        "tickcolor": "rgba(51,51,51,1)",
                        "tickwidth": 0.66417600664176,
                        "automargin": true,
                        "hoverformat": ".2f",
                        "categoryarray": [
                            "0",
                            "500",
                            "1000",
                            "1500"
                        ],
                        "categoryorder": "array",
                        "showticklabels": true
                    },
                    "yaxis": {
                        "type": "linear",
                        "range": [
                            0.4,
                            10.6
                        ],
                        "ticks": "outside",
                        "title": {
                            "font": {
                                "size": 14.611872146118724,
                                "color": "rgba(0,0,0,1)",
                                "family": ""
                            },
                            "text": ""
                        },
                        "anchor": "x",
                        "domain": [
                            0,
                            1
                        ],
                        "nticks": null,
                        "ticklen": 3.652968036529681,
                        "showgrid": true,
                        "showline": false,
                        "tickfont": {
                            "size": 11.68949771689498,
                            "color": "rgba(77,77,77,1)",
                            "family": ""
                        },
                        "tickmode": "array",
                        "ticktext": [
                            "nuevoleon",
                            "vivemexico",
                            "sculturanl",
                            "nuevoleonextraordinario",
                            "cultural",
                            "cultura",
                            "monterrey",
                            "león",
                            "vivenuevoleon",
                            "culturanl"
                        ],
                        "tickvals": [
                            1,
                            2,
                            3,
                            4,
                            5,
                            6.000000000000001,
                            7,
                            8,
                            9,
                            10
                        ],
                        "zeroline": false,
                        "autorange": false,
                        "gridcolor": "rgba(255,255,255,1)",
                        "gridwidth": 0.66417600664176,
                        "linecolor": null,
                        "linewidth": 0,
                        "tickangle": 0,
                        "tickcolor": "rgba(51,51,51,1)",
                        "tickwidth": 0.66417600664176,
                        "automargin": true,
                        "hoverformat": ".2f",
                        "categoryarray": [
                            "nuevoleon",
                            "vivemexico",
                            "sculturanl",
                            "nuevoleonextraordinario",
                            "cultural",
                            "cultura",
                            "monterrey",
                            "león",
                            "vivenuevoleon",
                            "culturanl"
                        ],
                        "categoryorder": "array",
                        "showticklabels": true
                    },
                    "legend": {
                        "font": {
                            "size": 11.68949771689498,
                            "color": "rgba(0,0,0,1)",
                            "family": ""
                        },
                        "title": {
                            "font": {
                                "size": 14.611872146118724,
                                "color": "rgba(0,0,0,1)",
                                "family": ""
                            },
                            "text": ""
                        },
                        "bgcolor": "rgba(255,255,255,1)",
                        "bordercolor": "transparent",
                        "borderwidth": 1.8897637795275593
                    },
                    "margin": {
                        "b": 30.950601909506027,
                        "l": 145.38812785388131,
                        "r": 7.305936073059362,
                        "t": 31.608136156081365
                    },
                    "shapes": [
                        {
                            "x0": 0,
                            "x1": 1,
                            "y0": 0,
                            "y1": 1,
                            "line": {
                                "color": null,
                                "width": 0,
                                "linetype": []
                            },
                            "type": "rect",
                            "xref": "paper",
                            "yref": "paper",
                            "fillcolor": null
                        }
                    ],
                    "barmode": "relative",
                    "hovermode": "closest",
                    "showlegend": false,
                    "plot_bgcolor": "rgba(235,235,235,1)",
                    "paper_bgcolor": "rgba(255,255,255,1)"
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~m_cebral",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/6.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-8.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2022-03-20 16:40:57",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "m_cebral",
                "email": null,
                "is_active": null,
                "readonly": null,
                "is_dash_creator": null,
                "dash_created_count": null,
                "is_chart_creator": null,
                "charts_created_count": null
            }
        }
    ]
}