data_frame (DataFrame or array-like or dict) – This argument needs to be passed for column names (and not keywordnames) to be used. Array-like and dict are transformed internally to apandas DataFrame. Optional: if missing, a DataFrame gets constructedunder the hood using the other arguments.
x_start (str or int or Series or array-like) – Either a name of a column in
data_frame
, or a pandas Series orarray_like object. (required) Values from this column or array_like areused to position marks along the x axis in cartesian coordinates.x_end (str or int or Series or array-like) – Either a name of a column in
data_frame
, or a pandas Series orarray_like object. (required) Values from this column or array_like areused to position marks along the x axis in cartesian coordinates.y (str or int or Series or array-like) – Either a name of a column in
data_frame
, or a pandas Series orarray_like object. Values from this column or array_like are used toposition marks along the y axis in cartesian coordinates.color (str or int or Series or array-like) – Either a name of a column in
data_frame
, or a pandas Series orarray_like object. Values from this column or array_like are used toassign color to marks.pattern_shape (str or int or Series or array-like) – Either a name of a column in
data_frame
, or a pandas Series orarray_like object. Values from this column or array_like are used toassign pattern shapes to marks.facet_row (str or int or Series or array-like) – Either a name of a column in
data_frame
, or a pandas Series orarray_like object. Values from this column or array_like are used toassign marks to facetted subplots in the vertical direction.facet_col (str or int or Series or array-like) – Either a name of a column in
data_frame
, or a pandas Series orarray_like object. Values from this column or array_like are used toassign marks to facetted subplots in the horizontal direction.facet_col_wrap (int) – Maximum number of facet columns. Wraps the column variable at thiswidth, so that the column facets span multiple rows. Ignored if 0, andforced to 0 if
facet_row
or amarginal
is set.facet_row_spacing (float between 0 and 1) – Spacing between facet rows, in paper units. Default is 0.03 or 0.07when facet_col_wrap is used.
facet_col_spacing (float between 0 and 1) – Spacing between facet columns, in paper units Default is 0.02.
hover_name (str or int or Series or array-like) – Either a name of a column in
data_frame
, or a pandas Series orarray_like object. Values from this column or array_like appear in boldin the hover tooltip.hover_data (str, or list of str or int, or Series or array-like, or dict) – Either a name or list of names of columns in
data_frame
, or pandasSeries, or array_like objects or a dict with column names as keys, withvalues True (for default formatting) False (in order to remove thiscolumn from hover information), or a formatting string, for example‘:.3f’ or ‘|%a’ or list-like data to appear in the hover tooltip ortuples with a bool or formatting string as first element, and list-likedata to appear in hover as second element Values from these columnsappear as extra data in the hover tooltip.custom_data (str, or list of str or int, or Series or array-like) – Either name or list of names of columns in
data_frame
, or pandasSeries, or array_like objects Values from these columns are extra data,to be used in widgets or Dash callbacks for example. This data is notuser-visible but is included in events emitted by the figure (lassoselection etc.)text (str or int or Series or array-like) – Either a name of a column in
data_frame
, or a pandas Series orarray_like object. Values from this column or array_like appear in thefigure as text labels.animation_frame (str or int or Series or array-like) – Either a name of a column in
data_frame
, or a pandas Series orarray_like object. Values from this column or array_like are used toassign marks to animation frames.animation_group (str or int or Series or array-like) – Either a name of a column in
data_frame
, or a pandas Series orarray_like object. Values from this column or array_like are used toprovide object-constancy across animation frames: rows with matching`animation_group`s will be treated as if they describe the same objectin each frame.category_orders (dict with str keys and list of str values (default
{}
)) – By default, in Python 3.6+, the order of categorical values in axes,legends and facets depends on the order in which these values are firstencountered indata_frame
(and no order is guaranteed by default inPython below 3.6). This parameter is used to force a specific orderingof values per column. The keys of this dict should correspond to columnnames, and the values should be lists of strings corresponding to thespecific display order desired.labels (dict with str keys and str values (default
{}
)) – By default, column names are used in the figure for axis titles, legendentries and hovers. This parameter allows this to be overridden. Thekeys of this dict should correspond to column names, and the valuesshould correspond to the desired label to be displayed.color_discrete_sequence (list of str) – Strings should define valid CSS-colors. When
color
is set and thevalues in the corresponding column are not numeric, values in thatcolumn are assigned colors by cycling throughcolor_discrete_sequence
in the order described incategory_orders
, unless the value ofcolor
is a key incolor_discrete_map
. Various useful colorsequences are available in theplotly.express.colors
submodules,specificallyplotly.express.colors.qualitative
.color_discrete_map (dict with str keys and str values (default
{}
)) – String values should define valid CSS-colors Used to overridecolor_discrete_sequence
to assign a specific colors to markscorresponding with specific values. Keys incolor_discrete_map
shouldbe values in the column denoted bycolor
. Alternatively, if thevalues ofcolor
are valid colors, the string'identity'
may bepassed to cause them to be used directly.pattern_shape_sequence (list of str) – Strings should define valid plotly.js patterns-shapes. When
pattern_shape
is set, values in that column are assigned patterns-shapes by cycling throughpattern_shape_sequence
in the orderdescribed incategory_orders
, unless the value ofpattern_shape
isa key inpattern_shape_map
.pattern_shape_map (dict with str keys and str values (default
{}
)) – Strings values define plotly.js patterns-shapes. Used to overridepattern_shape_sequences
to assign a specific patterns-shapes to linescorresponding with specific values. Keys inpattern_shape_map
shouldbe values in the column denoted bypattern_shape
. Alternatively, ifthe values ofpattern_shape
are valid patterns-shapes names, thestring'identity'
may be passed to cause them to be used directly.color_continuous_scale (list of str) – Strings should define valid CSS-colors This list is used to build acontinuous color scale when the column denoted by
color
containsnumeric data. Various useful color scales are available in theplotly.express.colors
submodules, specificallyplotly.express.colors.sequential
,plotly.express.colors.diverging
andplotly.express.colors.cyclical
.range_color (list of two numbers) – If provided, overrides auto-scaling on the continuous color scale.
color_continuous_midpoint (number (default
None
)) – If set, computes the bounds of the continuous color scale to have thedesired midpoint. Setting this value is recommended when usingplotly.express.colors.diverging
color scales as the inputs tocolor_continuous_scale
.opacity (float) – Value between 0 and 1. Sets the opacity for markers.
range_x (list of two numbers) – If provided, overrides auto-scaling on the x-axis in cartesiancoordinates.
range_y (list of two numbers) – If provided, overrides auto-scaling on the y-axis in cartesiancoordinates.
title (str) – The figure title.
template (str or dict or plotly.graph_objects.layout.Template instance) – The figure template name (must be a key in plotly.io.templates) ordefinition.
width (int (default
None
)) – The figure width in pixels.height (int (default
None
)) – The figure height in pixels.
plotly.express.timeline — 5.24.0 documentation (2024)
Top Articles
How Long is a Soccer Game? A Detailed Breakdown of Match Times
How Long is a Football Game in the UK | Coachability
Kodoku No Yurikago Spoiler
Latest Posts
Heilende Frequenzen (Vollständige Liste der Heilfrequenzen)
Die Bedeutung von 111 und 1111 in der Liebe: Numerologie, spirituelle und engelhafte Bedeutung » AstroInsightz
Recommended Articles
- When Is Chuuzumou Movie Coming Out
- Bushi Free Weekend
- Download Nichijou Episode 0 Live Action
- Pros and Cons of Free Feminine Hygiene Products | Ablison
- How To Sell On Pop'n Twinbee
- Harry Potter and the Ashes of Tomorrow - Expanding the Sanctuary
- Collagen Protein: What It Is, Benefits, Side Effects And Supplements
- Maïdo Ferienwohnungen & Unterkünfte - Saint-Paul, Réunion | Airbnb
- Dune Ii: The Building Of A Dynasty Adaptive Triggers
- No More Room in Hell 2 Early Access Review - IGN
- Environmental Humanities in India
- 6th Annual Awards Dinner
- Dior Backstage Face & Body Foundation - Make-up | Makeup.cz
- The Order To Watch Taiho Shichauzo In America
- Steam Deck im Test: Ein mächtiger Handheld, aber ein PC mit Macken
- graph_pes.utils.nn - graph-pes
- Use Playwright Python in Playwright Python With Examples | LambdaTestUse
- Types of Swabs and Their Uses | Microbe Online
- Didier Bourdon Snl Skits
- Living With Temptation: American Sunset Fps Ps5
- Meitantei Conan Movie 27: 100-Man Dollar No Michishirube Dvd Collection
- Ostomy Care Market by Product Type, Application, End-Use
- Strawberry Moment On Sundays. Manga Chapter 63
- Zubehör für CPAP Geräte Archives
- The Beiderbecke Trilogy Full Movie Online With English Subtitles
- Pradipta Bhattacharyya Dark
- Light Novel Megami No Café Terrace
- Twitch Drop Stay.: Fragments Of Memories
- Ok Google How Old Is Rodrigo Dos Santos
- Megaman Star Force W
- The Affairs Of The Other World Depend On The Corporate Slave Ost Free Download
- The 27 Best New Hair Styling Products We Found This Year
- Ran: La Légende Verte Chapter 64
- BURST Replacement Heads
- HVAC Coils |CHPTA R-32 Series
- Sterling Hayden Filmes
- 2025 Beauty Trends Are Here! Get Ready to See These Hair, Makeup and Skincare Looks Everywhere Next Year
- Deepfakes Dimitrios Nakos
- Taking Love As A Contract Free Full Movie
- Sayoasa Clip
- Is Queen's Blade: Rebellion Ova Appropriate For 11 Year Olds
- I migliori mappamondi: belli e funzionali per il tuo studio della geografia | Studenti.it
- Earth Defense Force 4.1 For Nintendo Switch 2D
- Who Is The Author Of El Infierno (2010)
- Unique Weapons Game Over, Daisy! Deluxe
- Best Wheelchair Lifts (2023): 11 Recommended Lifts + Expert Buying Guide
- Does Last Bet Support Controller
- DTC GmbH Gesichtssauna Kosmetikbehandlungsgerät Nano Oxygenation Beauty Instrument, Hochdruckzerstäubung Gesichtsfaltenentferner, Hydration Instrument
- Sonic Life Sonix Professional VC15 Whole Body Vibration Machine
- Using a Hair Removal Cream Is the Easiest Way to Manscape
- Strategic Agility - CIO Wiki
- Back Pain & Injury Treatment
- One Day My Love Will Blossom. 2 Temporada Dublado
- (14) Das Geständnis | True Crime Story
- Vaniqa | LloydsPharmacy Online Doctor UK
- Dan Wong Filmology
- Raquette de padel puissante : quelle type de mousse choisir ? Rigide ou souple ?
- Watch Mujaki Na Wanko To Nekokaburi Season 1 Online
- What Is The Heart (2018) Movie About
- Oreo Pac-Man Game Keyring Early
- BB Cream vs CC Cream: Diferencias, beneficios y elección
- Space Pirate Captain Harlock: Arcadia of My Youth (1982)
- Indiana Jones und das Rad des Schicksals
- Lemon Fairy Tail Fanfiction: What are some interesting plot ideas?
- Buy Game-No-Watch Ball Cheap
- What Is Magical Sempai Age Rating
- Antipyretic drugs for children
- The Superior Made Of Honey English Sub Episode 2
- Aparat Nikon Z7 II body
- Starkey Hearing Aids | 2024 Starkey Prices, Costs, Accessories & Deals
- How To Download Halloween Kills (2021)
- Wednesday Wink - Lash Pads 101: All the Tips and Tricks of Under Eye Lash Pads
- How To Read Voltes V
- Twisted Love Series: The Ultimate Guide to Ana Huang's Popular Series
- The Omega Takes A Husband Home
- Naum Kleiman And His Wife
- Naum Kleiman And His Wife
- Naum Kleiman And His Wife
- Naum Kleiman And His Wife
- Naum Kleiman And His Wife
- Naum Kleiman And His Wife
- Naum Kleiman And His Wife
- Naum Kleiman And His Wife
- Naum Kleiman And His Wife
- Naum Kleiman And His Wife
- Is Linas Mikuta Getting A Divorce
- 1480 Radio Pirates (2014) Watch Online Subtitles
- Theatre Of Darkness: Yamishibai Reboot
- Shower Gel & Body Wash - Body Care | Ulta Beauty
- Getta Robo Anime Hulu
- Kodomo No Himitsu Season 1 Episode 3
- Music みにとじ
- Pokémon Mystery Dungeon: Go For It! Radiant Adventure Squad Mod Guide
- Why Is Woven (2016) Not On Hbo Max
- Sculpted Nails: Are Sculpted or Acrylic Nails Right for You? | Ellis James Designs
- The rise of male beauty: How to start a men’s skincare line in 2025
- Is Star Wars: Tales Of The Empire Overrated
- The huge, complete list of Funko Pop vinyl figures.
- 10 best at-home facial tools that actually work
- An In-Depth Look at the Different Types of Medical Gloves and Their Applications - HealthNord
Article information
Author: Chrissy Homenick
Last Updated:
Views: 5733
Rating: 4.3 / 5 (54 voted)
Reviews: 93% of readers found this page helpful
Author information
Name: Chrissy Homenick
Birthday: 2001-10-22
Address: 611 Kuhn Oval, Feltonbury, NY 02783-3818
Phone: +96619177651654
Job: Mining Representative
Hobby: amateur radio, Sculling, Knife making, Gardening, Watching movies, Gunsmithing, Video gaming
Introduction: My name is Chrissy Homenick, I am a tender, funny, determined, tender, glorious, fancy, enthusiastic person who loves writing and wants to share my knowledge and understanding with you.