CARVIEW |
Select Language
HTTP/2 200
accept-ranges: bytes
access-control-allow-origin: *
age: 1
cache-control: max-age=600
content-encoding: gzip
content-type: text/html; charset=utf-8
date: Mon, 13 Oct 2025 18:07:43 GMT
etag: W/"68e952e3-1bd0586"
expires: Mon, 13 Oct 2025 18:17:42 GMT
last-modified: Fri, 10 Oct 2025 18:39:31 GMT
server: Vercel
strict-transport-security: max-age=63072000
vary: Accept-Encoding
via: 1.1 varnish
x-cache: MISS
x-cache-hits: 0
x-fastly-request-id: 60b2473fcf9322d324dc5b6c312362037ecb5a62
x-github-request-id: A27A:37120A:25437:2B016:68ED3FEA
x-origin-cache: HIT
x-proxy-cache: MISS
x-robots-tag: index
x-served-by: cache-bom-vanm7210065-BOM
x-timer: S1760378862.165919,VS0,VE1014
x-vercel-cache: MISS
x-vercel-id: bom1::mh49j-1760378862152-cd2486030fd7
content-length: 5982513
Manhattan plot in Python
Manhattan Plot in Python
Plotly Studio: Transform any dataset into an interactive data application in minutes with AI. Try Plotly Studio now.
Manhattan Plot¶
ManhattanPlot allows you to visualize genome-wide association studies (GWAS) efficiently. Using WebGL under the hood, you can interactively explore overviews of massive datasets comprising hundreds of thousands of points at once, or take a closer look at a small subset of your data. Hover data and click data are accessible from within the Dash app.
In [1]:
import pandas as pd
import dash_bio
df = pd.read_csv('https://raw.githubusercontent.com/plotly/dash-bio-docs-files/master/manhattan_data.csv')
dash_bio.ManhattanPlot(
dataframe=df,
)