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

{
    "next": "https://api.plot.ly/v2/plots?cursor=cD0yMDI0LTA0LTA0KzA5JTNBMTMlM0E0OS4xMTkwMTUlMkIwMCUzQTAw&format=api",
    "previous": "https://api.plot.ly/v2/plots?cursor=cj0xJnA9MjAyNC0wNC0wNCswOSUzQTQ5JTNBNTIuNzAwNzA4JTJCMDAlM0EwMA%3D%3D&format=api",
    "results": [
        {
            "creation_time": "2024-04-04T09:49:52.700708Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~jf383/14.embed",
            "fid": "jf383:14",
            "filename": "nobeads_4th_april",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/jf383/14/9_G5JPWXLPM2MJ475EZR5FRVBH7DRMFD.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/jf383/14/2_LG432N1KRBF5KIS937LOM1R6ML5VRQ.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/jf383/14/8_KWX4BQVTM5F63VV3EH7XNB4BAIF906.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/jf383/14/9_G5JPWXLPM2MJ475EZR5FRVBH7DRMFD.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/jf383:14",
                "plots": "https://api.plotly.com/v2/plots/jf383:14",
                "parent": "https://api.plotly.com/v2/folders/home?user=jf383"
            },
            "owner": "jf383",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 2,
            "web_url": "https://chart-studio.plotly.com/~jf383/14/",
            "world_readable": true,
            "date_modified": "2024-04-04T09:49:52.709Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~jf383/14/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "mode": "markers",
                        "name": "",
                        "type": "scattergl",
                        "xsrc": "jf383:13:5a9dff",
                        "ysrc": "jf383:13:fe3af5",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "symbol": "circle",
                            "colorsrc": "jf383:13:c8166b",
                            "coloraxis": "coloraxis"
                        },
                        "showlegend": false,
                        "legendgroup": "",
                        "customdatasrc": "jf383:13:a450c4",
                        "hovertemplate": "log2_subtraction=%{x}<br>log2_PSM_withg=%{y}<br>Entry Name=%{customdata[0]}<br>bins=%{marker.color}<extra></extra>"
                    }
                ],
                "layout": {
                    "xaxis": {
                        "title": {
                            "text": "log2_subtraction"
                        },
                        "anchor": "y",
                        "domain": [
                            0.0,
                            1.0
                        ]
                    },
                    "yaxis": {
                        "title": {
                            "text": "log2_PSM_withg"
                        },
                        "anchor": "x",
                        "domain": [
                            0.0,
                            1.0
                        ]
                    },
                    "legend": {
                        "tracegroupgap": 0
                    },
                    "margin": {
                        "t": 60
                    },
                    "shapes": [
                        {
                            "x0": -1,
                            "x1": 10,
                            "y0": 6.6,
                            "y1": 6.6,
                            "line": {
                                "dash": "dot",
                                "color": "black",
                                "width": 2
                            },
                            "type": "line"
                        }
                    ],
                    "template": {
                        "data": {
                            "bar": [
                                {
                                    "type": "bar",
                                    "marker": {
                                        "line": {
                                            "color": "#E5ECF6",
                                            "width": 0.5
                                        },
                                        "pattern": {
                                            "size": 10,
                                            "fillmode": "overlay",
                                            "solidity": 0.2
                                        }
                                    },
                                    "error_x": {
                                        "color": "#2a3f5f"
                                    },
                                    "error_y": {
                                        "color": "#2a3f5f"
                                    }
                                }
                            ],
                            "pie": [
                                {
                                    "type": "pie",
                                    "automargin": true
                                }
                            ],
                            "table": [
                                {
                                    "type": "table",
                                    "cells": {
                                        "fill": {
                                            "color": "#EBF0F8"
                                        },
                                        "line": {
                                            "color": "white"
                                        }
                                    },
                                    "header": {
                                        "fill": {
                                            "color": "#C8D4E3"
                                        },
                                        "line": {
                                            "color": "white"
                                        }
                                    }
                                }
                            ],
                            "carpet": [
                                {
                                    "type": "carpet",
                                    "aaxis": {
                                        "gridcolor": "white",
                                        "linecolor": "white",
                                        "endlinecolor": "#2a3f5f",
                                        "minorgridcolor": "white",
                                        "startlinecolor": "#2a3f5f"
                                    },
                                    "baxis": {
                                        "gridcolor": "white",
                                        "linecolor": "white",
                                        "endlinecolor": "#2a3f5f",
                                        "minorgridcolor": "white",
                                        "startlinecolor": "#2a3f5f"
                                    }
                                }
                            ],
                            "mesh3d": [
                                {
                                    "type": "mesh3d",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "contour": [
                                {
                                    "type": "contour",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "colorscale": [
                                        [
                                            0.0,
                                            "#0d0887"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#46039f"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#7201a8"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#9c179e"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#bd3786"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#d8576b"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#ed7953"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#fb9f3a"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#fdca26"
                                        ],
                                        [
                                            1.0,
                                            "#f0f921"
                                        ]
                                    ]
                                }
                            ],
                            "heatmap": [
                                {
                                    "type": "heatmap",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "colorscale": [
                                        [
                                            0.0,
                                            "#0d0887"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#46039f"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#7201a8"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#9c179e"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#bd3786"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#d8576b"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#ed7953"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#fb9f3a"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#fdca26"
                                        ],
                                        [
                                            1.0,
                                            "#f0f921"
                                        ]
                                    ]
                                }
                            ],
                            "scatter": [
                                {
                                    "type": "scatter",
                                    "fillpattern": {
                                        "size": 10,
                                        "fillmode": "overlay",
                                        "solidity": 0.2
                                    }
                                }
                            ],
                            "surface": [
                                {
                                    "type": "surface",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "colorscale": [
                                        [
                                            0.0,
                                            "#0d0887"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#46039f"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#7201a8"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#9c179e"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#bd3786"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#d8576b"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#ed7953"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#fb9f3a"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#fdca26"
                                        ],
                                        [
                                            1.0,
                                            "#f0f921"
                                        ]
                                    ]
                                }
                            ],
                            "barpolar": [
                                {
                                    "type": "barpolar",
                                    "marker": {
                                        "line": {
                                            "color": "#E5ECF6",
                                            "width": 0.5
                                        },
                                        "pattern": {
                                            "size": 10,
                                            "fillmode": "overlay",
                                            "solidity": 0.2
                                        }
                                    }
                                }
                            ],
                            "heatmapgl": [
                                {
                                    "type": "heatmapgl",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "colorscale": [
                                        [
                                            0.0,
                                            "#0d0887"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#46039f"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#7201a8"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#9c179e"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#bd3786"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#d8576b"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#ed7953"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#fb9f3a"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#fdca26"
                                        ],
                                        [
                                            1.0,
                                            "#f0f921"
                                        ]
                                    ]
                                }
                            ],
                            "histogram": [
                                {
                                    "type": "histogram",
                                    "marker": {
                                        "pattern": {
                                            "size": 10,
                                            "fillmode": "overlay",
                                            "solidity": 0.2
                                        }
                                    }
                                }
                            ],
                            "parcoords": [
                                {
                                    "line": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    },
                                    "type": "parcoords"
                                }
                            ],
                            "scatter3d": [
                                {
                                    "line": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    },
                                    "type": "scatter3d",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scattergl": [
                                {
                                    "type": "scattergl",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "choropleth": [
                                {
                                    "type": "choropleth",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "scattergeo": [
                                {
                                    "type": "scattergeo",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "histogram2d": [
                                {
                                    "type": "histogram2d",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "colorscale": [
                                        [
                                            0.0,
                                            "#0d0887"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#46039f"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#7201a8"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#9c179e"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#bd3786"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#d8576b"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#ed7953"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#fb9f3a"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#fdca26"
                                        ],
                                        [
                                            1.0,
                                            "#f0f921"
                                        ]
                                    ]
                                }
                            ],
                            "scatterpolar": [
                                {
                                    "type": "scatterpolar",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "contourcarpet": [
                                {
                                    "type": "contourcarpet",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "scattercarpet": [
                                {
                                    "type": "scattercarpet",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scattermapbox": [
                                {
                                    "type": "scattermapbox",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scatterpolargl": [
                                {
                                    "type": "scatterpolargl",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scatterternary": [
                                {
                                    "type": "scatterternary",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "histogram2dcontour": [
                                {
                                    "type": "histogram2dcontour",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "colorscale": [
                                        [
                                            0.0,
                                            "#0d0887"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#46039f"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#7201a8"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#9c179e"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#bd3786"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#d8576b"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#ed7953"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#fb9f3a"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#fdca26"
                                        ],
                                        [
                                            1.0,
                                            "#f0f921"
                                        ]
                                    ]
                                }
                            ]
                        },
                        "layout": {
                            "geo": {
                                "bgcolor": "white",
                                "showland": true,
                                "lakecolor": "white",
                                "landcolor": "#E5ECF6",
                                "showlakes": true,
                                "subunitcolor": "white"
                            },
                            "font": {
                                "color": "#2a3f5f"
                            },
                            "polar": {
                                "bgcolor": "#E5ECF6",
                                "radialaxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "linecolor": "white"
                                },
                                "angularaxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "linecolor": "white"
                                }
                            },
                            "scene": {
                                "xaxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "gridwidth": 2,
                                    "linecolor": "white",
                                    "zerolinecolor": "white",
                                    "showbackground": true,
                                    "backgroundcolor": "#E5ECF6"
                                },
                                "yaxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "gridwidth": 2,
                                    "linecolor": "white",
                                    "zerolinecolor": "white",
                                    "showbackground": true,
                                    "backgroundcolor": "#E5ECF6"
                                },
                                "zaxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "gridwidth": 2,
                                    "linecolor": "white",
                                    "zerolinecolor": "white",
                                    "showbackground": true,
                                    "backgroundcolor": "#E5ECF6"
                                }
                            },
                            "title": {
                                "x": 0.05
                            },
                            "xaxis": {
                                "ticks": "",
                                "title": {
                                    "standoff": 15
                                },
                                "gridcolor": "white",
                                "linecolor": "white",
                                "automargin": true,
                                "zerolinecolor": "white",
                                "zerolinewidth": 2
                            },
                            "yaxis": {
                                "ticks": "",
                                "title": {
                                    "standoff": 15
                                },
                                "gridcolor": "white",
                                "linecolor": "white",
                                "automargin": true,
                                "zerolinecolor": "white",
                                "zerolinewidth": 2
                            },
                            "mapbox": {
                                "style": "light"
                            },
                            "ternary": {
                                "aaxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "linecolor": "white"
                                },
                                "baxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "linecolor": "white"
                                },
                                "caxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "linecolor": "white"
                                },
                                "bgcolor": "#E5ECF6"
                            },
                            "colorway": [
                                "#636efa",
                                "#EF553B",
                                "#00cc96",
                                "#ab63fa",
                                "#FFA15A",
                                "#19d3f3",
                                "#FF6692",
                                "#B6E880",
                                "#FF97FF",
                                "#FECB52"
                            ],
                            "coloraxis": {
                                "colorbar": {
                                    "ticks": "",
                                    "outlinewidth": 0
                                }
                            },
                            "hovermode": "closest",
                            "colorscale": {
                                "diverging": [
                                    [
                                        0,
                                        "#8e0152"
                                    ],
                                    [
                                        0.1,
                                        "#c51b7d"
                                    ],
                                    [
                                        0.2,
                                        "#de77ae"
                                    ],
                                    [
                                        0.3,
                                        "#f1b6da"
                                    ],
                                    [
                                        0.4,
                                        "#fde0ef"
                                    ],
                                    [
                                        0.5,
                                        "#f7f7f7"
                                    ],
                                    [
                                        0.6,
                                        "#e6f5d0"
                                    ],
                                    [
                                        0.7,
                                        "#b8e186"
                                    ],
                                    [
                                        0.8,
                                        "#7fbc41"
                                    ],
                                    [
                                        0.9,
                                        "#4d9221"
                                    ],
                                    [
                                        1,
                                        "#276419"
                                    ]
                                ],
                                "sequential": [
                                    [
                                        0.0,
                                        "#0d0887"
                                    ],
                                    [
                                        0.1111111111111111,
                                        "#46039f"
                                    ],
                                    [
                                        0.2222222222222222,
                                        "#7201a8"
                                    ],
                                    [
                                        0.3333333333333333,
                                        "#9c179e"
                                    ],
                                    [
                                        0.4444444444444444,
                                        "#bd3786"
                                    ],
                                    [
                                        0.5555555555555556,
                                        "#d8576b"
                                    ],
                                    [
                                        0.6666666666666666,
                                        "#ed7953"
                                    ],
                                    [
                                        0.7777777777777778,
                                        "#fb9f3a"
                                    ],
                                    [
                                        0.8888888888888888,
                                        "#fdca26"
                                    ],
                                    [
                                        1.0,
                                        "#f0f921"
                                    ]
                                ],
                                "sequentialminus": [
                                    [
                                        0.0,
                                        "#0d0887"
                                    ],
                                    [
                                        0.1111111111111111,
                                        "#46039f"
                                    ],
                                    [
                                        0.2222222222222222,
                                        "#7201a8"
                                    ],
                                    [
                                        0.3333333333333333,
                                        "#9c179e"
                                    ],
                                    [
                                        0.4444444444444444,
                                        "#bd3786"
                                    ],
                                    [
                                        0.5555555555555556,
                                        "#d8576b"
                                    ],
                                    [
                                        0.6666666666666666,
                                        "#ed7953"
                                    ],
                                    [
                                        0.7777777777777778,
                                        "#fb9f3a"
                                    ],
                                    [
                                        0.8888888888888888,
                                        "#fdca26"
                                    ],
                                    [
                                        1.0,
                                        "#f0f921"
                                    ]
                                ]
                            },
                            "hoverlabel": {
                                "align": "left"
                            },
                            "plot_bgcolor": "#E5ECF6",
                            "paper_bgcolor": "white",
                            "shapedefaults": {
                                "line": {
                                    "color": "#2a3f5f"
                                }
                            },
                            "autotypenumbers": "strict",
                            "annotationdefaults": {
                                "arrowhead": 0,
                                "arrowcolor": "#2a3f5f",
                                "arrowwidth": 1
                            }
                        }
                    },
                    "coloraxis": {
                        "colorbar": {
                            "title": {
                                "text": "bins"
                            }
                        },
                        "colorscale": [
                            [
                                0.0,
                                "#0d0887"
                            ],
                            [
                                0.1111111111111111,
                                "#46039f"
                            ],
                            [
                                0.2222222222222222,
                                "#7201a8"
                            ],
                            [
                                0.3333333333333333,
                                "#9c179e"
                            ],
                            [
                                0.4444444444444444,
                                "#bd3786"
                            ],
                            [
                                0.5555555555555556,
                                "#d8576b"
                            ],
                            [
                                0.6666666666666666,
                                "#ed7953"
                            ],
                            [
                                0.7777777777777778,
                                "#fb9f3a"
                            ],
                            [
                                0.8888888888888888,
                                "#fdca26"
                            ],
                            [
                                1.0,
                                "#f0f921"
                            ]
                        ]
                    },
                    "annotations": [
                        {
                            "x": 8.965784284662087,
                            "y": 9.564149489985732,
                            "font": {
                                "size": 8
                            },
                            "text": "LMNA",
                            "showarrow": false
                        },
                        {
                            "x": 8.184875342908283,
                            "y": 8.400879436282183,
                            "font": {
                                "size": 8
                            },
                            "text": "RBMX",
                            "showarrow": false
                        },
                        {
                            "x": 7.9886846867721655,
                            "y": 8.554588851677638,
                            "font": {
                                "size": 8
                            },
                            "text": "NUMA1",
                            "showarrow": false
                        },
                        {
                            "x": 7.888743248898259,
                            "y": 8.308339030139408,
                            "font": {
                                "size": 8
                            },
                            "text": "ROA2",
                            "showarrow": false
                        },
                        {
                            "x": 7.700439718141092,
                            "y": 8.20945336562895,
                            "font": {
                                "size": 8
                            },
                            "text": "LMNB1",
                            "showarrow": false
                        },
                        {
                            "x": 7.6293566200796095,
                            "y": 7.882643049361842,
                            "font": {
                                "size": 8
                            },
                            "text": "TPR",
                            "showarrow": false
                        },
                        {
                            "x": 7.622051819456376,
                            "y": 8.044394119358454,
                            "font": {
                                "size": 8
                            },
                            "text": "LMNB2",
                            "showarrow": false
                        },
                        {
                            "x": 7.539158811108031,
                            "y": 8.005624549193879,
                            "font": {
                                "size": 8
                            },
                            "text": "DHX9",
                            "showarrow": false
                        },
                        {
                            "x": 7.507794640198696,
                            "y": 7.7615512324444795,
                            "font": {
                                "size": 8
                            },
                            "text": "RMXL1",
                            "showarrow": false
                        },
                        {
                            "x": 7.409390936137702,
                            "y": 7.813781191217037,
                            "font": {
                                "size": 8
                            },
                            "text": "HNRPM",
                            "showarrow": false
                        },
                        {
                            "x": 7.409390936137702,
                            "y": 7.839203788096944,
                            "font": {
                                "size": 8
                            },
                            "text": "KI67",
                            "showarrow": false
                        },
                        {
                            "x": 7.366322214245816,
                            "y": 7.499845887083206,
                            "font": {
                                "size": 8
                            },
                            "text": "YLPM1",
                            "showarrow": false
                        },
                        {
                            "x": 7.357552004618084,
                            "y": 7.820178962415188,
                            "font": {
                                "size": 8
                            },
                            "text": "MATR3",
                            "showarrow": false
                        },
                        {
                            "x": 7.339850002884624,
                            "y": 7.714245517666122,
                            "font": {
                                "size": 8
                            },
                            "text": "HNRPL",
                            "showarrow": false
                        },
                        {
                            "x": 7.330916878114617,
                            "y": 7.820178962415188,
                            "font": {
                                "size": 8
                            },
                            "text": "APEX2",
                            "showarrow": false
                        },
                        {
                            "x": 7.312882955284356,
                            "y": 7.971543553950772,
                            "font": {
                                "size": 8
                            },
                            "text": "H4",
                            "showarrow": false
                        },
                        {
                            "x": 7.169925001442312,
                            "y": 7.700439718141092,
                            "font": {
                                "size": 8
                            },
                            "text": "NU153",
                            "showarrow": false
                        },
                        {
                            "x": 7.118941072723508,
                            "y": 7.2384047393250786,
                            "font": {
                                "size": 8
                            },
                            "text": "RPB1",
                            "showarrow": false
                        },
                        {
                            "x": 7.098032082960526,
                            "y": 7.658211482751795,
                            "font": {
                                "size": 8
                            },
                            "text": "DDX5",
                            "showarrow": false
                        },
                        {
                            "x": 7.076815597050831,
                            "y": 7.426264754702098,
                            "font": {
                                "size": 8
                            },
                            "text": "FUBP2",
                            "showarrow": false
                        },
                        {
                            "x": 7.066089190457772,
                            "y": 7.6293566200796095,
                            "font": {
                                "size": 8
                            },
                            "text": "DDX17",
                            "showarrow": false
                        },
                        {
                            "x": 7.0,
                            "y": 7.366322214245816,
                            "font": {
                                "size": 8
                            },
                            "text": "RBM14",
                            "showarrow": false
                        },
                        {
                            "x": 6.9886846867721655,
                            "y": 7.330916878114617,
                            "font": {
                                "size": 8
                            },
                            "text": "SFPQ",
                            "showarrow": false
                        },
                        {
                            "x": 6.954196310386875,
                            "y": 7.076815597050831,
                            "font": {
                                "size": 8
                            },
                            "text": "SAFB2",
                            "showarrow": false
                        },
                        {
                            "x": 6.94251450533924,
                            "y": 7.22881869049588,
                            "font": {
                                "size": 8
                            },
                            "text": "ELYS",
                            "showarrow": false
                        },
                        {
                            "x": 6.870364719583405,
                            "y": 7.321928094887363,
                            "font": {
                                "size": 8
                            },
                            "text": "ROA1",
                            "showarrow": false
                        },
                        {
                            "x": 6.857980995127572,
                            "y": 7.475733430966398,
                            "font": {
                                "size": 8
                            },
                            "text": "ILF3",
                            "showarrow": false
                        },
                        {
                            "x": 6.768184324776926,
                            "y": 7.0,
                            "font": {
                                "size": 8
                            },
                            "text": "SF3B1",
                            "showarrow": false
                        },
                        {
                            "x": 6.754887502163468,
                            "y": 7.098032082960526,
                            "font": {
                                "size": 8
                            },
                            "text": "DSRAD",
                            "showarrow": false
                        },
                        {
                            "x": 6.741466986401147,
                            "y": 7.189824558880018,
                            "font": {
                                "size": 8
                            },
                            "text": "ROA3",
                            "showarrow": false
                        },
                        {
                            "x": 6.727920454563199,
                            "y": 6.832890014164741,
                            "font": {
                                "size": 8
                            },
                            "text": "RB12B",
                            "showarrow": false
                        },
                        {
                            "x": 6.700439718141092,
                            "y": 6.894817763307944,
                            "font": {
                                "size": 8
                            },
                            "text": "SAFB1",
                            "showarrow": false
                        },
                        {
                            "x": 6.672425341971495,
                            "y": 7.321928094887363,
                            "font": {
                                "size": 8
                            },
                            "text": "HNRPK",
                            "showarrow": false
                        },
                        {
                            "x": 6.643856189774724,
                            "y": 7.6653359171851765,
                            "font": {
                                "size": 8
                            },
                            "text": "TOP2B",
                            "showarrow": false
                        },
                        {
                            "x": 6.599912842187128,
                            "y": 7.149747119504682,
                            "font": {
                                "size": 8
                            },
                            "text": "HNRPU",
                            "showarrow": false
                        },
                        {
                            "x": 6.569855608330948,
                            "y": 6.954196310386875,
                            "font": {
                                "size": 8
                            },
                            "text": "SMCA5",
                            "showarrow": false
                        },
                        {
                            "x": 6.539158811108031,
                            "y": 7.022367813028454,
                            "font": {
                                "size": 8
                            },
                            "text": "TIF1B",
                            "showarrow": false
                        },
                        {
                            "x": 6.523561956057013,
                            "y": 7.936637939002571,
                            "font": {
                                "size": 8
                            },
                            "text": "TOP2A",
                            "showarrow": false
                        },
                        {
                            "x": 6.507794640198696,
                            "y": 6.539158811108031,
                            "font": {
                                "size": 8
                            },
                            "text": "PB1",
                            "showarrow": false
                        },
                        {
                            "x": 6.491853096329675,
                            "y": 6.554588851677638,
                            "font": {
                                "size": 8
                            },
                            "text": "ZN638",
                            "showarrow": false
                        },
                        {
                            "x": 6.475733430966398,
                            "y": 6.491853096329675,
                            "font": {
                                "size": 8
                            },
                            "text": "RBM6",
                            "showarrow": false
                        },
                        {
                            "x": 6.459431618637297,
                            "y": 7.2384047393250786,
                            "font": {
                                "size": 8
                            },
                            "text": "PARP1",
                            "showarrow": false
                        },
                        {
                            "x": 6.442943495848728,
                            "y": 6.643856189774724,
                            "font": {
                                "size": 8
                            },
                            "text": "ZFR",
                            "showarrow": false
                        },
                        {
                            "x": 6.426264754702098,
                            "y": 6.882643049361842,
                            "font": {
                                "size": 8
                            },
                            "text": "TOP1",
                            "showarrow": false
                        },
                        {
                            "x": 6.409390936137702,
                            "y": 6.614709844115208,
                            "font": {
                                "size": 8
                            },
                            "text": "TR150",
                            "showarrow": false
                        },
                        {
                            "x": 6.3750394313469245,
                            "y": 6.491853096329675,
                            "font": {
                                "size": 8
                            },
                            "text": "BAZ2A",
                            "showarrow": false
                        },
                        {
                            "x": 6.3750394313469245,
                            "y": 6.6865005271832185,
                            "font": {
                                "size": 8
                            },
                            "text": "ZN326",
                            "showarrow": false
                        },
                        {
                            "x": 6.357552004618084,
                            "y": 6.491853096329675,
                            "font": {
                                "size": 8
                            },
                            "text": "TASOR",
                            "showarrow": false
                        },
                        {
                            "x": 6.339850002884624,
                            "y": 6.714245517666122,
                            "font": {
                                "size": 8
                            },
                            "text": "TASO2",
                            "showarrow": false
                        },
                        {
                            "x": 6.339850002884624,
                            "y": 6.727920454563199,
                            "font": {
                                "size": 8
                            },
                            "text": "FUS",
                            "showarrow": false
                        },
                        {
                            "x": 6.321928094887363,
                            "y": 6.977279923499917,
                            "font": {
                                "size": 8
                            },
                            "text": "HNRPC",
                            "showarrow": false
                        },
                        {
                            "x": 6.303780748177103,
                            "y": 6.321928094887363,
                            "font": {
                                "size": 8
                            },
                            "text": "ARI1A",
                            "showarrow": false
                        },
                        {
                            "x": 6.303780748177103,
                            "y": 6.491853096329675,
                            "font": {
                                "size": 8
                            },
                            "text": "BAZ1B",
                            "showarrow": false
                        },
                        {
                            "x": 6.285402218862249,
                            "y": 6.954196310386875,
                            "font": {
                                "size": 8
                            },
                            "text": "NONO",
                            "showarrow": false
                        },
                        {
                            "x": 6.285402218862249,
                            "y": 6.614709844115208,
                            "font": {
                                "size": 8
                            },
                            "text": "SMHD1",
                            "showarrow": false
                        },
                        {
                            "x": 6.266786540694901,
                            "y": 6.523561956057013,
                            "font": {
                                "size": 8
                            },
                            "text": "SMCA1",
                            "showarrow": false
                        },
                        {
                            "x": 6.20945336562895,
                            "y": 6.321928094887363,
                            "font": {
                                "size": 8
                            },
                            "text": "SRSF1",
                            "showarrow": false
                        },
                        {
                            "x": 6.189824558880018,
                            "y": 6.523561956057013,
                            "font": {
                                "size": 8
                            },
                            "text": "KHDR1",
                            "showarrow": false
                        },
                        {
                            "x": 6.149747119504682,
                            "y": 6.303780748177103,
                            "font": {
                                "size": 8
                            },
                            "text": "SON",
                            "showarrow": false
                        },
                        {
                            "x": 6.149747119504682,
                            "y": 6.285402218862249,
                            "font": {
                                "size": 8
                            },
                            "text": "CHD4",
                            "showarrow": false
                        },
                        {
                            "x": 6.129283016944966,
                            "y": 6.768184324776926,
                            "font": {
                                "size": 8
                            },
                            "text": "DHX15",
                            "showarrow": false
                        },
                        {
                            "x": 6.129283016944966,
                            "y": 6.357552004618084,
                            "font": {
                                "size": 8
                            },
                            "text": "HNRL2",
                            "showarrow": false
                        },
                        {
                            "x": 6.129283016944966,
                            "y": 6.700439718141092,
                            "font": {
                                "size": 8
                            },
                            "text": "SMC4",
                            "showarrow": false
                        },
                        {
                            "x": 6.129283016944966,
                            "y": 6.22881869049588,
                            "font": {
                                "size": 8
                            },
                            "text": "ZMYM4",
                            "showarrow": false
                        },
                        {
                            "x": 6.108524456778169,
                            "y": 6.930737337562887,
                            "font": {
                                "size": 8
                            },
                            "text": "U520",
                            "showarrow": false
                        },
                        {
                            "x": 6.087462841250339,
                            "y": 6.475733430966398,
                            "font": {
                                "size": 8
                            },
                            "text": "SMC1A",
                            "showarrow": false
                        },
                        {
                            "x": 6.087462841250339,
                            "y": 6.6865005271832185,
                            "font": {
                                "size": 8
                            },
                            "text": "HNRPR",
                            "showarrow": false
                        },
                        {
                            "x": 6.087462841250339,
                            "y": 6.741466986401147,
                            "font": {
                                "size": 8
                            },
                            "text": "LAP2B",
                            "showarrow": false
                        },
                        {
                            "x": 6.022367813028454,
                            "y": 6.807354922057604,
                            "font": {
                                "size": 8
                            },
                            "text": "H2B1K",
                            "showarrow": false
                        },
                        {
                            "x": 6.022367813028454,
                            "y": 6.108524456778169,
                            "font": {
                                "size": 8
                            },
                            "text": "TP53B",
                            "showarrow": false
                        },
                        {
                            "x": 6.0,
                            "y": 6.247927513443585,
                            "font": {
                                "size": 8
                            },
                            "text": "TPX2",
                            "showarrow": false
                        },
                        {
                            "x": 6.0,
                            "y": 6.108524456778169,
                            "font": {
                                "size": 8
                            },
                            "text": "SPT5H",
                            "showarrow": false
                        },
                        {
                            "x": 6.0,
                            "y": 6.22881869049588,
                            "font": {
                                "size": 8
                            },
                            "text": "HNRL1",
                            "showarrow": false
                        },
                        {
                            "x": 5.977279923499917,
                            "y": 6.044394119358453,
                            "font": {
                                "size": 8
                            },
                            "text": "RBM10",
                            "showarrow": false
                        },
                        {
                            "x": 5.977279923499917,
                            "y": 6.321928094887363,
                            "font": {
                                "size": 8
                            },
                            "text": "SMC3",
                            "showarrow": false
                        },
                        {
                            "x": 5.977279923499917,
                            "y": 6.700439718141092,
                            "font": {
                                "size": 8
                            },
                            "text": "DDX21",
                            "showarrow": false
                        },
                        {
                            "x": 5.954196310386875,
                            "y": 6.303780748177103,
                            "font": {
                                "size": 8
                            },
                            "text": "DDX24",
                            "showarrow": false
                        },
                        {
                            "x": 5.930737337562887,
                            "y": 6.459431618637297,
                            "font": {
                                "size": 8
                            },
                            "text": "SRRM2",
                            "showarrow": false
                        },
                        {
                            "x": 5.930737337562887,
                            "y": 6.022367813028454,
                            "font": {
                                "size": 8
                            },
                            "text": "RBM15",
                            "showarrow": false
                        },
                        {
                            "x": 5.930737337562887,
                            "y": 6.129283016944966,
                            "font": {
                                "size": 8
                            },
                            "text": "SF3A1",
                            "showarrow": false
                        },
                        {
                            "x": 5.906890595608519,
                            "y": 5.954196310386875,
                            "font": {
                                "size": 8
                            },
                            "text": "PHF3",
                            "showarrow": false
                        },
                        {
                            "x": 5.906890595608519,
                            "y": 6.189824558880018,
                            "font": {
                                "size": 8
                            },
                            "text": "HNRH3",
                            "showarrow": false
                        },
                        {
                            "x": 5.906890595608519,
                            "y": 6.357552004618084,
                            "font": {
                                "size": 8
                            },
                            "text": "HNRH1",
                            "showarrow": false
                        },
                        {
                            "x": 5.906890595608519,
                            "y": 6.066089190457772,
                            "font": {
                                "size": 8
                            },
                            "text": "UBP36",
                            "showarrow": false
                        },
                        {
                            "x": 5.906890595608519,
                            "y": 5.977279923499917,
                            "font": {
                                "size": 8
                            },
                            "text": "CDC5L",
                            "showarrow": false
                        },
                        {
                            "x": 5.906890595608519,
                            "y": 6.392317422778761,
                            "font": {
                                "size": 8
                            },
                            "text": "SF3B2",
                            "showarrow": false
                        },
                        {
                            "x": 5.906890595608519,
                            "y": 6.523561956057013,
                            "font": {
                                "size": 8
                            },
                            "text": "PRP8",
                            "showarrow": false
                        },
                        {
                            "x": 5.882643049361842,
                            "y": 5.954196310386875,
                            "font": {
                                "size": 8
                            },
                            "text": "AHDC1",
                            "showarrow": false
                        },
                        {
                            "x": 5.882643049361842,
                            "y": 6.22881869049588,
                            "font": {
                                "size": 8
                            },
                            "text": "PRP6",
                            "showarrow": false
                        },
                        {
                            "x": 5.857980995127572,
                            "y": 6.3750394313469245,
                            "font": {
                                "size": 8
                            },
                            "text": "DDX46",
                            "showarrow": false
                        },
                        {
                            "x": 5.857980995127572,
                            "y": 5.977279923499917,
                            "font": {
                                "size": 8
                            },
                            "text": "RIF1",
                            "showarrow": false
                        },
                        {
                            "x": 5.857980995127572,
                            "y": 6.0,
                            "font": {
                                "size": 8
                            },
                            "text": "SMCA4",
                            "showarrow": false
                        },
                        {
                            "x": 5.832890014164741,
                            "y": 6.768184324776926,
                            "font": {
                                "size": 8
                            },
                            "text": "H2B1J",
                            "showarrow": false
                        },
                        {
                            "x": 5.807354922057604,
                            "y": 5.977279923499917,
                            "font": {
                                "size": 8
                            },
                            "text": "EXOSX",
                            "showarrow": false
                        },
                        {
                            "x": 5.807354922057604,
                            "y": 6.108524456778169,
                            "font": {
                                "size": 8
                            },
                            "text": "UHRF1",
                            "showarrow": false
                        },
                        {
                            "x": 5.754887502163468,
                            "y": 5.832890014164741,
                            "font": {
                                "size": 8
                            },
                            "text": "TEX10",
                            "showarrow": false
                        },
                        {
                            "x": 5.754887502163468,
                            "y": 6.459431618637297,
                            "font": {
                                "size": 8
                            },
                            "text": "EMD",
                            "showarrow": false
                        },
                        {
                            "x": 5.754887502163468,
                            "y": 6.108524456778169,
                            "font": {
                                "size": 8
                            },
                            "text": "MAN1",
                            "showarrow": false
                        },
                        {
                            "x": 5.754887502163468,
                            "y": 6.754887502163468,
                            "font": {
                                "size": 8
                            },
                            "text": "SUN1",
                            "showarrow": false
                        },
                        {
                            "x": 5.727920454563199,
                            "y": 5.954196310386875,
                            "font": {
                                "size": 8
                            },
                            "text": "SNUT1",
                            "showarrow": false
                        }
                    ]
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~jf383",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/57.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-5.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2024-03-25 11:21:57",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "jf383",
                "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-04T09:49:35.695828Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~pomarede/285.embed",
            "fid": "pomarede:285",
            "filename": "Sheet_CF4-NORTH1",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/pomarede/285/9_BV69QJLG4X8ATLW9JF0R7ZIWJF0LHL.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/pomarede/285/2_8R0739G3OWXUGQFWZ75KJ7QIA0Z1KQ.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/pomarede/285/8_JW2FGE2L769CNQMJ0EQICWYX2QZSQI.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/pomarede/285/9_BV69QJLG4X8ATLW9JF0R7ZIWJF0LHL.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/pomarede:285",
                "plots": "https://api.plotly.com/v2/plots/pomarede:285",
                "parent": "https://api.plotly.com/v2/folders/home?user=pomarede"
            },
            "owner": "pomarede",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 1,
            "web_url": "https://chart-studio.plotly.com/~pomarede/285/",
            "world_readable": true,
            "date_modified": "2024-04-04T09:49:35.708Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~pomarede/285/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": false,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "meta": {
                            "columnNames": {
                                "x": "h",
                                "y": "galaxies",
                                "text": "galaxies"
                            }
                        },
                        "mode": "markers",
                        "type": "bar",
                        "xsrc": "pomarede:284:cb5a6d",
                        "ysrc": "pomarede:284:674a2e",
                        "marker": {
                            "color": "rgba(131, 134, 189, 0.75)"
                        },
                        "textsrc": "pomarede:284:674a2e",
                        "textfont": {
                            "size": 15
                        },
                        "orientation": "v",
                        "textposition": "outside"
                    }
                ],
                "frames": [],
                "layout": {
                    "xaxis": {
                        "type": "linear",
                        "dtick": 10,
                        "range": [
                            -105,
                            105
                        ],
                        "ticks": "inside",
                        "title": {
                            "font": {
                                "size": 24
                            },
                            "text": "distance h (Mpc)"
                        },
                        "mirror": "ticks",
                        "ticklen": 9,
                        "showgrid": true,
                        "showline": true,
                        "tickfont": {
                            "size": 20
                        },
                        "tickmode": "linear",
                        "autorange": true,
                        "linecolor": "rgb(0, 0, 0)",
                        "linewidth": 2,
                        "tickwidth": 2
                    },
                    "yaxis": {
                        "type": "linear",
                        "range": [
                            0,
                            1077.8947368421052
                        ],
                        "ticks": "inside",
                        "title": {
                            "font": {
                                "size": 24
                            },
                            "text": "counts of CF4 galaxy groups"
                        },
                        "mirror": "ticks",
                        "ticklen": 9,
                        "showgrid": true,
                        "showline": true,
                        "tickfont": {
                            "size": 20
                        },
                        "autorange": true,
                        "gridcolor": "rgb(235, 240, 248)",
                        "linecolor": "rgb(0, 0, 0)",
                        "linewidth": 2,
                        "tickwidth": 2
                    },
                    "autosize": true,
                    "template": {
                        "data": {
                            "bar": [
                                {
                                    "type": "bar",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "table": [
                                {
                                    "type": "table",
                                    "cells": {
                                        "fill": {
                                            "color": "#EBF0F8"
                                        },
                                        "line": {
                                            "color": "white"
                                        }
                                    },
                                    "header": {
                                        "fill": {
                                            "color": "#C8D4E3"
                                        },
                                        "line": {
                                            "color": "white"
                                        }
                                    }
                                }
                            ],
                            "carpet": [
                                {
                                    "type": "carpet",
                                    "aaxis": {
                                        "gridcolor": "#C8D4E3",
                                        "linecolor": "#C8D4E3",
                                        "endlinecolor": "#2a3f5f",
                                        "minorgridcolor": "#C8D4E3",
                                        "startlinecolor": "#2a3f5f"
                                    },
                                    "baxis": {
                                        "gridcolor": "#C8D4E3",
                                        "linecolor": "#C8D4E3",
                                        "endlinecolor": "#2a3f5f",
                                        "minorgridcolor": "#C8D4E3",
                                        "startlinecolor": "#2a3f5f"
                                    }
                                }
                            ],
                            "mesh3d": [
                                {
                                    "type": "mesh3d",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "contour": [
                                {
                                    "type": "contour",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ],
                            "heatmap": [
                                {
                                    "type": "heatmap",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ],
                            "scatter": [
                                {
                                    "type": "scatter",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "surface": [
                                {
                                    "type": "surface",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "heatmapgl": [
                                {
                                    "type": "heatmapgl",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "histogram": [
                                {
                                    "type": "histogram",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "parcoords": [
                                {
                                    "line": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    },
                                    "type": "parcoords"
                                }
                            ],
                            "scatter3d": [
                                {
                                    "type": "scatter3d",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scattergl": [
                                {
                                    "type": "scattergl",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "choropleth": [
                                {
                                    "type": "choropleth",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "scattergeo": [
                                {
                                    "type": "scattergeo",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "histogram2d": [
                                {
                                    "type": "histogram2d",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ],
                            "scatterpolar": [
                                {
                                    "type": "scatterpolar",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "contourcarpet": [
                                {
                                    "type": "contourcarpet",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "scattercarpet": [
                                {
                                    "type": "scattercarpet",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scattermapbox": [
                                {
                                    "type": "scattermapbox",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scatterpolargl": [
                                {
                                    "type": "scatterpolargl",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scatterternary": [
                                {
                                    "type": "scatterternary",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "histogram2dcontour": [
                                {
                                    "type": "histogram2dcontour",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ]
                        },
                        "layout": {
                            "geo": {
                                "bgcolor": "white",
                                "showland": true,
                                "lakecolor": "white",
                                "landcolor": "white",
                                "showlakes": true,
                                "subunitcolor": "#C8D4E3"
                            },
                            "font": {
                                "color": "#2a3f5f"
                            },
                            "polar": {
                                "bgcolor": "white",
                                "radialaxis": {
                                    "ticks": "",
                                    "gridcolor": "#EBF0F8",
                                    "linecolor": "#EBF0F8"
                                },
                                "angularaxis": {
                                    "ticks": "",
                                    "gridcolor": "#EBF0F8",
                                    "linecolor": "#EBF0F8"
                                }
                            },
                            "scene": {
                                "xaxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "gridwidth": 2,
                                    "linecolor": "#EBF0F8",
                                    "zerolinecolor": "#EBF0F8",
                                    "showbackground": true,
                                    "backgroundcolor": "white"
                                },
                                "yaxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "gridwidth": 2,
                                    "linecolor": "#EBF0F8",
                                    "zerolinecolor": "#EBF0F8",
                                    "showbackground": true,
                                    "backgroundcolor": "white"
                                },
                                "zaxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "gridwidth": 2,
                                    "linecolor": "#EBF0F8",
                                    "zerolinecolor": "#EBF0F8",
                                    "showbackground": true,
                                    "backgroundcolor": "white"
                                }
                            },
                            "title": {
                                "x": 0.05
                            },
                            "xaxis": {
                                "ticks": "",
                                "gridcolor": "#EBF0F8",
                                "linecolor": "#EBF0F8",
                                "automargin": true,
                                "zerolinecolor": "#EBF0F8",
                                "zerolinewidth": 2
                            },
                            "yaxis": {
                                "ticks": "",
                                "gridcolor": "#EBF0F8",
                                "linecolor": "#EBF0F8",
                                "automargin": true,
                                "zerolinecolor": "#EBF0F8",
                                "zerolinewidth": 2
                            },
                            "ternary": {
                                "aaxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "linecolor": "#A2B1C6"
                                },
                                "baxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "linecolor": "#A2B1C6"
                                },
                                "caxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "linecolor": "#A2B1C6"
                                },
                                "bgcolor": "white"
                            },
                            "colorway": [
                                "#636efa",
                                "#EF553B",
                                "#00cc96",
                                "#ab63fa",
                                "#19d3f3",
                                "#e763fa",
                                "#fecb52",
                                "#ffa15a",
                                "#ff6692",
                                "#b6e880"
                            ],
                            "hovermode": "closest",
                            "colorscale": {
                                "diverging": [
                                    [
                                        0,
                                        "#8e0152"
                                    ],
                                    [
                                        0.1,
                                        "#c51b7d"
                                    ],
                                    [
                                        0.2,
                                        "#de77ae"
                                    ],
                                    [
                                        0.3,
                                        "#f1b6da"
                                    ],
                                    [
                                        0.4,
                                        "#fde0ef"
                                    ],
                                    [
                                        0.5,
                                        "#f7f7f7"
                                    ],
                                    [
                                        0.6,
                                        "#e6f5d0"
                                    ],
                                    [
                                        0.7,
                                        "#b8e186"
                                    ],
                                    [
                                        0.8,
                                        "#7fbc41"
                                    ],
                                    [
                                        0.9,
                                        "#4d9221"
                                    ],
                                    [
                                        1,
                                        "#276419"
                                    ]
                                ],
                                "sequential": [
                                    [
                                        0,
                                        "#0508b8"
                                    ],
                                    [
                                        0.0893854748603352,
                                        "#1910d8"
                                    ],
                                    [
                                        0.1787709497206704,
                                        "#3c19f0"
                                    ],
                                    [
                                        0.2681564245810056,
                                        "#6b1cfb"
                                    ],
                                    [
                                        0.3575418994413408,
                                        "#981cfd"
                                    ],
                                    [
                                        0.44692737430167595,
                                        "#bf1cfd"
                                    ],
                                    [
                                        0.5363128491620112,
                                        "#dd2bfd"
                                    ],
                                    [
                                        0.6256983240223464,
                                        "#f246fe"
                                    ],
                                    [
                                        0.7150837988826816,
                                        "#fc67fd"
                                    ],
                                    [
                                        0.8044692737430168,
                                        "#fe88fc"
                                    ],
                                    [
                                        0.8938547486033519,
                                        "#fea5fd"
                                    ],
                                    [
                                        0.9832402234636871,
                                        "#febefe"
                                    ],
                                    [
                                        1,
                                        "#fec3fe"
                                    ]
                                ],
                                "sequentialminus": [
                                    [
                                        0,
                                        "#0508b8"
                                    ],
                                    [
                                        0.0893854748603352,
                                        "#1910d8"
                                    ],
                                    [
                                        0.1787709497206704,
                                        "#3c19f0"
                                    ],
                                    [
                                        0.2681564245810056,
                                        "#6b1cfb"
                                    ],
                                    [
                                        0.3575418994413408,
                                        "#981cfd"
                                    ],
                                    [
                                        0.44692737430167595,
                                        "#bf1cfd"
                                    ],
                                    [
                                        0.5363128491620112,
                                        "#dd2bfd"
                                    ],
                                    [
                                        0.6256983240223464,
                                        "#f246fe"
                                    ],
                                    [
                                        0.7150837988826816,
                                        "#fc67fd"
                                    ],
                                    [
                                        0.8044692737430168,
                                        "#fe88fc"
                                    ],
                                    [
                                        0.8938547486033519,
                                        "#fea5fd"
                                    ],
                                    [
                                        0.9832402234636871,
                                        "#febefe"
                                    ],
                                    [
                                        1,
                                        "#fec3fe"
                                    ]
                                ]
                            },
                            "plot_bgcolor": "white",
                            "paper_bgcolor": "white",
                            "shapedefaults": {
                                "line": {
                                    "width": 0
                                },
                                "opacity": 0.4,
                                "fillcolor": "#506784"
                            },
                            "annotationdefaults": {
                                "arrowhead": 0,
                                "arrowcolor": "#506784",
                                "arrowwidth": 1
                            }
                        },
                        "themeRef": "PLOTLY_WHITE"
                    },
                    "annotations": [
                        {
                            "x": 57.64877697841726,
                            "y": 1003.1516438154208,
                            "font": {
                                "size": 23,
                                "family": "Arial"
                            },
                            "text": "CF4-NORTH1 Sheet",
                            "showarrow": false
                        }
                    ]
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~pomarede",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/67.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-4.jpg",
                "bio": "Cosmographer at University Paris-Saclay",
                "nickname": "Daniel Pomarède",
                "website": "https://vimeo.com/pomarede",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2021-05-07 12:32:24",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "pomarede",
                "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-04T09:47:36.424630Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~neshwin.teri/1.embed",
            "fid": "neshwin.teri:1",
            "filename": "plotly_scatter",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/neshwin.teri/1/9_2FEJ5HGOH16FBKULERCVJN3GGAITZ4.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/neshwin.teri/1/2_B71VWYTEIW724I11OUYVEPDY9YBIUF.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/neshwin.teri/1/8_5I2R294ET8KN2S03MBG04PNC40A3TP.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/neshwin.teri/1/9_2FEJ5HGOH16FBKULERCVJN3GGAITZ4.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/neshwin.teri:1",
                "plots": "https://api.plotly.com/v2/plots/neshwin.teri:1",
                "parent": "https://api.plotly.com/v2/folders/home?user=neshwin.teri"
            },
            "owner": "neshwin.teri",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 1,
            "web_url": "https://chart-studio.plotly.com/~neshwin.teri/1/",
            "world_readable": true,
            "date_modified": "2024-04-04T09:48:16.447Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~neshwin.teri/1/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "mode": "lines+markers",
                        "name": "Wind",
                        "type": "scatter",
                        "xsrc": "neshwin.teri:2:f1edaf",
                        "ysrc": "neshwin.teri:2:b9206e"
                    },
                    {
                        "fill": "toself",
                        "line": {
                            "color": "rgba(255,255,255,0)"
                        },
                        "name": "Wind Range",
                        "type": "scatter",
                        "xsrc": "neshwin.teri:2:10216b",
                        "ysrc": "neshwin.teri:2:88dcc1",
                        "fillcolor": "rgba(0,100,80,0.2)"
                    }
                ],
                "layout": {
                    "title": {
                        "text": "Range of Wind Capital Costs Over Time (2022-2050)"
                    },
                    "xaxis": {
                        "title": {
                            "text": "Year"
                        }
                    },
                    "yaxis": {
                        "title": {
                            "text": "Capital Cost (Rs)"
                        }
                    },
                    "legend": {
                        "x": 1,
                        "y": 1.1,
                        "xanchor": "right",
                        "yanchor": "top",
                        "orientation": "h"
                    },
                    "template": {
                        "data": {
                            "bar": [
                                {
                                    "type": "bar",
                                    "marker": {
                                        "line": {
                                            "color": "#E5ECF6",
                                            "width": 0.5
                                        },
                                        "pattern": {
                                            "size": 10,
                                            "fillmode": "overlay",
                                            "solidity": 0.2
                                        }
                                    },
                                    "error_x": {
                                        "color": "#2a3f5f"
                                    },
                                    "error_y": {
                                        "color": "#2a3f5f"
                                    }
                                }
                            ],
                            "pie": [
                                {
                                    "type": "pie",
                                    "automargin": true
                                }
                            ],
                            "table": [
                                {
                                    "type": "table",
                                    "cells": {
                                        "fill": {
                                            "color": "#EBF0F8"
                                        },
                                        "line": {
                                            "color": "white"
                                        }
                                    },
                                    "header": {
                                        "fill": {
                                            "color": "#C8D4E3"
                                        },
                                        "line": {
                                            "color": "white"
                                        }
                                    }
                                }
                            ],
                            "carpet": [
                                {
                                    "type": "carpet",
                                    "aaxis": {
                                        "gridcolor": "white",
                                        "linecolor": "white",
                                        "endlinecolor": "#2a3f5f",
                                        "minorgridcolor": "white",
                                        "startlinecolor": "#2a3f5f"
                                    },
                                    "baxis": {
                                        "gridcolor": "white",
                                        "linecolor": "white",
                                        "endlinecolor": "#2a3f5f",
                                        "minorgridcolor": "white",
                                        "startlinecolor": "#2a3f5f"
                                    }
                                }
                            ],
                            "mesh3d": [
                                {
                                    "type": "mesh3d",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "contour": [
                                {
                                    "type": "contour",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "colorscale": [
                                        [
                                            0.0,
                                            "#0d0887"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#46039f"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#7201a8"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#9c179e"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#bd3786"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#d8576b"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#ed7953"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#fb9f3a"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#fdca26"
                                        ],
                                        [
                                            1.0,
                                            "#f0f921"
                                        ]
                                    ]
                                }
                            ],
                            "heatmap": [
                                {
                                    "type": "heatmap",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "colorscale": [
                                        [
                                            0.0,
                                            "#0d0887"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#46039f"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#7201a8"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#9c179e"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#bd3786"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#d8576b"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#ed7953"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#fb9f3a"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#fdca26"
                                        ],
                                        [
                                            1.0,
                                            "#f0f921"
                                        ]
                                    ]
                                }
                            ],
                            "scatter": [
                                {
                                    "type": "scatter",
                                    "fillpattern": {
                                        "size": 10,
                                        "fillmode": "overlay",
                                        "solidity": 0.2
                                    }
                                }
                            ],
                            "surface": [
                                {
                                    "type": "surface",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "colorscale": [
                                        [
                                            0.0,
                                            "#0d0887"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#46039f"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#7201a8"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#9c179e"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#bd3786"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#d8576b"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#ed7953"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#fb9f3a"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#fdca26"
                                        ],
                                        [
                                            1.0,
                                            "#f0f921"
                                        ]
                                    ]
                                }
                            ],
                            "barpolar": [
                                {
                                    "type": "barpolar",
                                    "marker": {
                                        "line": {
                                            "color": "#E5ECF6",
                                            "width": 0.5
                                        },
                                        "pattern": {
                                            "size": 10,
                                            "fillmode": "overlay",
                                            "solidity": 0.2
                                        }
                                    }
                                }
                            ],
                            "heatmapgl": [
                                {
                                    "type": "heatmapgl",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "colorscale": [
                                        [
                                            0.0,
                                            "#0d0887"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#46039f"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#7201a8"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#9c179e"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#bd3786"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#d8576b"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#ed7953"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#fb9f3a"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#fdca26"
                                        ],
                                        [
                                            1.0,
                                            "#f0f921"
                                        ]
                                    ]
                                }
                            ],
                            "histogram": [
                                {
                                    "type": "histogram",
                                    "marker": {
                                        "pattern": {
                                            "size": 10,
                                            "fillmode": "overlay",
                                            "solidity": 0.2
                                        }
                                    }
                                }
                            ],
                            "parcoords": [
                                {
                                    "line": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    },
                                    "type": "parcoords"
                                }
                            ],
                            "scatter3d": [
                                {
                                    "line": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    },
                                    "type": "scatter3d",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scattergl": [
                                {
                                    "type": "scattergl",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "choropleth": [
                                {
                                    "type": "choropleth",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "scattergeo": [
                                {
                                    "type": "scattergeo",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "histogram2d": [
                                {
                                    "type": "histogram2d",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "colorscale": [
                                        [
                                            0.0,
                                            "#0d0887"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#46039f"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#7201a8"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#9c179e"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#bd3786"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#d8576b"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#ed7953"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#fb9f3a"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#fdca26"
                                        ],
                                        [
                                            1.0,
                                            "#f0f921"
                                        ]
                                    ]
                                }
                            ],
                            "scatterpolar": [
                                {
                                    "type": "scatterpolar",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "contourcarpet": [
                                {
                                    "type": "contourcarpet",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "scattercarpet": [
                                {
                                    "type": "scattercarpet",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scattermapbox": [
                                {
                                    "type": "scattermapbox",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scatterpolargl": [
                                {
                                    "type": "scatterpolargl",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scatterternary": [
                                {
                                    "type": "scatterternary",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "histogram2dcontour": [
                                {
                                    "type": "histogram2dcontour",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "colorscale": [
                                        [
                                            0.0,
                                            "#0d0887"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#46039f"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#7201a8"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#9c179e"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#bd3786"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#d8576b"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#ed7953"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#fb9f3a"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#fdca26"
                                        ],
                                        [
                                            1.0,
                                            "#f0f921"
                                        ]
                                    ]
                                }
                            ]
                        },
                        "layout": {
                            "geo": {
                                "bgcolor": "white",
                                "showland": true,
                                "lakecolor": "white",
                                "landcolor": "#E5ECF6",
                                "showlakes": true,
                                "subunitcolor": "white"
                            },
                            "font": {
                                "color": "#2a3f5f"
                            },
                            "polar": {
                                "bgcolor": "#E5ECF6",
                                "radialaxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "linecolor": "white"
                                },
                                "angularaxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "linecolor": "white"
                                }
                            },
                            "scene": {
                                "xaxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "gridwidth": 2,
                                    "linecolor": "white",
                                    "zerolinecolor": "white",
                                    "showbackground": true,
                                    "backgroundcolor": "#E5ECF6"
                                },
                                "yaxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "gridwidth": 2,
                                    "linecolor": "white",
                                    "zerolinecolor": "white",
                                    "showbackground": true,
                                    "backgroundcolor": "#E5ECF6"
                                },
                                "zaxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "gridwidth": 2,
                                    "linecolor": "white",
                                    "zerolinecolor": "white",
                                    "showbackground": true,
                                    "backgroundcolor": "#E5ECF6"
                                }
                            },
                            "title": {
                                "x": 0.05
                            },
                            "xaxis": {
                                "ticks": "",
                                "title": {
                                    "standoff": 15
                                },
                                "gridcolor": "white",
                                "linecolor": "white",
                                "automargin": true,
                                "zerolinecolor": "white",
                                "zerolinewidth": 2
                            },
                            "yaxis": {
                                "ticks": "",
                                "title": {
                                    "standoff": 15
                                },
                                "gridcolor": "white",
                                "linecolor": "white",
                                "automargin": true,
                                "zerolinecolor": "white",
                                "zerolinewidth": 2
                            },
                            "mapbox": {
                                "style": "light"
                            },
                            "ternary": {
                                "aaxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "linecolor": "white"
                                },
                                "baxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "linecolor": "white"
                                },
                                "caxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "linecolor": "white"
                                },
                                "bgcolor": "#E5ECF6"
                            },
                            "colorway": [
                                "#636efa",
                                "#EF553B",
                                "#00cc96",
                                "#ab63fa",
                                "#FFA15A",
                                "#19d3f3",
                                "#FF6692",
                                "#B6E880",
                                "#FF97FF",
                                "#FECB52"
                            ],
                            "coloraxis": {
                                "colorbar": {
                                    "ticks": "",
                                    "outlinewidth": 0
                                }
                            },
                            "hovermode": "closest",
                            "colorscale": {
                                "diverging": [
                                    [
                                        0,
                                        "#8e0152"
                                    ],
                                    [
                                        0.1,
                                        "#c51b7d"
                                    ],
                                    [
                                        0.2,
                                        "#de77ae"
                                    ],
                                    [
                                        0.3,
                                        "#f1b6da"
                                    ],
                                    [
                                        0.4,
                                        "#fde0ef"
                                    ],
                                    [
                                        0.5,
                                        "#f7f7f7"
                                    ],
                                    [
                                        0.6,
                                        "#e6f5d0"
                                    ],
                                    [
                                        0.7,
                                        "#b8e186"
                                    ],
                                    [
                                        0.8,
                                        "#7fbc41"
                                    ],
                                    [
                                        0.9,
                                        "#4d9221"
                                    ],
                                    [
                                        1,
                                        "#276419"
                                    ]
                                ],
                                "sequential": [
                                    [
                                        0.0,
                                        "#0d0887"
                                    ],
                                    [
                                        0.1111111111111111,
                                        "#46039f"
                                    ],
                                    [
                                        0.2222222222222222,
                                        "#7201a8"
                                    ],
                                    [
                                        0.3333333333333333,
                                        "#9c179e"
                                    ],
                                    [
                                        0.4444444444444444,
                                        "#bd3786"
                                    ],
                                    [
                                        0.5555555555555556,
                                        "#d8576b"
                                    ],
                                    [
                                        0.6666666666666666,
                                        "#ed7953"
                                    ],
                                    [
                                        0.7777777777777778,
                                        "#fb9f3a"
                                    ],
                                    [
                                        0.8888888888888888,
                                        "#fdca26"
                                    ],
                                    [
                                        1.0,
                                        "#f0f921"
                                    ]
                                ],
                                "sequentialminus": [
                                    [
                                        0.0,
                                        "#0d0887"
                                    ],
                                    [
                                        0.1111111111111111,
                                        "#46039f"
                                    ],
                                    [
                                        0.2222222222222222,
                                        "#7201a8"
                                    ],
                                    [
                                        0.3333333333333333,
                                        "#9c179e"
                                    ],
                                    [
                                        0.4444444444444444,
                                        "#bd3786"
                                    ],
                                    [
                                        0.5555555555555556,
                                        "#d8576b"
                                    ],
                                    [
                                        0.6666666666666666,
                                        "#ed7953"
                                    ],
                                    [
                                        0.7777777777777778,
                                        "#fb9f3a"
                                    ],
                                    [
                                        0.8888888888888888,
                                        "#fdca26"
                                    ],
                                    [
                                        1.0,
                                        "#f0f921"
                                    ]
                                ]
                            },
                            "hoverlabel": {
                                "align": "left"
                            },
                            "plot_bgcolor": "#E5ECF6",
                            "paper_bgcolor": "white",
                            "shapedefaults": {
                                "line": {
                                    "color": "#2a3f5f"
                                }
                            },
                            "autotypenumbers": "strict",
                            "annotationdefaults": {
                                "arrowhead": 0,
                                "arrowcolor": "#2a3f5f",
                                "arrowwidth": 1
                            }
                        }
                    },
                    "hovermode": "x"
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~neshwin.teri",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/99.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-04 09:43:20",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "neshwin.teri",
                "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-04T09:44:10.511613Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~lemon-solvook/1.embed",
            "fid": "lemon-solvook:1",
            "filename": "motion_bubble_chart",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/lemon-solvook/1/9_OR88NEXHBDHV9A3W8YYJZVNZCA1T2J.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/lemon-solvook/1/2_6GCZIM5EYJSAXOHYUU3UCXUGPDN4MG.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/lemon-solvook/1/8_XLXBCAU7IYZWSNC2KY5NFZUAS3GSBW.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/lemon-solvook/1/9_OR88NEXHBDHV9A3W8YYJZVNZCA1T2J.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/lemon-solvook:1",
                "plots": "https://api.plotly.com/v2/plots/lemon-solvook:1",
                "parent": "https://api.plotly.com/v2/folders/home?user=lemon-solvook"
            },
            "owner": "lemon-solvook",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 63,
            "web_url": "https://chart-studio.plotly.com/~lemon-solvook/1/",
            "world_readable": true,
            "date_modified": "2024-04-04T10:29:44.098Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~lemon-solvook/1/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "mode": "markers",
                        "type": "scatter3d",
                        "xsrc": "lemon-solvook:2:212fe6",
                        "ysrc": "lemon-solvook:2:1d5033",
                        "zsrc": "lemon-solvook:2:686776",
                        "marker": {
                            "size": 5,
                            "opacity": 0.8,
                            "colorsrc": "lemon-solvook:2:338e77",
                            "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"
                                ]
                            ]
                        },
                        "textsrc": "lemon-solvook:2:08ca33"
                    },
                    {
                        "line": {
                            "color": "#fc6d6d",
                            "width": 2
                        },
                        "mode": "lines",
                        "name": "원점 - 출처지문",
                        "type": "scatter3d",
                        "xsrc": "lemon-solvook:2:daf6d6",
                        "ysrc": "lemon-solvook:2:cc13b1",
                        "zsrc": "lemon-solvook:2:f8c7c4"
                    },
                    {
                        "line": {
                            "color": "#fc6d6d",
                            "width": 2
                        },
                        "mode": "lines",
                        "name": "원점 - 지문 B",
                        "type": "scatter3d",
                        "xsrc": "lemon-solvook:2:468aaf",
                        "ysrc": "lemon-solvook:2:935c28",
                        "zsrc": "lemon-solvook:2:d1caca"
                    },
                    {
                        "line": {
                            "color": "purple",
                            "width": 2
                        },
                        "mode": "lines",
                        "name": "출처지문 - 지문 B",
                        "type": "scatter3d",
                        "xsrc": "lemon-solvook:2:697d6c",
                        "ysrc": "lemon-solvook:2:fb1e89",
                        "zsrc": "lemon-solvook:2:bbd9f3"
                    }
                ],
                "layout": {
                    "scene": {
                        "xaxis": {
                            "title": {
                                "text": "PCA_x"
                            }
                        },
                        "yaxis": {
                            "title": {
                                "text": "PCA_y"
                            }
                        },
                        "zaxis": {
                            "title": {
                                "text": "PCA_z"
                            }
                        }
                    },
                    "title": {
                        "text": "PCA 차원축소: Booster(부스터) 유형독해 (2022)"
                    },
                    "template": {
                        "data": {
                            "bar": [
                                {
                                    "type": "bar",
                                    "marker": {
                                        "line": {
                                            "color": "#E5ECF6",
                                            "width": 0.5
                                        },
                                        "pattern": {
                                            "size": 10,
                                            "fillmode": "overlay",
                                            "solidity": 0.2
                                        }
                                    },
                                    "error_x": {
                                        "color": "#2a3f5f"
                                    },
                                    "error_y": {
                                        "color": "#2a3f5f"
                                    }
                                }
                            ],
                            "pie": [
                                {
                                    "type": "pie",
                                    "automargin": true
                                }
                            ],
                            "table": [
                                {
                                    "type": "table",
                                    "cells": {
                                        "fill": {
                                            "color": "#EBF0F8"
                                        },
                                        "line": {
                                            "color": "white"
                                        }
                                    },
                                    "header": {
                                        "fill": {
                                            "color": "#C8D4E3"
                                        },
                                        "line": {
                                            "color": "white"
                                        }
                                    }
                                }
                            ],
                            "carpet": [
                                {
                                    "type": "carpet",
                                    "aaxis": {
                                        "gridcolor": "white",
                                        "linecolor": "white",
                                        "endlinecolor": "#2a3f5f",
                                        "minorgridcolor": "white",
                                        "startlinecolor": "#2a3f5f"
                                    },
                                    "baxis": {
                                        "gridcolor": "white",
                                        "linecolor": "white",
                                        "endlinecolor": "#2a3f5f",
                                        "minorgridcolor": "white",
                                        "startlinecolor": "#2a3f5f"
                                    }
                                }
                            ],
                            "mesh3d": [
                                {
                                    "type": "mesh3d",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "contour": [
                                {
                                    "type": "contour",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "colorscale": [
                                        [
                                            0.0,
                                            "#0d0887"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#46039f"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#7201a8"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#9c179e"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#bd3786"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#d8576b"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#ed7953"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#fb9f3a"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#fdca26"
                                        ],
                                        [
                                            1.0,
                                            "#f0f921"
                                        ]
                                    ]
                                }
                            ],
                            "heatmap": [
                                {
                                    "type": "heatmap",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "colorscale": [
                                        [
                                            0.0,
                                            "#0d0887"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#46039f"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#7201a8"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#9c179e"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#bd3786"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#d8576b"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#ed7953"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#fb9f3a"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#fdca26"
                                        ],
                                        [
                                            1.0,
                                            "#f0f921"
                                        ]
                                    ]
                                }
                            ],
                            "scatter": [
                                {
                                    "type": "scatter",
                                    "fillpattern": {
                                        "size": 10,
                                        "fillmode": "overlay",
                                        "solidity": 0.2
                                    }
                                }
                            ],
                            "surface": [
                                {
                                    "type": "surface",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "colorscale": [
                                        [
                                            0.0,
                                            "#0d0887"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#46039f"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#7201a8"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#9c179e"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#bd3786"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#d8576b"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#ed7953"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#fb9f3a"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#fdca26"
                                        ],
                                        [
                                            1.0,
                                            "#f0f921"
                                        ]
                                    ]
                                }
                            ],
                            "barpolar": [
                                {
                                    "type": "barpolar",
                                    "marker": {
                                        "line": {
                                            "color": "#E5ECF6",
                                            "width": 0.5
                                        },
                                        "pattern": {
                                            "size": 10,
                                            "fillmode": "overlay",
                                            "solidity": 0.2
                                        }
                                    }
                                }
                            ],
                            "heatmapgl": [
                                {
                                    "type": "heatmapgl",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "colorscale": [
                                        [
                                            0.0,
                                            "#0d0887"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#46039f"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#7201a8"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#9c179e"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#bd3786"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#d8576b"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#ed7953"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#fb9f3a"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#fdca26"
                                        ],
                                        [
                                            1.0,
                                            "#f0f921"
                                        ]
                                    ]
                                }
                            ],
                            "histogram": [
                                {
                                    "type": "histogram",
                                    "marker": {
                                        "pattern": {
                                            "size": 10,
                                            "fillmode": "overlay",
                                            "solidity": 0.2
                                        }
                                    }
                                }
                            ],
                            "parcoords": [
                                {
                                    "line": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    },
                                    "type": "parcoords"
                                }
                            ],
                            "scatter3d": [
                                {
                                    "line": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    },
                                    "type": "scatter3d",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scattergl": [
                                {
                                    "type": "scattergl",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "choropleth": [
                                {
                                    "type": "choropleth",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "scattergeo": [
                                {
                                    "type": "scattergeo",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "histogram2d": [
                                {
                                    "type": "histogram2d",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "colorscale": [
                                        [
                                            0.0,
                                            "#0d0887"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#46039f"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#7201a8"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#9c179e"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#bd3786"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#d8576b"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#ed7953"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#fb9f3a"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#fdca26"
                                        ],
                                        [
                                            1.0,
                                            "#f0f921"
                                        ]
                                    ]
                                }
                            ],
                            "scatterpolar": [
                                {
                                    "type": "scatterpolar",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "contourcarpet": [
                                {
                                    "type": "contourcarpet",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "scattercarpet": [
                                {
                                    "type": "scattercarpet",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scattermapbox": [
                                {
                                    "type": "scattermapbox",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scatterpolargl": [
                                {
                                    "type": "scatterpolargl",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scatterternary": [
                                {
                                    "type": "scatterternary",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "histogram2dcontour": [
                                {
                                    "type": "histogram2dcontour",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "colorscale": [
                                        [
                                            0.0,
                                            "#0d0887"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#46039f"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#7201a8"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#9c179e"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#bd3786"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#d8576b"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#ed7953"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#fb9f3a"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#fdca26"
                                        ],
                                        [
                                            1.0,
                                            "#f0f921"
                                        ]
                                    ]
                                }
                            ]
                        },
                        "layout": {
                            "geo": {
                                "bgcolor": "white",
                                "showland": true,
                                "lakecolor": "white",
                                "landcolor": "#E5ECF6",
                                "showlakes": true,
                                "subunitcolor": "white"
                            },
                            "font": {
                                "color": "#2a3f5f"
                            },
                            "polar": {
                                "bgcolor": "#E5ECF6",
                                "radialaxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "linecolor": "white"
                                },
                                "angularaxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "linecolor": "white"
                                }
                            },
                            "scene": {
                                "xaxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "gridwidth": 2,
                                    "linecolor": "white",
                                    "zerolinecolor": "white",
                                    "showbackground": true,
                                    "backgroundcolor": "#E5ECF6"
                                },
                                "yaxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "gridwidth": 2,
                                    "linecolor": "white",
                                    "zerolinecolor": "white",
                                    "showbackground": true,
                                    "backgroundcolor": "#E5ECF6"
                                },
                                "zaxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "gridwidth": 2,
                                    "linecolor": "white",
                                    "zerolinecolor": "white",
                                    "showbackground": true,
                                    "backgroundcolor": "#E5ECF6"
                                }
                            },
                            "title": {
                                "x": 0.05
                            },
                            "xaxis": {
                                "ticks": "",
                                "title": {
                                    "standoff": 15
                                },
                                "gridcolor": "white",
                                "linecolor": "white",
                                "automargin": true,
                                "zerolinecolor": "white",
                                "zerolinewidth": 2
                            },
                            "yaxis": {
                                "ticks": "",
                                "title": {
                                    "standoff": 15
                                },
                                "gridcolor": "white",
                                "linecolor": "white",
                                "automargin": true,
                                "zerolinecolor": "white",
                                "zerolinewidth": 2
                            },
                            "mapbox": {
                                "style": "light"
                            },
                            "ternary": {
                                "aaxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "linecolor": "white"
                                },
                                "baxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "linecolor": "white"
                                },
                                "caxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "linecolor": "white"
                                },
                                "bgcolor": "#E5ECF6"
                            },
                            "colorway": [
                                "#636efa",
                                "#EF553B",
                                "#00cc96",
                                "#ab63fa",
                                "#FFA15A",
                                "#19d3f3",
                                "#FF6692",
                                "#B6E880",
                                "#FF97FF",
                                "#FECB52"
                            ],
                            "coloraxis": {
                                "colorbar": {
                                    "ticks": "",
                                    "outlinewidth": 0
                                }
                            },
                            "hovermode": "closest",
                            "colorscale": {
                                "diverging": [
                                    [
                                        0,
                                        "#8e0152"
                                    ],
                                    [
                                        0.1,
                                        "#c51b7d"
                                    ],
                                    [
                                        0.2,
                                        "#de77ae"
                                    ],
                                    [
                                        0.3,
                                        "#f1b6da"
                                    ],
                                    [
                                        0.4,
                                        "#fde0ef"
                                    ],
                                    [
                                        0.5,
                                        "#f7f7f7"
                                    ],
                                    [
                                        0.6,
                                        "#e6f5d0"
                                    ],
                                    [
                                        0.7,
                                        "#b8e186"
                                    ],
                                    [
                                        0.8,
                                        "#7fbc41"
                                    ],
                                    [
                                        0.9,
                                        "#4d9221"
                                    ],
                                    [
                                        1,
                                        "#276419"
                                    ]
                                ],
                                "sequential": [
                                    [
                                        0.0,
                                        "#0d0887"
                                    ],
                                    [
                                        0.1111111111111111,
                                        "#46039f"
                                    ],
                                    [
                                        0.2222222222222222,
                                        "#7201a8"
                                    ],
                                    [
                                        0.3333333333333333,
                                        "#9c179e"
                                    ],
                                    [
                                        0.4444444444444444,
                                        "#bd3786"
                                    ],
                                    [
                                        0.5555555555555556,
                                        "#d8576b"
                                    ],
                                    [
                                        0.6666666666666666,
                                        "#ed7953"
                                    ],
                                    [
                                        0.7777777777777778,
                                        "#fb9f3a"
                                    ],
                                    [
                                        0.8888888888888888,
                                        "#fdca26"
                                    ],
                                    [
                                        1.0,
                                        "#f0f921"
                                    ]
                                ],
                                "sequentialminus": [
                                    [
                                        0.0,
                                        "#0d0887"
                                    ],
                                    [
                                        0.1111111111111111,
                                        "#46039f"
                                    ],
                                    [
                                        0.2222222222222222,
                                        "#7201a8"
                                    ],
                                    [
                                        0.3333333333333333,
                                        "#9c179e"
                                    ],
                                    [
                                        0.4444444444444444,
                                        "#bd3786"
                                    ],
                                    [
                                        0.5555555555555556,
                                        "#d8576b"
                                    ],
                                    [
                                        0.6666666666666666,
                                        "#ed7953"
                                    ],
                                    [
                                        0.7777777777777778,
                                        "#fb9f3a"
                                    ],
                                    [
                                        0.8888888888888888,
                                        "#fdca26"
                                    ],
                                    [
                                        1.0,
                                        "#f0f921"
                                    ]
                                ]
                            },
                            "hoverlabel": {
                                "align": "left"
                            },
                            "plot_bgcolor": "#E5ECF6",
                            "paper_bgcolor": "white",
                            "shapedefaults": {
                                "line": {
                                    "color": "#2a3f5f"
                                }
                            },
                            "autotypenumbers": "strict",
                            "annotationdefaults": {
                                "arrowhead": 0,
                                "arrowcolor": "#2a3f5f",
                                "arrowwidth": 1
                            }
                        }
                    }
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~lemon-solvook",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/52.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-04 09:35:15",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "lemon-solvook",
                "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-04T09:41:24.700449Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~jf383/12.embed",
            "fid": "jf383:12",
            "filename": "ON_BEADS_4th_april",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/jf383/12/9_NRIIIMRMI3XOC7DAHI6Y84W7NTVTMN.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/jf383/12/2_970YSEQHUUT90UKWIOB1J7NPQFJDS1.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/jf383/12/8_E28A7CTPYPGPAJLJTVEBKP47HHVAPK.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/jf383/12/9_NRIIIMRMI3XOC7DAHI6Y84W7NTVTMN.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/jf383:12",
                "plots": "https://api.plotly.com/v2/plots/jf383:12",
                "parent": "https://api.plotly.com/v2/folders/home?user=jf383"
            },
            "owner": "jf383",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 2,
            "web_url": "https://chart-studio.plotly.com/~jf383/12/",
            "world_readable": true,
            "date_modified": "2024-04-04T09:41:24.725Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~jf383/12/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "mode": "markers",
                        "name": "",
                        "type": "scatter",
                        "xsrc": "jf383:11:be4ff5",
                        "ysrc": "jf383:11:a1761a",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "symbol": "circle",
                            "colorsrc": "jf383:11:ed660a",
                            "coloraxis": "coloraxis"
                        },
                        "showlegend": false,
                        "legendgroup": "",
                        "orientation": "v",
                        "customdatasrc": "jf383:11:9e0401",
                        "hovertemplate": "log2_subtraction=%{x}<br>log2_PSM_withg=%{y}<br>Entry Name=%{customdata[0]}<br>bins=%{marker.color}<extra></extra>"
                    }
                ],
                "layout": {
                    "xaxis": {
                        "title": {
                            "text": "log2_subtraction"
                        },
                        "anchor": "y",
                        "domain": [
                            0.0,
                            1.0
                        ]
                    },
                    "yaxis": {
                        "title": {
                            "text": "log2_PSM_withg"
                        },
                        "anchor": "x",
                        "domain": [
                            0.0,
                            1.0
                        ]
                    },
                    "legend": {
                        "tracegroupgap": 0
                    },
                    "margin": {
                        "t": 60
                    },
                    "shapes": [
                        {
                            "x0": -1,
                            "x1": 10,
                            "y0": 6.37,
                            "y1": 6.37,
                            "line": {
                                "dash": "dot",
                                "color": "black",
                                "width": 2
                            },
                            "type": "line"
                        }
                    ],
                    "template": {
                        "data": {
                            "bar": [
                                {
                                    "type": "bar",
                                    "marker": {
                                        "line": {
                                            "color": "#E5ECF6",
                                            "width": 0.5
                                        },
                                        "pattern": {
                                            "size": 10,
                                            "fillmode": "overlay",
                                            "solidity": 0.2
                                        }
                                    },
                                    "error_x": {
                                        "color": "#2a3f5f"
                                    },
                                    "error_y": {
                                        "color": "#2a3f5f"
                                    }
                                }
                            ],
                            "pie": [
                                {
                                    "type": "pie",
                                    "automargin": true
                                }
                            ],
                            "table": [
                                {
                                    "type": "table",
                                    "cells": {
                                        "fill": {
                                            "color": "#EBF0F8"
                                        },
                                        "line": {
                                            "color": "white"
                                        }
                                    },
                                    "header": {
                                        "fill": {
                                            "color": "#C8D4E3"
                                        },
                                        "line": {
                                            "color": "white"
                                        }
                                    }
                                }
                            ],
                            "carpet": [
                                {
                                    "type": "carpet",
                                    "aaxis": {
                                        "gridcolor": "white",
                                        "linecolor": "white",
                                        "endlinecolor": "#2a3f5f",
                                        "minorgridcolor": "white",
                                        "startlinecolor": "#2a3f5f"
                                    },
                                    "baxis": {
                                        "gridcolor": "white",
                                        "linecolor": "white",
                                        "endlinecolor": "#2a3f5f",
                                        "minorgridcolor": "white",
                                        "startlinecolor": "#2a3f5f"
                                    }
                                }
                            ],
                            "mesh3d": [
                                {
                                    "type": "mesh3d",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "contour": [
                                {
                                    "type": "contour",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "colorscale": [
                                        [
                                            0.0,
                                            "#0d0887"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#46039f"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#7201a8"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#9c179e"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#bd3786"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#d8576b"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#ed7953"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#fb9f3a"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#fdca26"
                                        ],
                                        [
                                            1.0,
                                            "#f0f921"
                                        ]
                                    ]
                                }
                            ],
                            "heatmap": [
                                {
                                    "type": "heatmap",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "colorscale": [
                                        [
                                            0.0,
                                            "#0d0887"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#46039f"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#7201a8"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#9c179e"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#bd3786"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#d8576b"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#ed7953"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#fb9f3a"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#fdca26"
                                        ],
                                        [
                                            1.0,
                                            "#f0f921"
                                        ]
                                    ]
                                }
                            ],
                            "scatter": [
                                {
                                    "type": "scatter",
                                    "fillpattern": {
                                        "size": 10,
                                        "fillmode": "overlay",
                                        "solidity": 0.2
                                    }
                                }
                            ],
                            "surface": [
                                {
                                    "type": "surface",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "colorscale": [
                                        [
                                            0.0,
                                            "#0d0887"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#46039f"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#7201a8"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#9c179e"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#bd3786"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#d8576b"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#ed7953"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#fb9f3a"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#fdca26"
                                        ],
                                        [
                                            1.0,
                                            "#f0f921"
                                        ]
                                    ]
                                }
                            ],
                            "barpolar": [
                                {
                                    "type": "barpolar",
                                    "marker": {
                                        "line": {
                                            "color": "#E5ECF6",
                                            "width": 0.5
                                        },
                                        "pattern": {
                                            "size": 10,
                                            "fillmode": "overlay",
                                            "solidity": 0.2
                                        }
                                    }
                                }
                            ],
                            "heatmapgl": [
                                {
                                    "type": "heatmapgl",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "colorscale": [
                                        [
                                            0.0,
                                            "#0d0887"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#46039f"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#7201a8"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#9c179e"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#bd3786"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#d8576b"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#ed7953"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#fb9f3a"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#fdca26"
                                        ],
                                        [
                                            1.0,
                                            "#f0f921"
                                        ]
                                    ]
                                }
                            ],
                            "histogram": [
                                {
                                    "type": "histogram",
                                    "marker": {
                                        "pattern": {
                                            "size": 10,
                                            "fillmode": "overlay",
                                            "solidity": 0.2
                                        }
                                    }
                                }
                            ],
                            "parcoords": [
                                {
                                    "line": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    },
                                    "type": "parcoords"
                                }
                            ],
                            "scatter3d": [
                                {
                                    "line": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    },
                                    "type": "scatter3d",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scattergl": [
                                {
                                    "type": "scattergl",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "choropleth": [
                                {
                                    "type": "choropleth",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "scattergeo": [
                                {
                                    "type": "scattergeo",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "histogram2d": [
                                {
                                    "type": "histogram2d",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "colorscale": [
                                        [
                                            0.0,
                                            "#0d0887"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#46039f"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#7201a8"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#9c179e"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#bd3786"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#d8576b"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#ed7953"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#fb9f3a"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#fdca26"
                                        ],
                                        [
                                            1.0,
                                            "#f0f921"
                                        ]
                                    ]
                                }
                            ],
                            "scatterpolar": [
                                {
                                    "type": "scatterpolar",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "contourcarpet": [
                                {
                                    "type": "contourcarpet",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "scattercarpet": [
                                {
                                    "type": "scattercarpet",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scattermapbox": [
                                {
                                    "type": "scattermapbox",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scatterpolargl": [
                                {
                                    "type": "scatterpolargl",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scatterternary": [
                                {
                                    "type": "scatterternary",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "histogram2dcontour": [
                                {
                                    "type": "histogram2dcontour",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "colorscale": [
                                        [
                                            0.0,
                                            "#0d0887"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#46039f"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#7201a8"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#9c179e"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#bd3786"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#d8576b"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#ed7953"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#fb9f3a"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#fdca26"
                                        ],
                                        [
                                            1.0,
                                            "#f0f921"
                                        ]
                                    ]
                                }
                            ]
                        },
                        "layout": {
                            "geo": {
                                "bgcolor": "white",
                                "showland": true,
                                "lakecolor": "white",
                                "landcolor": "#E5ECF6",
                                "showlakes": true,
                                "subunitcolor": "white"
                            },
                            "font": {
                                "color": "#2a3f5f"
                            },
                            "polar": {
                                "bgcolor": "#E5ECF6",
                                "radialaxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "linecolor": "white"
                                },
                                "angularaxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "linecolor": "white"
                                }
                            },
                            "scene": {
                                "xaxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "gridwidth": 2,
                                    "linecolor": "white",
                                    "zerolinecolor": "white",
                                    "showbackground": true,
                                    "backgroundcolor": "#E5ECF6"
                                },
                                "yaxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "gridwidth": 2,
                                    "linecolor": "white",
                                    "zerolinecolor": "white",
                                    "showbackground": true,
                                    "backgroundcolor": "#E5ECF6"
                                },
                                "zaxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "gridwidth": 2,
                                    "linecolor": "white",
                                    "zerolinecolor": "white",
                                    "showbackground": true,
                                    "backgroundcolor": "#E5ECF6"
                                }
                            },
                            "title": {
                                "x": 0.05
                            },
                            "xaxis": {
                                "ticks": "",
                                "title": {
                                    "standoff": 15
                                },
                                "gridcolor": "white",
                                "linecolor": "white",
                                "automargin": true,
                                "zerolinecolor": "white",
                                "zerolinewidth": 2
                            },
                            "yaxis": {
                                "ticks": "",
                                "title": {
                                    "standoff": 15
                                },
                                "gridcolor": "white",
                                "linecolor": "white",
                                "automargin": true,
                                "zerolinecolor": "white",
                                "zerolinewidth": 2
                            },
                            "mapbox": {
                                "style": "light"
                            },
                            "ternary": {
                                "aaxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "linecolor": "white"
                                },
                                "baxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "linecolor": "white"
                                },
                                "caxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "linecolor": "white"
                                },
                                "bgcolor": "#E5ECF6"
                            },
                            "colorway": [
                                "#636efa",
                                "#EF553B",
                                "#00cc96",
                                "#ab63fa",
                                "#FFA15A",
                                "#19d3f3",
                                "#FF6692",
                                "#B6E880",
                                "#FF97FF",
                                "#FECB52"
                            ],
                            "coloraxis": {
                                "colorbar": {
                                    "ticks": "",
                                    "outlinewidth": 0
                                }
                            },
                            "hovermode": "closest",
                            "colorscale": {
                                "diverging": [
                                    [
                                        0,
                                        "#8e0152"
                                    ],
                                    [
                                        0.1,
                                        "#c51b7d"
                                    ],
                                    [
                                        0.2,
                                        "#de77ae"
                                    ],
                                    [
                                        0.3,
                                        "#f1b6da"
                                    ],
                                    [
                                        0.4,
                                        "#fde0ef"
                                    ],
                                    [
                                        0.5,
                                        "#f7f7f7"
                                    ],
                                    [
                                        0.6,
                                        "#e6f5d0"
                                    ],
                                    [
                                        0.7,
                                        "#b8e186"
                                    ],
                                    [
                                        0.8,
                                        "#7fbc41"
                                    ],
                                    [
                                        0.9,
                                        "#4d9221"
                                    ],
                                    [
                                        1,
                                        "#276419"
                                    ]
                                ],
                                "sequential": [
                                    [
                                        0.0,
                                        "#0d0887"
                                    ],
                                    [
                                        0.1111111111111111,
                                        "#46039f"
                                    ],
                                    [
                                        0.2222222222222222,
                                        "#7201a8"
                                    ],
                                    [
                                        0.3333333333333333,
                                        "#9c179e"
                                    ],
                                    [
                                        0.4444444444444444,
                                        "#bd3786"
                                    ],
                                    [
                                        0.5555555555555556,
                                        "#d8576b"
                                    ],
                                    [
                                        0.6666666666666666,
                                        "#ed7953"
                                    ],
                                    [
                                        0.7777777777777778,
                                        "#fb9f3a"
                                    ],
                                    [
                                        0.8888888888888888,
                                        "#fdca26"
                                    ],
                                    [
                                        1.0,
                                        "#f0f921"
                                    ]
                                ],
                                "sequentialminus": [
                                    [
                                        0.0,
                                        "#0d0887"
                                    ],
                                    [
                                        0.1111111111111111,
                                        "#46039f"
                                    ],
                                    [
                                        0.2222222222222222,
                                        "#7201a8"
                                    ],
                                    [
                                        0.3333333333333333,
                                        "#9c179e"
                                    ],
                                    [
                                        0.4444444444444444,
                                        "#bd3786"
                                    ],
                                    [
                                        0.5555555555555556,
                                        "#d8576b"
                                    ],
                                    [
                                        0.6666666666666666,
                                        "#ed7953"
                                    ],
                                    [
                                        0.7777777777777778,
                                        "#fb9f3a"
                                    ],
                                    [
                                        0.8888888888888888,
                                        "#fdca26"
                                    ],
                                    [
                                        1.0,
                                        "#f0f921"
                                    ]
                                ]
                            },
                            "hoverlabel": {
                                "align": "left"
                            },
                            "plot_bgcolor": "#E5ECF6",
                            "paper_bgcolor": "white",
                            "shapedefaults": {
                                "line": {
                                    "color": "#2a3f5f"
                                }
                            },
                            "autotypenumbers": "strict",
                            "annotationdefaults": {
                                "arrowhead": 0,
                                "arrowcolor": "#2a3f5f",
                                "arrowwidth": 1
                            }
                        }
                    },
                    "coloraxis": {
                        "colorbar": {
                            "title": {
                                "text": "bins"
                            }
                        },
                        "colorscale": [
                            [
                                0.0,
                                "#0d0887"
                            ],
                            [
                                0.1111111111111111,
                                "#46039f"
                            ],
                            [
                                0.2222222222222222,
                                "#7201a8"
                            ],
                            [
                                0.3333333333333333,
                                "#9c179e"
                            ],
                            [
                                0.4444444444444444,
                                "#bd3786"
                            ],
                            [
                                0.5555555555555556,
                                "#d8576b"
                            ],
                            [
                                0.6666666666666666,
                                "#ed7953"
                            ],
                            [
                                0.7777777777777778,
                                "#fb9f3a"
                            ],
                            [
                                0.8888888888888888,
                                "#fdca26"
                            ],
                            [
                                1.0,
                                "#f0f921"
                            ]
                        ]
                    },
                    "annotations": [
                        {
                            "x": 8.280770770130603,
                            "y": 9.079484783826816,
                            "font": {
                                "size": 8
                            },
                            "text": "LMNA",
                            "showarrow": false
                        },
                        {
                            "x": 8.276124405274238,
                            "y": 8.471675214392045,
                            "font": {
                                "size": 8
                            },
                            "text": "RBMX",
                            "showarrow": false
                        },
                        {
                            "x": 7.366322214245816,
                            "y": 7.554588851677638,
                            "font": {
                                "size": 8
                            },
                            "text": "RMXL1",
                            "showarrow": false
                        },
                        {
                            "x": 7.2384047393250786,
                            "y": 7.643856189774724,
                            "font": {
                                "size": 8
                            },
                            "text": "NU153",
                            "showarrow": false
                        },
                        {
                            "x": 7.189824558880018,
                            "y": 7.651051691178929,
                            "font": {
                                "size": 8
                            },
                            "text": "HNRPK",
                            "showarrow": false
                        },
                        {
                            "x": 7.05528243550119,
                            "y": 7.531381460516312,
                            "font": {
                                "size": 8
                            },
                            "text": "ROA2",
                            "showarrow": false
                        },
                        {
                            "x": 7.044394119358453,
                            "y": 7.636624620543649,
                            "font": {
                                "size": 8
                            },
                            "text": "NUMA1",
                            "showarrow": false
                        },
                        {
                            "x": 6.906890595608519,
                            "y": 7.592457037268081,
                            "font": {
                                "size": 8
                            },
                            "text": "LMNB1",
                            "showarrow": false
                        },
                        {
                            "x": 6.832890014164741,
                            "y": 7.139551352398794,
                            "font": {
                                "size": 8
                            },
                            "text": "MATR3",
                            "showarrow": false
                        },
                        {
                            "x": 6.539158811108031,
                            "y": 6.977279923499917,
                            "font": {
                                "size": 8
                            },
                            "text": "DDX5",
                            "showarrow": false
                        },
                        {
                            "x": 6.3750394313469245,
                            "y": 7.022367813028454,
                            "font": {
                                "size": 8
                            },
                            "text": "FUBP2",
                            "showarrow": false
                        },
                        {
                            "x": 6.3750394313469245,
                            "y": 6.584962500721156,
                            "font": {
                                "size": 8
                            },
                            "text": "YLPM1",
                            "showarrow": false
                        },
                        {
                            "x": 6.20945336562895,
                            "y": 6.321928094887363,
                            "font": {
                                "size": 8
                            },
                            "text": "TP53B",
                            "showarrow": false
                        },
                        {
                            "x": 6.169925001442312,
                            "y": 6.569855608330948,
                            "font": {
                                "size": 8
                            },
                            "text": "RBM14",
                            "showarrow": false
                        },
                        {
                            "x": 6.169925001442312,
                            "y": 6.954196310386875,
                            "font": {
                                "size": 8
                            },
                            "text": "SRRM2",
                            "showarrow": false
                        },
                        {
                            "x": 6.169925001442312,
                            "y": 6.357552004618084,
                            "font": {
                                "size": 8
                            },
                            "text": "SF3B1",
                            "showarrow": false
                        },
                        {
                            "x": 6.149747119504682,
                            "y": 6.584962500721156,
                            "font": {
                                "size": 8
                            },
                            "text": "KHDR1",
                            "showarrow": false
                        },
                        {
                            "x": 6.129283016944966,
                            "y": 6.672425341971495,
                            "font": {
                                "size": 8
                            },
                            "text": "ROA1",
                            "showarrow": false
                        },
                        {
                            "x": 6.108524456778169,
                            "y": 6.3750394313469245,
                            "font": {
                                "size": 8
                            },
                            "text": "HNRPL",
                            "showarrow": false
                        },
                        {
                            "x": 6.108524456778169,
                            "y": 6.507794640198696,
                            "font": {
                                "size": 8
                            },
                            "text": "ELYS",
                            "showarrow": false
                        },
                        {
                            "x": 6.066089190457772,
                            "y": 6.6865005271832185,
                            "font": {
                                "size": 8
                            },
                            "text": "DDX17",
                            "showarrow": false
                        },
                        {
                            "x": 6.0,
                            "y": 6.247927513443585,
                            "font": {
                                "size": 8
                            },
                            "text": "SAFB2",
                            "showarrow": false
                        },
                        {
                            "x": 5.977279923499917,
                            "y": 6.189824558880018,
                            "font": {
                                "size": 8
                            },
                            "text": "HNRL1",
                            "showarrow": false
                        },
                        {
                            "x": 5.954196310386875,
                            "y": 6.426264754702098,
                            "font": {
                                "size": 8
                            },
                            "text": "ROA3",
                            "showarrow": false
                        },
                        {
                            "x": 5.832890014164741,
                            "y": 6.108524456778169,
                            "font": {
                                "size": 8
                            },
                            "text": "SAFB1",
                            "showarrow": false
                        },
                        {
                            "x": 5.807354922057604,
                            "y": 6.087462841250339,
                            "font": {
                                "size": 8
                            },
                            "text": "HNRH3",
                            "showarrow": false
                        },
                        {
                            "x": 5.754887502163468,
                            "y": 6.149747119504682,
                            "font": {
                                "size": 8
                            },
                            "text": "TPR",
                            "showarrow": false
                        },
                        {
                            "x": 5.727920454563199,
                            "y": 6.339850002884624,
                            "font": {
                                "size": 8
                            },
                            "text": "TIF1B",
                            "showarrow": false
                        },
                        {
                            "x": 5.727920454563199,
                            "y": 6.882643049361842,
                            "font": {
                                "size": 8
                            },
                            "text": "LMNB2",
                            "showarrow": false
                        },
                        {
                            "x": 5.727920454563199,
                            "y": 6.285402218862249,
                            "font": {
                                "size": 8
                            },
                            "text": "KI67",
                            "showarrow": false
                        },
                        {
                            "x": 5.727920454563199,
                            "y": 6.426264754702098,
                            "font": {
                                "size": 8
                            },
                            "text": "SFPQ",
                            "showarrow": false
                        },
                        {
                            "x": 5.700439718141092,
                            "y": 5.954196310386875,
                            "font": {
                                "size": 8
                            },
                            "text": "APEX1",
                            "showarrow": false
                        },
                        {
                            "x": 5.672425341971495,
                            "y": 6.108524456778169,
                            "font": {
                                "size": 8
                            },
                            "text": "TR150",
                            "showarrow": false
                        },
                        {
                            "x": 5.491853096329675,
                            "y": 5.906890595608519,
                            "font": {
                                "size": 8
                            },
                            "text": "HNRPR",
                            "showarrow": false
                        },
                        {
                            "x": 5.392317422778761,
                            "y": 5.614709844115208,
                            "font": {
                                "size": 8
                            },
                            "text": "HNRL2",
                            "showarrow": false
                        },
                        {
                            "x": 5.392317422778761,
                            "y": 5.554588851677638,
                            "font": {
                                "size": 8
                            },
                            "text": "BCLF1",
                            "showarrow": false
                        },
                        {
                            "x": 5.321928094887363,
                            "y": 5.392317422778761,
                            "font": {
                                "size": 8
                            },
                            "text": "RBM10",
                            "showarrow": false
                        },
                        {
                            "x": 5.321928094887363,
                            "y": 5.930737337562887,
                            "font": {
                                "size": 8
                            },
                            "text": "ILF3",
                            "showarrow": false
                        },
                        {
                            "x": 5.285402218862249,
                            "y": 5.672425341971495,
                            "font": {
                                "size": 8
                            },
                            "text": "TPX2",
                            "showarrow": false
                        },
                        {
                            "x": 5.285402218862249,
                            "y": 5.426264754702098,
                            "font": {
                                "size": 8
                            },
                            "text": "RPB1",
                            "showarrow": false
                        },
                        {
                            "x": 5.285402218862249,
                            "y": 5.523561956057013,
                            "font": {
                                "size": 8
                            },
                            "text": "SON",
                            "showarrow": false
                        },
                        {
                            "x": 5.247927513443585,
                            "y": 6.149747119504682,
                            "font": {
                                "size": 8
                            },
                            "text": "NONO",
                            "showarrow": false
                        },
                        {
                            "x": 5.20945336562895,
                            "y": 5.754887502163468,
                            "font": {
                                "size": 8
                            },
                            "text": "HNRDL",
                            "showarrow": false
                        },
                        {
                            "x": 5.169925001442312,
                            "y": 5.20945336562895,
                            "font": {
                                "size": 8
                            },
                            "text": "ARI1A",
                            "showarrow": false
                        },
                        {
                            "x": 5.169925001442312,
                            "y": 5.643856189774724,
                            "font": {
                                "size": 8
                            },
                            "text": "TASO2",
                            "showarrow": false
                        },
                        {
                            "x": 5.129283016944966,
                            "y": 5.426264754702098,
                            "font": {
                                "size": 8
                            },
                            "text": "ZC3HE",
                            "showarrow": false
                        },
                        {
                            "x": 5.129283016944966,
                            "y": 5.285402218862249,
                            "font": {
                                "size": 8
                            },
                            "text": "AKAP8",
                            "showarrow": false
                        },
                        {
                            "x": 5.087462841250339,
                            "y": 5.727920454563199,
                            "font": {
                                "size": 8
                            },
                            "text": "DHX9",
                            "showarrow": false
                        },
                        {
                            "x": 5.087462841250339,
                            "y": 5.392317422778761,
                            "font": {
                                "size": 8
                            },
                            "text": "SRSF1",
                            "showarrow": false
                        },
                        {
                            "x": 5.0,
                            "y": 6.108524456778169,
                            "font": {
                                "size": 8
                            },
                            "text": "HNRPM",
                            "showarrow": false
                        },
                        {
                            "x": 5.0,
                            "y": 5.129283016944966,
                            "font": {
                                "size": 8
                            },
                            "text": "RSF1",
                            "showarrow": false
                        },
                        {
                            "x": 4.954196310386875,
                            "y": 5.426264754702098,
                            "font": {
                                "size": 8
                            },
                            "text": "EMD",
                            "showarrow": false
                        },
                        {
                            "x": 4.954196310386875,
                            "y": 5.129283016944966,
                            "font": {
                                "size": 8
                            },
                            "text": "RBP56",
                            "showarrow": false
                        },
                        {
                            "x": 4.954196310386875,
                            "y": 5.832890014164741,
                            "font": {
                                "size": 8
                            },
                            "text": "HNRPU",
                            "showarrow": false
                        },
                        {
                            "x": 4.954196310386875,
                            "y": 5.20945336562895,
                            "font": {
                                "size": 8
                            },
                            "text": "UBP36",
                            "showarrow": false
                        },
                        {
                            "x": 4.954196310386875,
                            "y": 5.426264754702098,
                            "font": {
                                "size": 8
                            },
                            "text": "HNRPQ",
                            "showarrow": false
                        },
                        {
                            "x": 4.954196310386875,
                            "y": 5.087462841250339,
                            "font": {
                                "size": 8
                            },
                            "text": "SF3B2",
                            "showarrow": false
                        },
                        {
                            "x": 4.857980995127572,
                            "y": 6.169925001442312,
                            "font": {
                                "size": 8
                            },
                            "text": "LAP2B",
                            "showarrow": false
                        },
                        {
                            "x": 4.857980995127572,
                            "y": 5.169925001442312,
                            "font": {
                                "size": 8
                            },
                            "text": "SNUT1",
                            "showarrow": false
                        },
                        {
                            "x": 4.807354922057604,
                            "y": 5.285402218862249,
                            "font": {
                                "size": 8
                            },
                            "text": "HNRH1",
                            "showarrow": false
                        },
                        {
                            "x": 4.754887502163468,
                            "y": 4.807354922057604,
                            "font": {
                                "size": 8
                            },
                            "text": "EWS",
                            "showarrow": false
                        },
                        {
                            "x": 4.754887502163468,
                            "y": 5.087462841250339,
                            "font": {
                                "size": 8
                            },
                            "text": "ROAA",
                            "showarrow": false
                        },
                        {
                            "x": 4.754887502163468,
                            "y": 4.954196310386875,
                            "font": {
                                "size": 8
                            },
                            "text": "SRS10",
                            "showarrow": false
                        },
                        {
                            "x": 4.700439718141092,
                            "y": 5.0,
                            "font": {
                                "size": 8
                            },
                            "text": "TRA2B",
                            "showarrow": false
                        },
                        {
                            "x": 4.643856189774724,
                            "y": 4.906890595608519,
                            "font": {
                                "size": 8
                            },
                            "text": "HNRPF",
                            "showarrow": false
                        },
                        {
                            "x": 4.643856189774724,
                            "y": 5.321928094887363,
                            "font": {
                                "size": 8
                            },
                            "text": "SF3A1",
                            "showarrow": false
                        },
                        {
                            "x": 4.643856189774724,
                            "y": 4.906890595608519,
                            "font": {
                                "size": 8
                            },
                            "text": "FUS",
                            "showarrow": false
                        },
                        {
                            "x": 4.643856189774724,
                            "y": 4.807354922057604,
                            "font": {
                                "size": 8
                            },
                            "text": "DIDO1",
                            "showarrow": false
                        },
                        {
                            "x": 4.584962500721156,
                            "y": 4.857980995127572,
                            "font": {
                                "size": 8
                            },
                            "text": "RUNX1",
                            "showarrow": false
                        },
                        {
                            "x": 4.584962500721156,
                            "y": 5.0,
                            "font": {
                                "size": 8
                            },
                            "text": "ACINU",
                            "showarrow": false
                        },
                        {
                            "x": 4.584962500721156,
                            "y": 4.643856189774724,
                            "font": {
                                "size": 8
                            },
                            "text": "CHERP",
                            "showarrow": false
                        },
                        {
                            "x": 4.523561956057013,
                            "y": 4.857980995127572,
                            "font": {
                                "size": 8
                            },
                            "text": "SUGP2",
                            "showarrow": false
                        },
                        {
                            "x": 4.459431618637297,
                            "y": 4.857980995127572,
                            "font": {
                                "size": 8
                            },
                            "text": "P121A",
                            "showarrow": false
                        },
                        {
                            "x": 4.392317422778761,
                            "y": 5.0,
                            "font": {
                                "size": 8
                            },
                            "text": "SPB1",
                            "showarrow": false
                        },
                        {
                            "x": 4.392317422778761,
                            "y": 4.807354922057604,
                            "font": {
                                "size": 8
                            },
                            "text": "TOIP1",
                            "showarrow": false
                        },
                        {
                            "x": 4.321928094887363,
                            "y": 4.643856189774724,
                            "font": {
                                "size": 8
                            },
                            "text": "INCE",
                            "showarrow": false
                        },
                        {
                            "x": 4.321928094887363,
                            "y": 5.459431618637297,
                            "font": {
                                "size": 8
                            },
                            "text": "HNRPC",
                            "showarrow": false
                        },
                        {
                            "x": 4.321928094887363,
                            "y": 4.459431618637297,
                            "font": {
                                "size": 8
                            },
                            "text": "RED",
                            "showarrow": false
                        },
                        {
                            "x": 4.321928094887363,
                            "y": 4.459431618637297,
                            "font": {
                                "size": 8
                            },
                            "text": "UHRF1",
                            "showarrow": false
                        },
                        {
                            "x": 4.321928094887363,
                            "y": 4.754887502163468,
                            "font": {
                                "size": 8
                            },
                            "text": "SNW1",
                            "showarrow": false
                        },
                        {
                            "x": 4.247927513443585,
                            "y": 4.700439718141092,
                            "font": {
                                "size": 8
                            },
                            "text": "PHF3",
                            "showarrow": false
                        },
                        {
                            "x": 4.247927513443585,
                            "y": 4.459431618637297,
                            "font": {
                                "size": 8
                            },
                            "text": "SRSF9",
                            "showarrow": false
                        },
                        {
                            "x": 4.169925001442312,
                            "y": 4.523561956057013,
                            "font": {
                                "size": 8
                            },
                            "text": "RAI1",
                            "showarrow": false
                        },
                        {
                            "x": 4.169925001442312,
                            "y": 4.459431618637297,
                            "font": {
                                "size": 8
                            },
                            "text": "DHX15",
                            "showarrow": false
                        },
                        {
                            "x": 4.169925001442312,
                            "y": 4.459431618637297,
                            "font": {
                                "size": 8
                            },
                            "text": "UT14A",
                            "showarrow": false
                        },
                        {
                            "x": 4.169925001442312,
                            "y": 4.643856189774724,
                            "font": {
                                "size": 8
                            },
                            "text": "HNRPD",
                            "showarrow": false
                        },
                        {
                            "x": 4.087462841250339,
                            "y": 4.523561956057013,
                            "font": {
                                "size": 8
                            },
                            "text": "NUP98",
                            "showarrow": false
                        },
                        {
                            "x": 4.087462841250339,
                            "y": 4.247927513443585,
                            "font": {
                                "size": 8
                            },
                            "text": "CEBPB",
                            "showarrow": false
                        },
                        {
                            "x": 4.087462841250339,
                            "y": 4.169925001442312,
                            "font": {
                                "size": 8
                            },
                            "text": "RAD21",
                            "showarrow": false
                        },
                        {
                            "x": 4.087462841250339,
                            "y": 4.321928094887363,
                            "font": {
                                "size": 8
                            },
                            "text": "CIZ1",
                            "showarrow": false
                        },
                        {
                            "x": 4.0,
                            "y": 4.700439718141092,
                            "font": {
                                "size": 8
                            },
                            "text": "SLTM",
                            "showarrow": false
                        },
                        {
                            "x": 4.0,
                            "y": 4.807354922057604,
                            "font": {
                                "size": 8
                            },
                            "text": "RCC1",
                            "showarrow": false
                        },
                        {
                            "x": 4.0,
                            "y": 4.247927513443585,
                            "font": {
                                "size": 8
                            },
                            "text": "RBM3",
                            "showarrow": false
                        },
                        {
                            "x": 4.0,
                            "y": 4.700439718141092,
                            "font": {
                                "size": 8
                            },
                            "text": "ZN326",
                            "showarrow": false
                        },
                        {
                            "x": 4.0,
                            "y": 4.247927513443585,
                            "font": {
                                "size": 8
                            },
                            "text": "SP16H",
                            "showarrow": false
                        },
                        {
                            "x": 3.9068905956085187,
                            "y": 4.087462841250339,
                            "font": {
                                "size": 8
                            },
                            "text": "U520",
                            "showarrow": false
                        },
                        {
                            "x": 3.9068905956085187,
                            "y": 4.392317422778761,
                            "font": {
                                "size": 8
                            },
                            "text": "NKRF",
                            "showarrow": false
                        },
                        {
                            "x": 3.9068905956085187,
                            "y": 4.0,
                            "font": {
                                "size": 8
                            },
                            "text": "NCOA5",
                            "showarrow": false
                        },
                        {
                            "x": 3.9068905956085187,
                            "y": 4.247927513443585,
                            "font": {
                                "size": 8
                            },
                            "text": "CAF1A",
                            "showarrow": false
                        },
                        {
                            "x": 3.9068905956085187,
                            "y": 4.523561956057013,
                            "font": {
                                "size": 8
                            },
                            "text": "AHDC1",
                            "showarrow": false
                        }
                    ]
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~jf383",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/57.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-5.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2024-03-25 11:21:57",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "jf383",
                "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-04T09:34:00.521303Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~FloryV/4.embed",
            "fid": "FloryV:4",
            "filename": "tem",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/FloryV/4/9_WDV1VBMT4J04UDF3YCYMLNJ9WHOYKD.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/FloryV/4/2_MPFW8XXFIB77G3I1YMRNFE82E644G3.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/FloryV/4/8_LQ4OSQRB62GC8V0WAMQEWN7DU5T6OA.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/FloryV/4/9_WDV1VBMT4J04UDF3YCYMLNJ9WHOYKD.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/FloryV:4",
                "plots": "https://api.plotly.com/v2/plots/FloryV:4",
                "parent": "https://api.plotly.com/v2/folders/home?user=FloryV"
            },
            "owner": "FloryV",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 1,
            "web_url": "https://chart-studio.plotly.com/~FloryV/4/",
            "world_readable": true,
            "date_modified": "2024-04-06T05:35:23.585Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~FloryV/4/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": false,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "line": {
                            "dash": "solid",
                            "shape": "linear"
                        },
                        "meta": {
                            "columnNames": {
                                "x": "A",
                                "y": "B"
                            }
                        },
                        "mode": "markers+lines",
                        "name": "25<sup>0</sup>C",
                        "type": "scatter",
                        "xsrc": "FloryV:2:1955bc",
                        "ysrc": "FloryV:2:f086e6",
                        "marker": {
                            "symbol": "diamond"
                        },
                        "boxpoints": false,
                        "orientation": "v",
                        "autocolorscale": true
                    },
                    {
                        "line": {
                            "dash": "solid"
                        },
                        "meta": {
                            "columnNames": {
                                "x": "A",
                                "y": "C"
                            }
                        },
                        "mode": "markers+lines",
                        "name": "30<sup>0</sup>C",
                        "type": "scatter",
                        "xsrc": "FloryV:2:1955bc",
                        "ysrc": "FloryV:2:ee3956",
                        "boxpoints": false
                    },
                    {
                        "line": {
                            "dash": "solid"
                        },
                        "meta": {
                            "columnNames": {
                                "x": "A",
                                "y": "D"
                            }
                        },
                        "mode": "markers+lines",
                        "name": "35<sup>0</sup>C",
                        "type": "scatter",
                        "xsrc": "FloryV:2:1955bc",
                        "ysrc": "FloryV:2:291e95",
                        "marker": {
                            "symbol": "square"
                        },
                        "boxpoints": false
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "A",
                                "y": "E"
                            }
                        },
                        "mode": "markers+lines",
                        "name": "40<sup>0</sup>C",
                        "type": "scatter",
                        "xsrc": "FloryV:2:1955bc",
                        "ysrc": "FloryV:2:2cfd90",
                        "marker": {
                            "color": "rgb(94, 38, 156)",
                            "symbol": "cross"
                        },
                        "boxpoints": false
                    }
                ],
                "frames": [],
                "layout": {
                    "xaxis": {
                        "type": "linear",
                        "range": [
                            -0.754339821146765,
                            12.754339821146765
                        ],
                        "title": {
                            "font": {
                                "size": 14,
                                "color": "rgb(0, 0, 0)",
                                "family": "Times New Roman"
                            },
                            "text": "Days"
                        },
                        "showline": false,
                        "tickfont": {
                            "size": 1,
                            "family": "Times New Roman"
                        },
                        "autorange": true,
                        "gridcolor": "rgb(201, 216, 242)"
                    },
                    "yaxis": {
                        "type": "linear",
                        "range": [
                            0.14996621343222089,
                            0.9380337865677791
                        ],
                        "title": {
                            "text": "Growth rate (0.D)"
                        },
                        "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/~FloryV",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/29.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-04 08:05:08",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "FloryV",
                "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-04T09:33:50.324258Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~jf383/10.embed",
            "fid": "jf383:10",
            "filename": "annotated_withand_without_sheildin_onbeads",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/jf383/10/9_SK9S8NWGAQ34J3OWIKFRFGYPMT0RL1.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/jf383/10/2_T4J65X9SEJ5H89VQOLF3K6V224ZP69.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/jf383/10/8_I6S73LBYBIHKNUX87FGSDZUE2XKKE5.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/jf383/10/9_SK9S8NWGAQ34J3OWIKFRFGYPMT0RL1.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/jf383:10",
                "plots": "https://api.plotly.com/v2/plots/jf383:10",
                "parent": "https://api.plotly.com/v2/folders/home?user=jf383"
            },
            "owner": "jf383",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 2,
            "web_url": "https://chart-studio.plotly.com/~jf383/10/",
            "world_readable": true,
            "date_modified": "2024-04-04T09:33:50.333Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~jf383/10/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "mode": "markers",
                        "name": "",
                        "type": "scatter",
                        "xsrc": "jf383:9:999af9",
                        "ysrc": "jf383:9:7190a9",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "symbol": "circle",
                            "colorsrc": "jf383:9:0bf48c",
                            "coloraxis": "coloraxis"
                        },
                        "showlegend": false,
                        "legendgroup": "",
                        "orientation": "v",
                        "customdatasrc": "jf383:9:5ac866",
                        "hovertemplate": "log2_subtraction=%{x}<br>log2_PSM_withg=%{y}<br>Entry Name=%{customdata[0]}<br>bins=%{marker.color}<extra></extra>"
                    }
                ],
                "layout": {
                    "xaxis": {
                        "title": {
                            "text": "log2_subtraction"
                        },
                        "anchor": "y",
                        "domain": [
                            0.0,
                            1.0
                        ]
                    },
                    "yaxis": {
                        "title": {
                            "text": "log2_PSM_withg"
                        },
                        "anchor": "x",
                        "domain": [
                            0.0,
                            1.0
                        ]
                    },
                    "legend": {
                        "tracegroupgap": 0
                    },
                    "margin": {
                        "t": 60
                    },
                    "shapes": [
                        {
                            "x0": -1,
                            "x1": 10,
                            "y0": 6.6,
                            "y1": 6.6,
                            "line": {
                                "dash": "dot",
                                "color": "black",
                                "width": 2
                            },
                            "type": "line"
                        }
                    ],
                    "template": {
                        "data": {
                            "bar": [
                                {
                                    "type": "bar",
                                    "marker": {
                                        "line": {
                                            "color": "#E5ECF6",
                                            "width": 0.5
                                        },
                                        "pattern": {
                                            "size": 10,
                                            "fillmode": "overlay",
                                            "solidity": 0.2
                                        }
                                    },
                                    "error_x": {
                                        "color": "#2a3f5f"
                                    },
                                    "error_y": {
                                        "color": "#2a3f5f"
                                    }
                                }
                            ],
                            "pie": [
                                {
                                    "type": "pie",
                                    "automargin": true
                                }
                            ],
                            "table": [
                                {
                                    "type": "table",
                                    "cells": {
                                        "fill": {
                                            "color": "#EBF0F8"
                                        },
                                        "line": {
                                            "color": "white"
                                        }
                                    },
                                    "header": {
                                        "fill": {
                                            "color": "#C8D4E3"
                                        },
                                        "line": {
                                            "color": "white"
                                        }
                                    }
                                }
                            ],
                            "carpet": [
                                {
                                    "type": "carpet",
                                    "aaxis": {
                                        "gridcolor": "white",
                                        "linecolor": "white",
                                        "endlinecolor": "#2a3f5f",
                                        "minorgridcolor": "white",
                                        "startlinecolor": "#2a3f5f"
                                    },
                                    "baxis": {
                                        "gridcolor": "white",
                                        "linecolor": "white",
                                        "endlinecolor": "#2a3f5f",
                                        "minorgridcolor": "white",
                                        "startlinecolor": "#2a3f5f"
                                    }
                                }
                            ],
                            "mesh3d": [
                                {
                                    "type": "mesh3d",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "contour": [
                                {
                                    "type": "contour",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "colorscale": [
                                        [
                                            0.0,
                                            "#0d0887"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#46039f"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#7201a8"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#9c179e"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#bd3786"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#d8576b"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#ed7953"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#fb9f3a"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#fdca26"
                                        ],
                                        [
                                            1.0,
                                            "#f0f921"
                                        ]
                                    ]
                                }
                            ],
                            "heatmap": [
                                {
                                    "type": "heatmap",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "colorscale": [
                                        [
                                            0.0,
                                            "#0d0887"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#46039f"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#7201a8"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#9c179e"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#bd3786"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#d8576b"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#ed7953"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#fb9f3a"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#fdca26"
                                        ],
                                        [
                                            1.0,
                                            "#f0f921"
                                        ]
                                    ]
                                }
                            ],
                            "scatter": [
                                {
                                    "type": "scatter",
                                    "fillpattern": {
                                        "size": 10,
                                        "fillmode": "overlay",
                                        "solidity": 0.2
                                    }
                                }
                            ],
                            "surface": [
                                {
                                    "type": "surface",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "colorscale": [
                                        [
                                            0.0,
                                            "#0d0887"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#46039f"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#7201a8"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#9c179e"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#bd3786"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#d8576b"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#ed7953"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#fb9f3a"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#fdca26"
                                        ],
                                        [
                                            1.0,
                                            "#f0f921"
                                        ]
                                    ]
                                }
                            ],
                            "barpolar": [
                                {
                                    "type": "barpolar",
                                    "marker": {
                                        "line": {
                                            "color": "#E5ECF6",
                                            "width": 0.5
                                        },
                                        "pattern": {
                                            "size": 10,
                                            "fillmode": "overlay",
                                            "solidity": 0.2
                                        }
                                    }
                                }
                            ],
                            "heatmapgl": [
                                {
                                    "type": "heatmapgl",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "colorscale": [
                                        [
                                            0.0,
                                            "#0d0887"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#46039f"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#7201a8"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#9c179e"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#bd3786"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#d8576b"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#ed7953"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#fb9f3a"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#fdca26"
                                        ],
                                        [
                                            1.0,
                                            "#f0f921"
                                        ]
                                    ]
                                }
                            ],
                            "histogram": [
                                {
                                    "type": "histogram",
                                    "marker": {
                                        "pattern": {
                                            "size": 10,
                                            "fillmode": "overlay",
                                            "solidity": 0.2
                                        }
                                    }
                                }
                            ],
                            "parcoords": [
                                {
                                    "line": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    },
                                    "type": "parcoords"
                                }
                            ],
                            "scatter3d": [
                                {
                                    "line": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    },
                                    "type": "scatter3d",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scattergl": [
                                {
                                    "type": "scattergl",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "choropleth": [
                                {
                                    "type": "choropleth",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "scattergeo": [
                                {
                                    "type": "scattergeo",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "histogram2d": [
                                {
                                    "type": "histogram2d",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "colorscale": [
                                        [
                                            0.0,
                                            "#0d0887"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#46039f"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#7201a8"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#9c179e"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#bd3786"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#d8576b"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#ed7953"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#fb9f3a"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#fdca26"
                                        ],
                                        [
                                            1.0,
                                            "#f0f921"
                                        ]
                                    ]
                                }
                            ],
                            "scatterpolar": [
                                {
                                    "type": "scatterpolar",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "contourcarpet": [
                                {
                                    "type": "contourcarpet",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "scattercarpet": [
                                {
                                    "type": "scattercarpet",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scattermapbox": [
                                {
                                    "type": "scattermapbox",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scatterpolargl": [
                                {
                                    "type": "scatterpolargl",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scatterternary": [
                                {
                                    "type": "scatterternary",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "histogram2dcontour": [
                                {
                                    "type": "histogram2dcontour",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "colorscale": [
                                        [
                                            0.0,
                                            "#0d0887"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#46039f"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#7201a8"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#9c179e"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#bd3786"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#d8576b"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#ed7953"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#fb9f3a"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#fdca26"
                                        ],
                                        [
                                            1.0,
                                            "#f0f921"
                                        ]
                                    ]
                                }
                            ]
                        },
                        "layout": {
                            "geo": {
                                "bgcolor": "white",
                                "showland": true,
                                "lakecolor": "white",
                                "landcolor": "#E5ECF6",
                                "showlakes": true,
                                "subunitcolor": "white"
                            },
                            "font": {
                                "color": "#2a3f5f"
                            },
                            "polar": {
                                "bgcolor": "#E5ECF6",
                                "radialaxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "linecolor": "white"
                                },
                                "angularaxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "linecolor": "white"
                                }
                            },
                            "scene": {
                                "xaxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "gridwidth": 2,
                                    "linecolor": "white",
                                    "zerolinecolor": "white",
                                    "showbackground": true,
                                    "backgroundcolor": "#E5ECF6"
                                },
                                "yaxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "gridwidth": 2,
                                    "linecolor": "white",
                                    "zerolinecolor": "white",
                                    "showbackground": true,
                                    "backgroundcolor": "#E5ECF6"
                                },
                                "zaxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "gridwidth": 2,
                                    "linecolor": "white",
                                    "zerolinecolor": "white",
                                    "showbackground": true,
                                    "backgroundcolor": "#E5ECF6"
                                }
                            },
                            "title": {
                                "x": 0.05
                            },
                            "xaxis": {
                                "ticks": "",
                                "title": {
                                    "standoff": 15
                                },
                                "gridcolor": "white",
                                "linecolor": "white",
                                "automargin": true,
                                "zerolinecolor": "white",
                                "zerolinewidth": 2
                            },
                            "yaxis": {
                                "ticks": "",
                                "title": {
                                    "standoff": 15
                                },
                                "gridcolor": "white",
                                "linecolor": "white",
                                "automargin": true,
                                "zerolinecolor": "white",
                                "zerolinewidth": 2
                            },
                            "mapbox": {
                                "style": "light"
                            },
                            "ternary": {
                                "aaxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "linecolor": "white"
                                },
                                "baxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "linecolor": "white"
                                },
                                "caxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "linecolor": "white"
                                },
                                "bgcolor": "#E5ECF6"
                            },
                            "colorway": [
                                "#636efa",
                                "#EF553B",
                                "#00cc96",
                                "#ab63fa",
                                "#FFA15A",
                                "#19d3f3",
                                "#FF6692",
                                "#B6E880",
                                "#FF97FF",
                                "#FECB52"
                            ],
                            "coloraxis": {
                                "colorbar": {
                                    "ticks": "",
                                    "outlinewidth": 0
                                }
                            },
                            "hovermode": "closest",
                            "colorscale": {
                                "diverging": [
                                    [
                                        0,
                                        "#8e0152"
                                    ],
                                    [
                                        0.1,
                                        "#c51b7d"
                                    ],
                                    [
                                        0.2,
                                        "#de77ae"
                                    ],
                                    [
                                        0.3,
                                        "#f1b6da"
                                    ],
                                    [
                                        0.4,
                                        "#fde0ef"
                                    ],
                                    [
                                        0.5,
                                        "#f7f7f7"
                                    ],
                                    [
                                        0.6,
                                        "#e6f5d0"
                                    ],
                                    [
                                        0.7,
                                        "#b8e186"
                                    ],
                                    [
                                        0.8,
                                        "#7fbc41"
                                    ],
                                    [
                                        0.9,
                                        "#4d9221"
                                    ],
                                    [
                                        1,
                                        "#276419"
                                    ]
                                ],
                                "sequential": [
                                    [
                                        0.0,
                                        "#0d0887"
                                    ],
                                    [
                                        0.1111111111111111,
                                        "#46039f"
                                    ],
                                    [
                                        0.2222222222222222,
                                        "#7201a8"
                                    ],
                                    [
                                        0.3333333333333333,
                                        "#9c179e"
                                    ],
                                    [
                                        0.4444444444444444,
                                        "#bd3786"
                                    ],
                                    [
                                        0.5555555555555556,
                                        "#d8576b"
                                    ],
                                    [
                                        0.6666666666666666,
                                        "#ed7953"
                                    ],
                                    [
                                        0.7777777777777778,
                                        "#fb9f3a"
                                    ],
                                    [
                                        0.8888888888888888,
                                        "#fdca26"
                                    ],
                                    [
                                        1.0,
                                        "#f0f921"
                                    ]
                                ],
                                "sequentialminus": [
                                    [
                                        0.0,
                                        "#0d0887"
                                    ],
                                    [
                                        0.1111111111111111,
                                        "#46039f"
                                    ],
                                    [
                                        0.2222222222222222,
                                        "#7201a8"
                                    ],
                                    [
                                        0.3333333333333333,
                                        "#9c179e"
                                    ],
                                    [
                                        0.4444444444444444,
                                        "#bd3786"
                                    ],
                                    [
                                        0.5555555555555556,
                                        "#d8576b"
                                    ],
                                    [
                                        0.6666666666666666,
                                        "#ed7953"
                                    ],
                                    [
                                        0.7777777777777778,
                                        "#fb9f3a"
                                    ],
                                    [
                                        0.8888888888888888,
                                        "#fdca26"
                                    ],
                                    [
                                        1.0,
                                        "#f0f921"
                                    ]
                                ]
                            },
                            "hoverlabel": {
                                "align": "left"
                            },
                            "plot_bgcolor": "#E5ECF6",
                            "paper_bgcolor": "white",
                            "shapedefaults": {
                                "line": {
                                    "color": "#2a3f5f"
                                }
                            },
                            "autotypenumbers": "strict",
                            "annotationdefaults": {
                                "arrowhead": 0,
                                "arrowcolor": "#2a3f5f",
                                "arrowwidth": 1
                            }
                        }
                    },
                    "coloraxis": {
                        "colorbar": {
                            "title": {
                                "text": "bins"
                            }
                        },
                        "colorscale": [
                            [
                                0.0,
                                "#0d0887"
                            ],
                            [
                                0.1111111111111111,
                                "#46039f"
                            ],
                            [
                                0.2222222222222222,
                                "#7201a8"
                            ],
                            [
                                0.3333333333333333,
                                "#9c179e"
                            ],
                            [
                                0.4444444444444444,
                                "#bd3786"
                            ],
                            [
                                0.5555555555555556,
                                "#d8576b"
                            ],
                            [
                                0.6666666666666666,
                                "#ed7953"
                            ],
                            [
                                0.7777777777777778,
                                "#fb9f3a"
                            ],
                            [
                                0.8888888888888888,
                                "#fdca26"
                            ],
                            [
                                1.0,
                                "#f0f921"
                            ]
                        ]
                    },
                    "annotations": [
                        {
                            "x": 8.280770770130603,
                            "y": 9.079484783826816,
                            "font": {
                                "size": 8
                            },
                            "text": "LMNA",
                            "showarrow": false
                        },
                        {
                            "x": 8.276124405274238,
                            "y": 8.471675214392045,
                            "font": {
                                "size": 8
                            },
                            "text": "RBMX",
                            "showarrow": false
                        },
                        {
                            "x": 7.366322214245816,
                            "y": 7.554588851677638,
                            "font": {
                                "size": 8
                            },
                            "text": "RMXL1",
                            "showarrow": false
                        },
                        {
                            "x": 7.2384047393250786,
                            "y": 7.643856189774724,
                            "font": {
                                "size": 8
                            },
                            "text": "NU153",
                            "showarrow": false
                        },
                        {
                            "x": 7.189824558880018,
                            "y": 7.651051691178929,
                            "font": {
                                "size": 8
                            },
                            "text": "HNRPK",
                            "showarrow": false
                        },
                        {
                            "x": 7.05528243550119,
                            "y": 7.531381460516312,
                            "font": {
                                "size": 8
                            },
                            "text": "ROA2",
                            "showarrow": false
                        },
                        {
                            "x": 7.044394119358453,
                            "y": 7.636624620543649,
                            "font": {
                                "size": 8
                            },
                            "text": "NUMA1",
                            "showarrow": false
                        },
                        {
                            "x": 6.906890595608519,
                            "y": 7.592457037268081,
                            "font": {
                                "size": 8
                            },
                            "text": "LMNB1",
                            "showarrow": false
                        },
                        {
                            "x": 6.832890014164741,
                            "y": 7.139551352398794,
                            "font": {
                                "size": 8
                            },
                            "text": "MATR3",
                            "showarrow": false
                        },
                        {
                            "x": 6.539158811108031,
                            "y": 6.977279923499917,
                            "font": {
                                "size": 8
                            },
                            "text": "DDX5",
                            "showarrow": false
                        },
                        {
                            "x": 6.3750394313469245,
                            "y": 7.022367813028454,
                            "font": {
                                "size": 8
                            },
                            "text": "FUBP2",
                            "showarrow": false
                        },
                        {
                            "x": 6.3750394313469245,
                            "y": 6.584962500721156,
                            "font": {
                                "size": 8
                            },
                            "text": "YLPM1",
                            "showarrow": false
                        },
                        {
                            "x": 6.20945336562895,
                            "y": 6.321928094887363,
                            "font": {
                                "size": 8
                            },
                            "text": "TP53B",
                            "showarrow": false
                        },
                        {
                            "x": 6.169925001442312,
                            "y": 6.569855608330948,
                            "font": {
                                "size": 8
                            },
                            "text": "RBM14",
                            "showarrow": false
                        },
                        {
                            "x": 6.169925001442312,
                            "y": 6.954196310386875,
                            "font": {
                                "size": 8
                            },
                            "text": "SRRM2",
                            "showarrow": false
                        },
                        {
                            "x": 6.169925001442312,
                            "y": 6.357552004618084,
                            "font": {
                                "size": 8
                            },
                            "text": "SF3B1",
                            "showarrow": false
                        },
                        {
                            "x": 6.149747119504682,
                            "y": 6.584962500721156,
                            "font": {
                                "size": 8
                            },
                            "text": "KHDR1",
                            "showarrow": false
                        },
                        {
                            "x": 6.129283016944966,
                            "y": 6.672425341971495,
                            "font": {
                                "size": 8
                            },
                            "text": "ROA1",
                            "showarrow": false
                        },
                        {
                            "x": 6.108524456778169,
                            "y": 6.3750394313469245,
                            "font": {
                                "size": 8
                            },
                            "text": "HNRPL",
                            "showarrow": false
                        },
                        {
                            "x": 6.108524456778169,
                            "y": 6.507794640198696,
                            "font": {
                                "size": 8
                            },
                            "text": "ELYS",
                            "showarrow": false
                        },
                        {
                            "x": 6.066089190457772,
                            "y": 6.6865005271832185,
                            "font": {
                                "size": 8
                            },
                            "text": "DDX17",
                            "showarrow": false
                        },
                        {
                            "x": 6.0,
                            "y": 6.247927513443585,
                            "font": {
                                "size": 8
                            },
                            "text": "SAFB2",
                            "showarrow": false
                        },
                        {
                            "x": 5.977279923499917,
                            "y": 6.189824558880018,
                            "font": {
                                "size": 8
                            },
                            "text": "HNRL1",
                            "showarrow": false
                        },
                        {
                            "x": 5.954196310386875,
                            "y": 6.426264754702098,
                            "font": {
                                "size": 8
                            },
                            "text": "ROA3",
                            "showarrow": false
                        },
                        {
                            "x": 5.832890014164741,
                            "y": 6.108524456778169,
                            "font": {
                                "size": 8
                            },
                            "text": "SAFB1",
                            "showarrow": false
                        },
                        {
                            "x": 5.807354922057604,
                            "y": 6.087462841250339,
                            "font": {
                                "size": 8
                            },
                            "text": "HNRH3",
                            "showarrow": false
                        },
                        {
                            "x": 5.754887502163468,
                            "y": 6.149747119504682,
                            "font": {
                                "size": 8
                            },
                            "text": "TPR",
                            "showarrow": false
                        },
                        {
                            "x": 5.727920454563199,
                            "y": 6.339850002884624,
                            "font": {
                                "size": 8
                            },
                            "text": "TIF1B",
                            "showarrow": false
                        },
                        {
                            "x": 5.727920454563199,
                            "y": 6.882643049361842,
                            "font": {
                                "size": 8
                            },
                            "text": "LMNB2",
                            "showarrow": false
                        },
                        {
                            "x": 5.727920454563199,
                            "y": 6.285402218862249,
                            "font": {
                                "size": 8
                            },
                            "text": "KI67",
                            "showarrow": false
                        },
                        {
                            "x": 5.727920454563199,
                            "y": 6.426264754702098,
                            "font": {
                                "size": 8
                            },
                            "text": "SFPQ",
                            "showarrow": false
                        },
                        {
                            "x": 5.700439718141092,
                            "y": 5.954196310386875,
                            "font": {
                                "size": 8
                            },
                            "text": "APEX1",
                            "showarrow": false
                        },
                        {
                            "x": 5.672425341971495,
                            "y": 6.108524456778169,
                            "font": {
                                "size": 8
                            },
                            "text": "TR150",
                            "showarrow": false
                        },
                        {
                            "x": 5.491853096329675,
                            "y": 5.906890595608519,
                            "font": {
                                "size": 8
                            },
                            "text": "HNRPR",
                            "showarrow": false
                        },
                        {
                            "x": 5.392317422778761,
                            "y": 5.614709844115208,
                            "font": {
                                "size": 8
                            },
                            "text": "HNRL2",
                            "showarrow": false
                        },
                        {
                            "x": 5.392317422778761,
                            "y": 5.554588851677638,
                            "font": {
                                "size": 8
                            },
                            "text": "BCLF1",
                            "showarrow": false
                        },
                        {
                            "x": 5.321928094887363,
                            "y": 5.392317422778761,
                            "font": {
                                "size": 8
                            },
                            "text": "RBM10",
                            "showarrow": false
                        },
                        {
                            "x": 5.321928094887363,
                            "y": 5.930737337562887,
                            "font": {
                                "size": 8
                            },
                            "text": "ILF3",
                            "showarrow": false
                        },
                        {
                            "x": 5.285402218862249,
                            "y": 5.672425341971495,
                            "font": {
                                "size": 8
                            },
                            "text": "TPX2",
                            "showarrow": false
                        },
                        {
                            "x": 5.285402218862249,
                            "y": 5.426264754702098,
                            "font": {
                                "size": 8
                            },
                            "text": "RPB1",
                            "showarrow": false
                        },
                        {
                            "x": 5.285402218862249,
                            "y": 5.523561956057013,
                            "font": {
                                "size": 8
                            },
                            "text": "SON",
                            "showarrow": false
                        },
                        {
                            "x": 5.247927513443585,
                            "y": 6.149747119504682,
                            "font": {
                                "size": 8
                            },
                            "text": "NONO",
                            "showarrow": false
                        },
                        {
                            "x": 5.20945336562895,
                            "y": 5.754887502163468,
                            "font": {
                                "size": 8
                            },
                            "text": "HNRDL",
                            "showarrow": false
                        },
                        {
                            "x": 5.169925001442312,
                            "y": 5.20945336562895,
                            "font": {
                                "size": 8
                            },
                            "text": "ARI1A",
                            "showarrow": false
                        },
                        {
                            "x": 5.169925001442312,
                            "y": 5.643856189774724,
                            "font": {
                                "size": 8
                            },
                            "text": "TASO2",
                            "showarrow": false
                        },
                        {
                            "x": 5.129283016944966,
                            "y": 5.426264754702098,
                            "font": {
                                "size": 8
                            },
                            "text": "ZC3HE",
                            "showarrow": false
                        },
                        {
                            "x": 5.129283016944966,
                            "y": 5.285402218862249,
                            "font": {
                                "size": 8
                            },
                            "text": "AKAP8",
                            "showarrow": false
                        },
                        {
                            "x": 5.087462841250339,
                            "y": 5.727920454563199,
                            "font": {
                                "size": 8
                            },
                            "text": "DHX9",
                            "showarrow": false
                        },
                        {
                            "x": 5.087462841250339,
                            "y": 5.392317422778761,
                            "font": {
                                "size": 8
                            },
                            "text": "SRSF1",
                            "showarrow": false
                        },
                        {
                            "x": 5.0,
                            "y": 6.108524456778169,
                            "font": {
                                "size": 8
                            },
                            "text": "HNRPM",
                            "showarrow": false
                        },
                        {
                            "x": 5.0,
                            "y": 5.129283016944966,
                            "font": {
                                "size": 8
                            },
                            "text": "RSF1",
                            "showarrow": false
                        },
                        {
                            "x": 4.954196310386875,
                            "y": 5.426264754702098,
                            "font": {
                                "size": 8
                            },
                            "text": "EMD",
                            "showarrow": false
                        },
                        {
                            "x": 4.954196310386875,
                            "y": 5.129283016944966,
                            "font": {
                                "size": 8
                            },
                            "text": "RBP56",
                            "showarrow": false
                        },
                        {
                            "x": 4.954196310386875,
                            "y": 5.832890014164741,
                            "font": {
                                "size": 8
                            },
                            "text": "HNRPU",
                            "showarrow": false
                        },
                        {
                            "x": 4.954196310386875,
                            "y": 5.20945336562895,
                            "font": {
                                "size": 8
                            },
                            "text": "UBP36",
                            "showarrow": false
                        },
                        {
                            "x": 4.954196310386875,
                            "y": 5.426264754702098,
                            "font": {
                                "size": 8
                            },
                            "text": "HNRPQ",
                            "showarrow": false
                        },
                        {
                            "x": 4.954196310386875,
                            "y": 5.087462841250339,
                            "font": {
                                "size": 8
                            },
                            "text": "SF3B2",
                            "showarrow": false
                        },
                        {
                            "x": 4.857980995127572,
                            "y": 6.169925001442312,
                            "font": {
                                "size": 8
                            },
                            "text": "LAP2B",
                            "showarrow": false
                        },
                        {
                            "x": 4.857980995127572,
                            "y": 5.169925001442312,
                            "font": {
                                "size": 8
                            },
                            "text": "SNUT1",
                            "showarrow": false
                        },
                        {
                            "x": 4.807354922057604,
                            "y": 5.285402218862249,
                            "font": {
                                "size": 8
                            },
                            "text": "HNRH1",
                            "showarrow": false
                        },
                        {
                            "x": 4.754887502163468,
                            "y": 4.807354922057604,
                            "font": {
                                "size": 8
                            },
                            "text": "EWS",
                            "showarrow": false
                        },
                        {
                            "x": 4.754887502163468,
                            "y": 5.087462841250339,
                            "font": {
                                "size": 8
                            },
                            "text": "ROAA",
                            "showarrow": false
                        },
                        {
                            "x": 4.754887502163468,
                            "y": 4.954196310386875,
                            "font": {
                                "size": 8
                            },
                            "text": "SRS10",
                            "showarrow": false
                        },
                        {
                            "x": 4.700439718141092,
                            "y": 5.0,
                            "font": {
                                "size": 8
                            },
                            "text": "TRA2B",
                            "showarrow": false
                        },
                        {
                            "x": 4.643856189774724,
                            "y": 4.906890595608519,
                            "font": {
                                "size": 8
                            },
                            "text": "HNRPF",
                            "showarrow": false
                        },
                        {
                            "x": 4.643856189774724,
                            "y": 5.321928094887363,
                            "font": {
                                "size": 8
                            },
                            "text": "SF3A1",
                            "showarrow": false
                        },
                        {
                            "x": 4.643856189774724,
                            "y": 4.906890595608519,
                            "font": {
                                "size": 8
                            },
                            "text": "FUS",
                            "showarrow": false
                        },
                        {
                            "x": 4.643856189774724,
                            "y": 4.807354922057604,
                            "font": {
                                "size": 8
                            },
                            "text": "DIDO1",
                            "showarrow": false
                        },
                        {
                            "x": 4.584962500721156,
                            "y": 4.857980995127572,
                            "font": {
                                "size": 8
                            },
                            "text": "RUNX1",
                            "showarrow": false
                        },
                        {
                            "x": 4.584962500721156,
                            "y": 5.0,
                            "font": {
                                "size": 8
                            },
                            "text": "ACINU",
                            "showarrow": false
                        },
                        {
                            "x": 4.584962500721156,
                            "y": 4.643856189774724,
                            "font": {
                                "size": 8
                            },
                            "text": "CHERP",
                            "showarrow": false
                        },
                        {
                            "x": 4.523561956057013,
                            "y": 4.857980995127572,
                            "font": {
                                "size": 8
                            },
                            "text": "SUGP2",
                            "showarrow": false
                        },
                        {
                            "x": 4.459431618637297,
                            "y": 4.857980995127572,
                            "font": {
                                "size": 8
                            },
                            "text": "P121A",
                            "showarrow": false
                        },
                        {
                            "x": 4.392317422778761,
                            "y": 5.0,
                            "font": {
                                "size": 8
                            },
                            "text": "SPB1",
                            "showarrow": false
                        },
                        {
                            "x": 4.392317422778761,
                            "y": 4.807354922057604,
                            "font": {
                                "size": 8
                            },
                            "text": "TOIP1",
                            "showarrow": false
                        },
                        {
                            "x": 4.321928094887363,
                            "y": 4.643856189774724,
                            "font": {
                                "size": 8
                            },
                            "text": "INCE",
                            "showarrow": false
                        },
                        {
                            "x": 4.321928094887363,
                            "y": 5.459431618637297,
                            "font": {
                                "size": 8
                            },
                            "text": "HNRPC",
                            "showarrow": false
                        },
                        {
                            "x": 4.321928094887363,
                            "y": 4.459431618637297,
                            "font": {
                                "size": 8
                            },
                            "text": "RED",
                            "showarrow": false
                        },
                        {
                            "x": 4.321928094887363,
                            "y": 4.459431618637297,
                            "font": {
                                "size": 8
                            },
                            "text": "UHRF1",
                            "showarrow": false
                        },
                        {
                            "x": 4.321928094887363,
                            "y": 4.754887502163468,
                            "font": {
                                "size": 8
                            },
                            "text": "SNW1",
                            "showarrow": false
                        },
                        {
                            "x": 4.247927513443585,
                            "y": 4.700439718141092,
                            "font": {
                                "size": 8
                            },
                            "text": "PHF3",
                            "showarrow": false
                        },
                        {
                            "x": 4.247927513443585,
                            "y": 4.459431618637297,
                            "font": {
                                "size": 8
                            },
                            "text": "SRSF9",
                            "showarrow": false
                        },
                        {
                            "x": 4.169925001442312,
                            "y": 4.523561956057013,
                            "font": {
                                "size": 8
                            },
                            "text": "RAI1",
                            "showarrow": false
                        },
                        {
                            "x": 4.169925001442312,
                            "y": 4.459431618637297,
                            "font": {
                                "size": 8
                            },
                            "text": "DHX15",
                            "showarrow": false
                        },
                        {
                            "x": 4.169925001442312,
                            "y": 4.459431618637297,
                            "font": {
                                "size": 8
                            },
                            "text": "UT14A",
                            "showarrow": false
                        },
                        {
                            "x": 4.169925001442312,
                            "y": 4.643856189774724,
                            "font": {
                                "size": 8
                            },
                            "text": "HNRPD",
                            "showarrow": false
                        },
                        {
                            "x": 4.087462841250339,
                            "y": 4.523561956057013,
                            "font": {
                                "size": 8
                            },
                            "text": "NUP98",
                            "showarrow": false
                        },
                        {
                            "x": 4.087462841250339,
                            "y": 4.247927513443585,
                            "font": {
                                "size": 8
                            },
                            "text": "CEBPB",
                            "showarrow": false
                        },
                        {
                            "x": 4.087462841250339,
                            "y": 4.169925001442312,
                            "font": {
                                "size": 8
                            },
                            "text": "RAD21",
                            "showarrow": false
                        },
                        {
                            "x": 4.087462841250339,
                            "y": 4.321928094887363,
                            "font": {
                                "size": 8
                            },
                            "text": "CIZ1",
                            "showarrow": false
                        },
                        {
                            "x": 4.0,
                            "y": 4.700439718141092,
                            "font": {
                                "size": 8
                            },
                            "text": "SLTM",
                            "showarrow": false
                        },
                        {
                            "x": 4.0,
                            "y": 4.807354922057604,
                            "font": {
                                "size": 8
                            },
                            "text": "RCC1",
                            "showarrow": false
                        },
                        {
                            "x": 4.0,
                            "y": 4.247927513443585,
                            "font": {
                                "size": 8
                            },
                            "text": "RBM3",
                            "showarrow": false
                        },
                        {
                            "x": 4.0,
                            "y": 4.700439718141092,
                            "font": {
                                "size": 8
                            },
                            "text": "ZN326",
                            "showarrow": false
                        },
                        {
                            "x": 4.0,
                            "y": 4.247927513443585,
                            "font": {
                                "size": 8
                            },
                            "text": "SP16H",
                            "showarrow": false
                        },
                        {
                            "x": 3.9068905956085187,
                            "y": 4.087462841250339,
                            "font": {
                                "size": 8
                            },
                            "text": "U520",
                            "showarrow": false
                        },
                        {
                            "x": 3.9068905956085187,
                            "y": 4.392317422778761,
                            "font": {
                                "size": 8
                            },
                            "text": "NKRF",
                            "showarrow": false
                        },
                        {
                            "x": 3.9068905956085187,
                            "y": 4.0,
                            "font": {
                                "size": 8
                            },
                            "text": "NCOA5",
                            "showarrow": false
                        },
                        {
                            "x": 3.9068905956085187,
                            "y": 4.247927513443585,
                            "font": {
                                "size": 8
                            },
                            "text": "CAF1A",
                            "showarrow": false
                        },
                        {
                            "x": 3.9068905956085187,
                            "y": 4.523561956057013,
                            "font": {
                                "size": 8
                            },
                            "text": "AHDC1",
                            "showarrow": false
                        }
                    ]
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~jf383",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/57.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-5.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2024-03-25 11:21:57",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "jf383",
                "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-04T09:27:35.235361Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~6072001030/5.embed",
            "fid": "6072001030:5",
            "filename": "Plot 5",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/6072001030/5/9_JV5DJJKIA0FTTW6IF291IDDBFVCMFF.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/6072001030/5/2_OZ1RMVBQ20QZWZKC9IW9IQC1LRU3ND.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/6072001030/5/8_LQ7KKAUMASMMIP9OFI7C0NFMLJL6T6.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/6072001030/5/9_JV5DJJKIA0FTTW6IF291IDDBFVCMFF.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/6072001030:5",
                "plots": "https://api.plotly.com/v2/plots/6072001030:5",
                "parent": "https://api.plotly.com/v2/folders/home?user=6072001030"
            },
            "owner": "6072001030",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 1,
            "web_url": "https://chart-studio.plotly.com/~6072001030/5/",
            "world_readable": true,
            "date_modified": "2024-04-04T09:27:35.246Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~6072001030/5/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": false,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "meta": {
                            "columnNames": {
                                "labels": "labels",
                                "values": "values"
                            }
                        },
                        "type": "pie",
                        "textfont": {
                            "size": "14",
                            "color": "#FFFFFF"
                        },
                        "labelssrc": "6072001030:2:c83999",
                        "valuessrc": "6072001030:2:069a08",
                        "insidetextfont": {
                            "size": "14",
                            "color": "#FFFFFF"
                        }
                    }
                ],
                "frames": [],
                "layout": {
                    "legend": {
                        "x": 1,
                        "y": 1
                    },
                    "autosize": true,
                    "showlegend": true
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~6072001030",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/72.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-5.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2024-03-21 14:11:13",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "6072001030",
                "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-04T09:22:32.090038Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~jf383/6.embed",
            "fid": "jf383:6",
            "filename": "your-plot-name",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/jf383/6/9_JQGKSJLCV0YOW7FIS4IG4TG0CBS4RF.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/jf383/6/2_EITZR5IO1BT13JJPWVUVD6LJ0UEDB1.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/jf383/6/8_CIT9ZEYQFVWRS0DSISIQ6VZILCSUP2.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/jf383/6/9_JQGKSJLCV0YOW7FIS4IG4TG0CBS4RF.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/jf383:6",
                "plots": "https://api.plotly.com/v2/plots/jf383:6",
                "parent": "https://api.plotly.com/v2/folders/home?user=jf383"
            },
            "owner": "jf383",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 1,
            "web_url": "https://chart-studio.plotly.com/~jf383/6/",
            "world_readable": true,
            "date_modified": "2024-04-04T09:30:57.357Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~jf383/6/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "mode": "markers",
                        "name": "",
                        "type": "scatter",
                        "xsrc": "jf383:8:6d8439",
                        "ysrc": "jf383:8:19a984",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "symbol": "circle",
                            "colorsrc": "jf383:8:270f1c",
                            "coloraxis": "coloraxis"
                        },
                        "showlegend": false,
                        "legendgroup": "",
                        "orientation": "v",
                        "customdatasrc": "jf383:8:d76e17",
                        "hovertemplate": "log2_subtraction=%{x}<br>log2_PSM_withg=%{y}<br>Entry Name=%{customdata[0]}<br>bins=%{marker.color}<extra></extra>"
                    }
                ],
                "layout": {
                    "xaxis": {
                        "title": {
                            "text": "log2_subtraction"
                        },
                        "anchor": "y",
                        "domain": [
                            0.0,
                            1.0
                        ]
                    },
                    "yaxis": {
                        "title": {
                            "text": "log2_PSM_withg"
                        },
                        "anchor": "x",
                        "domain": [
                            0.0,
                            1.0
                        ]
                    },
                    "legend": {
                        "tracegroupgap": 0
                    },
                    "margin": {
                        "t": 60
                    },
                    "shapes": [
                        {
                            "x0": -1,
                            "x1": 10,
                            "y0": 6.6,
                            "y1": 6.6,
                            "line": {
                                "dash": "dot",
                                "color": "black",
                                "width": 2
                            },
                            "type": "line"
                        }
                    ],
                    "template": {
                        "data": {
                            "bar": [
                                {
                                    "type": "bar",
                                    "marker": {
                                        "line": {
                                            "color": "#E5ECF6",
                                            "width": 0.5
                                        },
                                        "pattern": {
                                            "size": 10,
                                            "fillmode": "overlay",
                                            "solidity": 0.2
                                        }
                                    },
                                    "error_x": {
                                        "color": "#2a3f5f"
                                    },
                                    "error_y": {
                                        "color": "#2a3f5f"
                                    }
                                }
                            ],
                            "pie": [
                                {
                                    "type": "pie",
                                    "automargin": true
                                }
                            ],
                            "table": [
                                {
                                    "type": "table",
                                    "cells": {
                                        "fill": {
                                            "color": "#EBF0F8"
                                        },
                                        "line": {
                                            "color": "white"
                                        }
                                    },
                                    "header": {
                                        "fill": {
                                            "color": "#C8D4E3"
                                        },
                                        "line": {
                                            "color": "white"
                                        }
                                    }
                                }
                            ],
                            "carpet": [
                                {
                                    "type": "carpet",
                                    "aaxis": {
                                        "gridcolor": "white",
                                        "linecolor": "white",
                                        "endlinecolor": "#2a3f5f",
                                        "minorgridcolor": "white",
                                        "startlinecolor": "#2a3f5f"
                                    },
                                    "baxis": {
                                        "gridcolor": "white",
                                        "linecolor": "white",
                                        "endlinecolor": "#2a3f5f",
                                        "minorgridcolor": "white",
                                        "startlinecolor": "#2a3f5f"
                                    }
                                }
                            ],
                            "mesh3d": [
                                {
                                    "type": "mesh3d",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "contour": [
                                {
                                    "type": "contour",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "colorscale": [
                                        [
                                            0.0,
                                            "#0d0887"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#46039f"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#7201a8"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#9c179e"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#bd3786"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#d8576b"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#ed7953"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#fb9f3a"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#fdca26"
                                        ],
                                        [
                                            1.0,
                                            "#f0f921"
                                        ]
                                    ]
                                }
                            ],
                            "heatmap": [
                                {
                                    "type": "heatmap",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "colorscale": [
                                        [
                                            0.0,
                                            "#0d0887"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#46039f"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#7201a8"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#9c179e"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#bd3786"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#d8576b"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#ed7953"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#fb9f3a"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#fdca26"
                                        ],
                                        [
                                            1.0,
                                            "#f0f921"
                                        ]
                                    ]
                                }
                            ],
                            "scatter": [
                                {
                                    "type": "scatter",
                                    "fillpattern": {
                                        "size": 10,
                                        "fillmode": "overlay",
                                        "solidity": 0.2
                                    }
                                }
                            ],
                            "surface": [
                                {
                                    "type": "surface",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "colorscale": [
                                        [
                                            0.0,
                                            "#0d0887"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#46039f"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#7201a8"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#9c179e"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#bd3786"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#d8576b"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#ed7953"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#fb9f3a"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#fdca26"
                                        ],
                                        [
                                            1.0,
                                            "#f0f921"
                                        ]
                                    ]
                                }
                            ],
                            "barpolar": [
                                {
                                    "type": "barpolar",
                                    "marker": {
                                        "line": {
                                            "color": "#E5ECF6",
                                            "width": 0.5
                                        },
                                        "pattern": {
                                            "size": 10,
                                            "fillmode": "overlay",
                                            "solidity": 0.2
                                        }
                                    }
                                }
                            ],
                            "heatmapgl": [
                                {
                                    "type": "heatmapgl",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "colorscale": [
                                        [
                                            0.0,
                                            "#0d0887"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#46039f"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#7201a8"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#9c179e"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#bd3786"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#d8576b"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#ed7953"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#fb9f3a"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#fdca26"
                                        ],
                                        [
                                            1.0,
                                            "#f0f921"
                                        ]
                                    ]
                                }
                            ],
                            "histogram": [
                                {
                                    "type": "histogram",
                                    "marker": {
                                        "pattern": {
                                            "size": 10,
                                            "fillmode": "overlay",
                                            "solidity": 0.2
                                        }
                                    }
                                }
                            ],
                            "parcoords": [
                                {
                                    "line": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    },
                                    "type": "parcoords"
                                }
                            ],
                            "scatter3d": [
                                {
                                    "line": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    },
                                    "type": "scatter3d",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scattergl": [
                                {
                                    "type": "scattergl",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "choropleth": [
                                {
                                    "type": "choropleth",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "scattergeo": [
                                {
                                    "type": "scattergeo",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "histogram2d": [
                                {
                                    "type": "histogram2d",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "colorscale": [
                                        [
                                            0.0,
                                            "#0d0887"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#46039f"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#7201a8"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#9c179e"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#bd3786"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#d8576b"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#ed7953"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#fb9f3a"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#fdca26"
                                        ],
                                        [
                                            1.0,
                                            "#f0f921"
                                        ]
                                    ]
                                }
                            ],
                            "scatterpolar": [
                                {
                                    "type": "scatterpolar",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "contourcarpet": [
                                {
                                    "type": "contourcarpet",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "scattercarpet": [
                                {
                                    "type": "scattercarpet",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scattermapbox": [
                                {
                                    "type": "scattermapbox",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scatterpolargl": [
                                {
                                    "type": "scatterpolargl",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scatterternary": [
                                {
                                    "type": "scatterternary",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "histogram2dcontour": [
                                {
                                    "type": "histogram2dcontour",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "colorscale": [
                                        [
                                            0.0,
                                            "#0d0887"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#46039f"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#7201a8"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#9c179e"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#bd3786"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#d8576b"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#ed7953"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#fb9f3a"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#fdca26"
                                        ],
                                        [
                                            1.0,
                                            "#f0f921"
                                        ]
                                    ]
                                }
                            ]
                        },
                        "layout": {
                            "geo": {
                                "bgcolor": "white",
                                "showland": true,
                                "lakecolor": "white",
                                "landcolor": "#E5ECF6",
                                "showlakes": true,
                                "subunitcolor": "white"
                            },
                            "font": {
                                "color": "#2a3f5f"
                            },
                            "polar": {
                                "bgcolor": "#E5ECF6",
                                "radialaxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "linecolor": "white"
                                },
                                "angularaxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "linecolor": "white"
                                }
                            },
                            "scene": {
                                "xaxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "gridwidth": 2,
                                    "linecolor": "white",
                                    "zerolinecolor": "white",
                                    "showbackground": true,
                                    "backgroundcolor": "#E5ECF6"
                                },
                                "yaxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "gridwidth": 2,
                                    "linecolor": "white",
                                    "zerolinecolor": "white",
                                    "showbackground": true,
                                    "backgroundcolor": "#E5ECF6"
                                },
                                "zaxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "gridwidth": 2,
                                    "linecolor": "white",
                                    "zerolinecolor": "white",
                                    "showbackground": true,
                                    "backgroundcolor": "#E5ECF6"
                                }
                            },
                            "title": {
                                "x": 0.05
                            },
                            "xaxis": {
                                "ticks": "",
                                "title": {
                                    "standoff": 15
                                },
                                "gridcolor": "white",
                                "linecolor": "white",
                                "automargin": true,
                                "zerolinecolor": "white",
                                "zerolinewidth": 2
                            },
                            "yaxis": {
                                "ticks": "",
                                "title": {
                                    "standoff": 15
                                },
                                "gridcolor": "white",
                                "linecolor": "white",
                                "automargin": true,
                                "zerolinecolor": "white",
                                "zerolinewidth": 2
                            },
                            "mapbox": {
                                "style": "light"
                            },
                            "ternary": {
                                "aaxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "linecolor": "white"
                                },
                                "baxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "linecolor": "white"
                                },
                                "caxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "linecolor": "white"
                                },
                                "bgcolor": "#E5ECF6"
                            },
                            "colorway": [
                                "#636efa",
                                "#EF553B",
                                "#00cc96",
                                "#ab63fa",
                                "#FFA15A",
                                "#19d3f3",
                                "#FF6692",
                                "#B6E880",
                                "#FF97FF",
                                "#FECB52"
                            ],
                            "coloraxis": {
                                "colorbar": {
                                    "ticks": "",
                                    "outlinewidth": 0
                                }
                            },
                            "hovermode": "closest",
                            "colorscale": {
                                "diverging": [
                                    [
                                        0,
                                        "#8e0152"
                                    ],
                                    [
                                        0.1,
                                        "#c51b7d"
                                    ],
                                    [
                                        0.2,
                                        "#de77ae"
                                    ],
                                    [
                                        0.3,
                                        "#f1b6da"
                                    ],
                                    [
                                        0.4,
                                        "#fde0ef"
                                    ],
                                    [
                                        0.5,
                                        "#f7f7f7"
                                    ],
                                    [
                                        0.6,
                                        "#e6f5d0"
                                    ],
                                    [
                                        0.7,
                                        "#b8e186"
                                    ],
                                    [
                                        0.8,
                                        "#7fbc41"
                                    ],
                                    [
                                        0.9,
                                        "#4d9221"
                                    ],
                                    [
                                        1,
                                        "#276419"
                                    ]
                                ],
                                "sequential": [
                                    [
                                        0.0,
                                        "#0d0887"
                                    ],
                                    [
                                        0.1111111111111111,
                                        "#46039f"
                                    ],
                                    [
                                        0.2222222222222222,
                                        "#7201a8"
                                    ],
                                    [
                                        0.3333333333333333,
                                        "#9c179e"
                                    ],
                                    [
                                        0.4444444444444444,
                                        "#bd3786"
                                    ],
                                    [
                                        0.5555555555555556,
                                        "#d8576b"
                                    ],
                                    [
                                        0.6666666666666666,
                                        "#ed7953"
                                    ],
                                    [
                                        0.7777777777777778,
                                        "#fb9f3a"
                                    ],
                                    [
                                        0.8888888888888888,
                                        "#fdca26"
                                    ],
                                    [
                                        1.0,
                                        "#f0f921"
                                    ]
                                ],
                                "sequentialminus": [
                                    [
                                        0.0,
                                        "#0d0887"
                                    ],
                                    [
                                        0.1111111111111111,
                                        "#46039f"
                                    ],
                                    [
                                        0.2222222222222222,
                                        "#7201a8"
                                    ],
                                    [
                                        0.3333333333333333,
                                        "#9c179e"
                                    ],
                                    [
                                        0.4444444444444444,
                                        "#bd3786"
                                    ],
                                    [
                                        0.5555555555555556,
                                        "#d8576b"
                                    ],
                                    [
                                        0.6666666666666666,
                                        "#ed7953"
                                    ],
                                    [
                                        0.7777777777777778,
                                        "#fb9f3a"
                                    ],
                                    [
                                        0.8888888888888888,
                                        "#fdca26"
                                    ],
                                    [
                                        1.0,
                                        "#f0f921"
                                    ]
                                ]
                            },
                            "hoverlabel": {
                                "align": "left"
                            },
                            "plot_bgcolor": "#E5ECF6",
                            "paper_bgcolor": "white",
                            "shapedefaults": {
                                "line": {
                                    "color": "#2a3f5f"
                                }
                            },
                            "autotypenumbers": "strict",
                            "annotationdefaults": {
                                "arrowhead": 0,
                                "arrowcolor": "#2a3f5f",
                                "arrowwidth": 1
                            }
                        }
                    },
                    "coloraxis": {
                        "colorbar": {
                            "title": {
                                "text": "bins"
                            }
                        },
                        "colorscale": [
                            [
                                0.0,
                                "#0d0887"
                            ],
                            [
                                0.1111111111111111,
                                "#46039f"
                            ],
                            [
                                0.2222222222222222,
                                "#7201a8"
                            ],
                            [
                                0.3333333333333333,
                                "#9c179e"
                            ],
                            [
                                0.4444444444444444,
                                "#bd3786"
                            ],
                            [
                                0.5555555555555556,
                                "#d8576b"
                            ],
                            [
                                0.6666666666666666,
                                "#ed7953"
                            ],
                            [
                                0.7777777777777778,
                                "#fb9f3a"
                            ],
                            [
                                0.8888888888888888,
                                "#fdca26"
                            ],
                            [
                                1.0,
                                "#f0f921"
                            ]
                        ]
                    },
                    "annotations": [
                        {
                            "x": 8.280770770130603,
                            "y": 9.079484783826816,
                            "font": {
                                "size": 8
                            },
                            "text": "LMNA",
                            "showarrow": false
                        },
                        {
                            "x": 8.276124405274238,
                            "y": 8.471675214392045,
                            "font": {
                                "size": 8
                            },
                            "text": "RBMX",
                            "showarrow": false
                        },
                        {
                            "x": 7.366322214245816,
                            "y": 7.554588851677638,
                            "font": {
                                "size": 8
                            },
                            "text": "RMXL1",
                            "showarrow": false
                        },
                        {
                            "x": 7.2384047393250786,
                            "y": 7.643856189774724,
                            "font": {
                                "size": 8
                            },
                            "text": "NU153",
                            "showarrow": false
                        },
                        {
                            "x": 7.189824558880018,
                            "y": 7.651051691178929,
                            "font": {
                                "size": 8
                            },
                            "text": "HNRPK",
                            "showarrow": false
                        },
                        {
                            "x": 7.05528243550119,
                            "y": 7.531381460516312,
                            "font": {
                                "size": 8
                            },
                            "text": "ROA2",
                            "showarrow": false
                        },
                        {
                            "x": 7.044394119358453,
                            "y": 7.636624620543649,
                            "font": {
                                "size": 8
                            },
                            "text": "NUMA1",
                            "showarrow": false
                        },
                        {
                            "x": 6.906890595608519,
                            "y": 7.592457037268081,
                            "font": {
                                "size": 8
                            },
                            "text": "LMNB1",
                            "showarrow": false
                        },
                        {
                            "x": 6.832890014164741,
                            "y": 7.139551352398794,
                            "font": {
                                "size": 8
                            },
                            "text": "MATR3",
                            "showarrow": false
                        },
                        {
                            "x": 6.539158811108031,
                            "y": 6.977279923499917,
                            "font": {
                                "size": 8
                            },
                            "text": "DDX5",
                            "showarrow": false
                        },
                        {
                            "x": 6.3750394313469245,
                            "y": 7.022367813028454,
                            "font": {
                                "size": 8
                            },
                            "text": "FUBP2",
                            "showarrow": false
                        },
                        {
                            "x": 6.3750394313469245,
                            "y": 6.584962500721156,
                            "font": {
                                "size": 8
                            },
                            "text": "YLPM1",
                            "showarrow": false
                        },
                        {
                            "x": 6.20945336562895,
                            "y": 6.321928094887363,
                            "font": {
                                "size": 8
                            },
                            "text": "TP53B",
                            "showarrow": false
                        },
                        {
                            "x": 6.169925001442312,
                            "y": 6.569855608330948,
                            "font": {
                                "size": 8
                            },
                            "text": "RBM14",
                            "showarrow": false
                        },
                        {
                            "x": 6.169925001442312,
                            "y": 6.954196310386875,
                            "font": {
                                "size": 8
                            },
                            "text": "SRRM2",
                            "showarrow": false
                        },
                        {
                            "x": 6.169925001442312,
                            "y": 6.357552004618084,
                            "font": {
                                "size": 8
                            },
                            "text": "SF3B1",
                            "showarrow": false
                        },
                        {
                            "x": 6.149747119504682,
                            "y": 6.584962500721156,
                            "font": {
                                "size": 8
                            },
                            "text": "KHDR1",
                            "showarrow": false
                        },
                        {
                            "x": 6.129283016944966,
                            "y": 6.672425341971495,
                            "font": {
                                "size": 8
                            },
                            "text": "ROA1",
                            "showarrow": false
                        },
                        {
                            "x": 6.108524456778169,
                            "y": 6.3750394313469245,
                            "font": {
                                "size": 8
                            },
                            "text": "HNRPL",
                            "showarrow": false
                        },
                        {
                            "x": 6.108524456778169,
                            "y": 6.507794640198696,
                            "font": {
                                "size": 8
                            },
                            "text": "ELYS",
                            "showarrow": false
                        },
                        {
                            "x": 6.066089190457772,
                            "y": 6.6865005271832185,
                            "font": {
                                "size": 8
                            },
                            "text": "DDX17",
                            "showarrow": false
                        },
                        {
                            "x": 6.0,
                            "y": 6.247927513443585,
                            "font": {
                                "size": 8
                            },
                            "text": "SAFB2",
                            "showarrow": false
                        },
                        {
                            "x": 5.977279923499917,
                            "y": 6.189824558880018,
                            "font": {
                                "size": 8
                            },
                            "text": "HNRL1",
                            "showarrow": false
                        },
                        {
                            "x": 5.954196310386875,
                            "y": 6.426264754702098,
                            "font": {
                                "size": 8
                            },
                            "text": "ROA3",
                            "showarrow": false
                        },
                        {
                            "x": 5.832890014164741,
                            "y": 6.108524456778169,
                            "font": {
                                "size": 8
                            },
                            "text": "SAFB1",
                            "showarrow": false
                        },
                        {
                            "x": 5.807354922057604,
                            "y": 6.087462841250339,
                            "font": {
                                "size": 8
                            },
                            "text": "HNRH3",
                            "showarrow": false
                        },
                        {
                            "x": 5.754887502163468,
                            "y": 6.149747119504682,
                            "font": {
                                "size": 8
                            },
                            "text": "TPR",
                            "showarrow": false
                        },
                        {
                            "x": 5.727920454563199,
                            "y": 6.339850002884624,
                            "font": {
                                "size": 8
                            },
                            "text": "TIF1B",
                            "showarrow": false
                        },
                        {
                            "x": 5.727920454563199,
                            "y": 6.882643049361842,
                            "font": {
                                "size": 8
                            },
                            "text": "LMNB2",
                            "showarrow": false
                        },
                        {
                            "x": 5.727920454563199,
                            "y": 6.285402218862249,
                            "font": {
                                "size": 8
                            },
                            "text": "KI67",
                            "showarrow": false
                        },
                        {
                            "x": 5.727920454563199,
                            "y": 6.426264754702098,
                            "font": {
                                "size": 8
                            },
                            "text": "SFPQ",
                            "showarrow": false
                        },
                        {
                            "x": 5.700439718141092,
                            "y": 5.954196310386875,
                            "font": {
                                "size": 8
                            },
                            "text": "APEX1",
                            "showarrow": false
                        },
                        {
                            "x": 5.672425341971495,
                            "y": 6.108524456778169,
                            "font": {
                                "size": 8
                            },
                            "text": "TR150",
                            "showarrow": false
                        },
                        {
                            "x": 5.491853096329675,
                            "y": 5.906890595608519,
                            "font": {
                                "size": 8
                            },
                            "text": "HNRPR",
                            "showarrow": false
                        },
                        {
                            "x": 5.392317422778761,
                            "y": 5.614709844115208,
                            "font": {
                                "size": 8
                            },
                            "text": "HNRL2",
                            "showarrow": false
                        },
                        {
                            "x": 5.392317422778761,
                            "y": 5.554588851677638,
                            "font": {
                                "size": 8
                            },
                            "text": "BCLF1",
                            "showarrow": false
                        },
                        {
                            "x": 5.321928094887363,
                            "y": 5.392317422778761,
                            "font": {
                                "size": 8
                            },
                            "text": "RBM10",
                            "showarrow": false
                        },
                        {
                            "x": 5.321928094887363,
                            "y": 5.930737337562887,
                            "font": {
                                "size": 8
                            },
                            "text": "ILF3",
                            "showarrow": false
                        },
                        {
                            "x": 5.285402218862249,
                            "y": 5.672425341971495,
                            "font": {
                                "size": 8
                            },
                            "text": "TPX2",
                            "showarrow": false
                        },
                        {
                            "x": 5.285402218862249,
                            "y": 5.426264754702098,
                            "font": {
                                "size": 8
                            },
                            "text": "RPB1",
                            "showarrow": false
                        },
                        {
                            "x": 5.285402218862249,
                            "y": 5.523561956057013,
                            "font": {
                                "size": 8
                            },
                            "text": "SON",
                            "showarrow": false
                        },
                        {
                            "x": 5.247927513443585,
                            "y": 6.149747119504682,
                            "font": {
                                "size": 8
                            },
                            "text": "NONO",
                            "showarrow": false
                        },
                        {
                            "x": 5.20945336562895,
                            "y": 5.754887502163468,
                            "font": {
                                "size": 8
                            },
                            "text": "HNRDL",
                            "showarrow": false
                        },
                        {
                            "x": 5.169925001442312,
                            "y": 5.20945336562895,
                            "font": {
                                "size": 8
                            },
                            "text": "ARI1A",
                            "showarrow": false
                        },
                        {
                            "x": 5.169925001442312,
                            "y": 5.643856189774724,
                            "font": {
                                "size": 8
                            },
                            "text": "TASO2",
                            "showarrow": false
                        },
                        {
                            "x": 5.129283016944966,
                            "y": 5.426264754702098,
                            "font": {
                                "size": 8
                            },
                            "text": "ZC3HE",
                            "showarrow": false
                        },
                        {
                            "x": 5.129283016944966,
                            "y": 5.285402218862249,
                            "font": {
                                "size": 8
                            },
                            "text": "AKAP8",
                            "showarrow": false
                        },
                        {
                            "x": 5.087462841250339,
                            "y": 5.727920454563199,
                            "font": {
                                "size": 8
                            },
                            "text": "DHX9",
                            "showarrow": false
                        },
                        {
                            "x": 5.087462841250339,
                            "y": 5.392317422778761,
                            "font": {
                                "size": 8
                            },
                            "text": "SRSF1",
                            "showarrow": false
                        },
                        {
                            "x": 5.0,
                            "y": 6.108524456778169,
                            "font": {
                                "size": 8
                            },
                            "text": "HNRPM",
                            "showarrow": false
                        },
                        {
                            "x": 5.0,
                            "y": 5.129283016944966,
                            "font": {
                                "size": 8
                            },
                            "text": "RSF1",
                            "showarrow": false
                        },
                        {
                            "x": 4.954196310386875,
                            "y": 5.426264754702098,
                            "font": {
                                "size": 8
                            },
                            "text": "EMD",
                            "showarrow": false
                        },
                        {
                            "x": 4.954196310386875,
                            "y": 5.129283016944966,
                            "font": {
                                "size": 8
                            },
                            "text": "RBP56",
                            "showarrow": false
                        },
                        {
                            "x": 4.954196310386875,
                            "y": 5.832890014164741,
                            "font": {
                                "size": 8
                            },
                            "text": "HNRPU",
                            "showarrow": false
                        },
                        {
                            "x": 4.954196310386875,
                            "y": 5.20945336562895,
                            "font": {
                                "size": 8
                            },
                            "text": "UBP36",
                            "showarrow": false
                        },
                        {
                            "x": 4.954196310386875,
                            "y": 5.426264754702098,
                            "font": {
                                "size": 8
                            },
                            "text": "HNRPQ",
                            "showarrow": false
                        },
                        {
                            "x": 4.954196310386875,
                            "y": 5.087462841250339,
                            "font": {
                                "size": 8
                            },
                            "text": "SF3B2",
                            "showarrow": false
                        },
                        {
                            "x": 4.857980995127572,
                            "y": 6.169925001442312,
                            "font": {
                                "size": 8
                            },
                            "text": "LAP2B",
                            "showarrow": false
                        },
                        {
                            "x": 4.857980995127572,
                            "y": 5.169925001442312,
                            "font": {
                                "size": 8
                            },
                            "text": "SNUT1",
                            "showarrow": false
                        },
                        {
                            "x": 4.807354922057604,
                            "y": 5.285402218862249,
                            "font": {
                                "size": 8
                            },
                            "text": "HNRH1",
                            "showarrow": false
                        },
                        {
                            "x": 4.754887502163468,
                            "y": 4.807354922057604,
                            "font": {
                                "size": 8
                            },
                            "text": "EWS",
                            "showarrow": false
                        },
                        {
                            "x": 4.754887502163468,
                            "y": 5.087462841250339,
                            "font": {
                                "size": 8
                            },
                            "text": "ROAA",
                            "showarrow": false
                        },
                        {
                            "x": 4.754887502163468,
                            "y": 4.954196310386875,
                            "font": {
                                "size": 8
                            },
                            "text": "SRS10",
                            "showarrow": false
                        },
                        {
                            "x": 4.700439718141092,
                            "y": 5.0,
                            "font": {
                                "size": 8
                            },
                            "text": "TRA2B",
                            "showarrow": false
                        },
                        {
                            "x": 4.643856189774724,
                            "y": 4.906890595608519,
                            "font": {
                                "size": 8
                            },
                            "text": "HNRPF",
                            "showarrow": false
                        },
                        {
                            "x": 4.643856189774724,
                            "y": 5.321928094887363,
                            "font": {
                                "size": 8
                            },
                            "text": "SF3A1",
                            "showarrow": false
                        },
                        {
                            "x": 4.643856189774724,
                            "y": 4.906890595608519,
                            "font": {
                                "size": 8
                            },
                            "text": "FUS",
                            "showarrow": false
                        },
                        {
                            "x": 4.643856189774724,
                            "y": 4.807354922057604,
                            "font": {
                                "size": 8
                            },
                            "text": "DIDO1",
                            "showarrow": false
                        },
                        {
                            "x": 4.584962500721156,
                            "y": 4.857980995127572,
                            "font": {
                                "size": 8
                            },
                            "text": "RUNX1",
                            "showarrow": false
                        },
                        {
                            "x": 4.584962500721156,
                            "y": 5.0,
                            "font": {
                                "size": 8
                            },
                            "text": "ACINU",
                            "showarrow": false
                        },
                        {
                            "x": 4.584962500721156,
                            "y": 4.643856189774724,
                            "font": {
                                "size": 8
                            },
                            "text": "CHERP",
                            "showarrow": false
                        },
                        {
                            "x": 4.523561956057013,
                            "y": 4.857980995127572,
                            "font": {
                                "size": 8
                            },
                            "text": "SUGP2",
                            "showarrow": false
                        },
                        {
                            "x": 4.459431618637297,
                            "y": 4.857980995127572,
                            "font": {
                                "size": 8
                            },
                            "text": "P121A",
                            "showarrow": false
                        },
                        {
                            "x": 4.392317422778761,
                            "y": 5.0,
                            "font": {
                                "size": 8
                            },
                            "text": "SPB1",
                            "showarrow": false
                        },
                        {
                            "x": 4.392317422778761,
                            "y": 4.807354922057604,
                            "font": {
                                "size": 8
                            },
                            "text": "TOIP1",
                            "showarrow": false
                        },
                        {
                            "x": 4.321928094887363,
                            "y": 4.643856189774724,
                            "font": {
                                "size": 8
                            },
                            "text": "INCE",
                            "showarrow": false
                        },
                        {
                            "x": 4.321928094887363,
                            "y": 5.459431618637297,
                            "font": {
                                "size": 8
                            },
                            "text": "HNRPC",
                            "showarrow": false
                        },
                        {
                            "x": 4.321928094887363,
                            "y": 4.459431618637297,
                            "font": {
                                "size": 8
                            },
                            "text": "RED",
                            "showarrow": false
                        },
                        {
                            "x": 4.321928094887363,
                            "y": 4.459431618637297,
                            "font": {
                                "size": 8
                            },
                            "text": "UHRF1",
                            "showarrow": false
                        },
                        {
                            "x": 4.321928094887363,
                            "y": 4.754887502163468,
                            "font": {
                                "size": 8
                            },
                            "text": "SNW1",
                            "showarrow": false
                        },
                        {
                            "x": 4.247927513443585,
                            "y": 4.700439718141092,
                            "font": {
                                "size": 8
                            },
                            "text": "PHF3",
                            "showarrow": false
                        },
                        {
                            "x": 4.247927513443585,
                            "y": 4.459431618637297,
                            "font": {
                                "size": 8
                            },
                            "text": "SRSF9",
                            "showarrow": false
                        },
                        {
                            "x": 4.169925001442312,
                            "y": 4.523561956057013,
                            "font": {
                                "size": 8
                            },
                            "text": "RAI1",
                            "showarrow": false
                        },
                        {
                            "x": 4.169925001442312,
                            "y": 4.459431618637297,
                            "font": {
                                "size": 8
                            },
                            "text": "DHX15",
                            "showarrow": false
                        },
                        {
                            "x": 4.169925001442312,
                            "y": 4.459431618637297,
                            "font": {
                                "size": 8
                            },
                            "text": "UT14A",
                            "showarrow": false
                        },
                        {
                            "x": 4.169925001442312,
                            "y": 4.643856189774724,
                            "font": {
                                "size": 8
                            },
                            "text": "HNRPD",
                            "showarrow": false
                        },
                        {
                            "x": 4.087462841250339,
                            "y": 4.523561956057013,
                            "font": {
                                "size": 8
                            },
                            "text": "NUP98",
                            "showarrow": false
                        },
                        {
                            "x": 4.087462841250339,
                            "y": 4.247927513443585,
                            "font": {
                                "size": 8
                            },
                            "text": "CEBPB",
                            "showarrow": false
                        },
                        {
                            "x": 4.087462841250339,
                            "y": 4.169925001442312,
                            "font": {
                                "size": 8
                            },
                            "text": "RAD21",
                            "showarrow": false
                        },
                        {
                            "x": 4.087462841250339,
                            "y": 4.321928094887363,
                            "font": {
                                "size": 8
                            },
                            "text": "CIZ1",
                            "showarrow": false
                        },
                        {
                            "x": 4.0,
                            "y": 4.700439718141092,
                            "font": {
                                "size": 8
                            },
                            "text": "SLTM",
                            "showarrow": false
                        },
                        {
                            "x": 4.0,
                            "y": 4.807354922057604,
                            "font": {
                                "size": 8
                            },
                            "text": "RCC1",
                            "showarrow": false
                        },
                        {
                            "x": 4.0,
                            "y": 4.247927513443585,
                            "font": {
                                "size": 8
                            },
                            "text": "RBM3",
                            "showarrow": false
                        },
                        {
                            "x": 4.0,
                            "y": 4.700439718141092,
                            "font": {
                                "size": 8
                            },
                            "text": "ZN326",
                            "showarrow": false
                        },
                        {
                            "x": 4.0,
                            "y": 4.247927513443585,
                            "font": {
                                "size": 8
                            },
                            "text": "SP16H",
                            "showarrow": false
                        },
                        {
                            "x": 3.9068905956085187,
                            "y": 4.087462841250339,
                            "font": {
                                "size": 8
                            },
                            "text": "U520",
                            "showarrow": false
                        },
                        {
                            "x": 3.9068905956085187,
                            "y": 4.392317422778761,
                            "font": {
                                "size": 8
                            },
                            "text": "NKRF",
                            "showarrow": false
                        },
                        {
                            "x": 3.9068905956085187,
                            "y": 4.0,
                            "font": {
                                "size": 8
                            },
                            "text": "NCOA5",
                            "showarrow": false
                        },
                        {
                            "x": 3.9068905956085187,
                            "y": 4.247927513443585,
                            "font": {
                                "size": 8
                            },
                            "text": "CAF1A",
                            "showarrow": false
                        },
                        {
                            "x": 3.9068905956085187,
                            "y": 4.523561956057013,
                            "font": {
                                "size": 8
                            },
                            "text": "AHDC1",
                            "showarrow": false
                        }
                    ]
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~jf383",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/57.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-5.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2024-03-25 11:21:57",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "jf383",
                "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-04T09:13:49.119015Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~Luscombebmx/1.embed",
            "fid": "Luscombebmx:1",
            "filename": "Plot 1",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/Luscombebmx/1/9_AN4I2DD2PJZELMIYRU010242UL8N78.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/Luscombebmx/1/2_YLEVJQ40RUFSC2ERH0HOG6GPK9M292.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/Luscombebmx/1/8_S5VFSE76VAL9TWHPPE0JBLO9TVDEQ3.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/Luscombebmx/1/9_AN4I2DD2PJZELMIYRU010242UL8N78.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/Luscombebmx:1",
                "plots": "https://api.plotly.com/v2/plots/Luscombebmx:1",
                "parent": "https://api.plotly.com/v2/folders/home?user=Luscombebmx"
            },
            "owner": "Luscombebmx",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 1,
            "web_url": "https://chart-studio.plotly.com/~Luscombebmx/1/",
            "world_readable": true,
            "date_modified": "2024-04-04T10:32:28.323Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~Luscombebmx/1/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": false,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "uid": "097d49",
                        "meta": {
                            "columnNames": {
                                "x": "B",
                                "y": "A"
                            }
                        },
                        "mode": "markers",
                        "name": "Exp time (s)",
                        "type": "scatter",
                        "xsrc": "Luscombebmx:0:548c4c",
                        "ysrc": "Luscombebmx:0:dbb8b8"
                    },
                    {
                        "uid": "ec753a",
                        "meta": {
                            "columnNames": {
                                "x": "C",
                                "y": "A"
                            }
                        },
                        "mode": "markers",
                        "name": "Theory time (s)",
                        "type": "scatter",
                        "xsrc": "Luscombebmx:0:2d3403",
                        "ysrc": "Luscombebmx:0:dbb8b8"
                    }
                ],
                "frames": [],
                "layout": {
                    "title": {
                        "text": "1.1  Charging a Capacitor"
                    },
                    "xaxis": {
                        "type": "linear",
                        "range": [
                            -0.13311351568909746,
                            122.06773171203824
                        ],
                        "title": {
                            "text": "Time (0-120 secs)"
                        },
                        "domain": [
                            0,
                            1
                        ],
                        "autorange": false
                    },
                    "yaxis": {
                        "type": "linear",
                        "range": [
                            -0.40657235484821774,
                            15.984731992977872
                        ],
                        "title": {
                            "text": "Voltage (0-13v)"
                        },
                        "autorange": false
                    },
                    "autosize": true
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~Luscombebmx",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/14.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-7.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2024-04-04 09:03:44",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "Luscombebmx",
                "email": null,
                "is_active": null,
                "readonly": null,
                "is_dash_creator": null,
                "dash_created_count": null,
                "is_chart_creator": null,
                "charts_created_count": null
            }
        }
    ]
}