Skip to content
This repository has been archived by the owner on Jun 3, 2024. It is now read-only.

FutureWarning: Method .ptp is deprecated and will be removed in a future version. Use numpy.ptp instead. #95

Closed
huaji1992 opened this issue May 31, 2019 · 16 comments

Comments

@huaji1992
Copy link

No description provided.

@nicolaskruchten
Copy link
Contributor

Can you provide any context on when this warning appears?

@huaji1992
Copy link
Author

iris = px.data.iris()
import plotly_express as px
tips = px.data.tips()
gapminder = px.data.gapminder()
election = px.data.election()
wind = px.data.wind()
carshare = px.data.carshare()
px.scatter(tips, x="total_bill", y="tip", facet_row="time", facet_col="day", color="smoker", trendline="ols",
category_orders={"day": ["Thur", "Fri", "Sat", "Sun"], "time": ["Lunch", "Dinner"]})

@nicolaskruchten
Copy link
Contributor

Hmm ok. can you tell me which versions of Python, pandas and numpy you're using?

@MLDERES
Copy link

MLDERES commented Aug 5, 2019

I'm getting the error using version 1.16.4 of numpy and 3.7.3 of python
In [78]: sys.version
Out[78]: '3.7.3 | packaged by conda-forge | (default, Jul 1 2019, 22:01:29) [MSC v.1900 64 bit (AMD64)]'

@mrazam110
Copy link

Any help?

@nicolaskruchten
Copy link
Contributor

@emmanuelle can you take a look at this one please? We see this warning sometimes depending on the version of statsmodels and numpy... it would be good to just figure out which recent versions of these dependencies avoid these issues...

@harupy
Copy link

harupy commented Oct 21, 2019

@harupy
Copy link

harupy commented Oct 21, 2019

pandas (>= 0.24.0) raises this warning.
https://pandas.pydata.org/pandas-docs/stable/reference/api/pandas.Series.ptp.html

@harupy
Copy link

harupy commented Oct 21, 2019

I think using pandas (>= 0.24.0) and statsmodels (<= 0.9.0) causes this warning.

EDIT:
I was able to reproduce this warning with pandas 0.24.0 and statsmodels 0.9.0.

EDIT:
It turns out I was wrong. statsmodels version doesn't matter.

@harupy
Copy link

harupy commented Oct 21, 2019

We can also reproduce the warning like this:

import numpy as np
import pandas as pd

s = pd.Series([0])
np.ptp(s)

This is because np.ptp(s) calls s.ptp.
https://github.com/numpy/numpy/blob/v1.17.0/numpy/core/fromnumeric.py#L2430-L2496

@harupy
Copy link

harupy commented Oct 21, 2019

@harupy
Copy link

harupy commented Oct 21, 2019

One way to avoid the warning is convert a pandas series to a numpy array like below (I haven't tested yet but it should work):

- fit_results = sm.OLS(y, sm.add_constant(x)).fit()
+ fit_results = sm.OLS(y, sm.add_constant(x.values)).fit()

https://github.com/plotly/plotly.py/blob/4a30dc66230269aad008650544dd1045a40b1896/packages/python/plotly/plotly/express/_core.py#L236

@nicolaskruchten
Copy link
Contributor

Ah, thanks for all the detective work @harupy ! Indeed just adding .values there makes the warning go away :) I'll patch it tonight.

nicolaskruchten added a commit to plotly/plotly.py that referenced this issue Oct 22, 2019
@harupy
Copy link

harupy commented Oct 22, 2019

@nicolaskruchten You're welcome!

@trishattah
Copy link

thanks so much @harupy yes this works much appreciated. thank you @nicolaskruchten for asking this question

@avichaljha
Copy link

This was bothering me to no end on a variable assignment. As someone new to Python, it was quite discouraging as I though I was doing something wrong. @harupy , thanks for your help - you just saved me from despair! hontou ni arigatou gozaimashita!

clrpackages pushed a commit to clearlinux-pkgs/plotly that referenced this issue Nov 18, 2021
Afaque Siddiqui (2):
      Edited a typo
      Update doc/python/v4-migration.md

Alexander (1):
      Fix validate_executable behavior (#1915)

Andreas Bollig (1):
      distplot: only compute traces that will be shown

Anthony Miyaguchi (1):
      Update dot-plots with mislabeled data (#3063)

Antoine Roy-Gobeil (3):
      document configuration setting plotly.io.orca.config.server_url
      bump orca version to 1.3.1
      update baseline for Orca 1.3.1

Antonios Marios Christonasis (1):
      Update README.md

Ben Mares (3):
      Handle pathlib.Path in pio (#2974)
      Unpin six in requirements.txt
      Set minimal version for six

Brandon Andersen (2):
      add mapbox argument sourceattribution to example
      add width, height, and config to docstring

C Chaitanya (1):
      Update imshow.md

Carl Andersson (6):
      Adds function to sample colorscales
      Minor fixes
      Adds tests
      Code formatting
      Implements getting a colorscale by name
      Handle string inputs with get_colorscale

Charles Fox, CFA (1):
      Fixed typo (#2118)

Chris Arthurs (1):
      Fix for #1809 Python 2.7 incompatibility in the iframe renderer (#1810)

Chris Parmer (1):
      Orca to Kaleido

David Hay (1):
      Correct "Y Axis Title" label

Edward O (1):
      Fix "Advanced Hover Template" typo

Emmanuelle Gouillart (220):
      removed streaming tests
      percy tests (#1758)
      added minimal test for px (#1754)
      Add custom_data argument to px functions (#1764)
      more flexible type of input arguments for px functions (#1768)
      __all__ for figure_factory and io (for sphinx) (#1803)
      fixed skimage import (#1832)
      remove pywavelets from CI (#1833)
      run codegen
      add missing files
      black (new version)
      update to plotly.js 1.51.1
      removed imshow
      Imshow (#1855)
      docstring refactoring in figure factory and various places (#1837)
      Template bis (#1893)
      added imshow visual test for percy
      black
      first draft of adding pie, sunburst, funnel and funnelarea
      black
      labels and names
      hovertemplate
      added tests
      doc
      continuous color scale for sunburst and treemap
      color scales for treemap and sunburst
      colorway
      added tests
      added funnelarea
      minor improvements
      removed test
      doctest package, with some docstrings modifications (#1921)
      dataframe parameter in px docstrings (#1932)
      Doc migration: integrate tutorials and apidoc into main plotly.py repo (#1936)
      bypass confirmation when uninstalling stable plotly (#1941)
      removed submodules (#1942)
      changed repo where to deploy built branch (#1946)
      updated subplots import in figure factories (#1899)
      Merge doc prod (#1953)
      pull example in pie chart (#1954)
      added imshow to px tutorial (#1955)
      removing colorbar imshow example (#1975)
      correct zmin/zmax/range_color bug (#1981)
      added example about customdata and hovertemplate (#1977)
      3d surface example (#1974)
      4.3.1 changelog (#1989)
      Reversed colorscale (#1933)
      example with reversed colorscale (#1997)
      mapbox examples with px (#1998)
      px examples for pie, funnel/funnelarea, sunburst/treemap (#1995)
      px example in heatmap (#2000)
      mention PIL in Layout image tutorial (#2004)
      removed outdated comments about offline in configuration tutorial (#2013)
      corrected bug in plotly scraper
      bump to js 1.52 and codegen (#2047)
      added example with legend title (#2048)
      doc example with intensitymode for mesh3d (#2052)
      contributing notes for the doc (#2055)
      merged README and contributing.md (#2064)
      text orientation for pie and sunburst: doc (#2050)
      Added missing dependency to make cell standalone (#2069)
      config list (#2053)
      Refactoring of axes tutorial (#2068)
      correct confusing indentation level (#2065)
      fix deprecation warning in inspect (#2088)
      modified trendline formatting (#2087)
      uniformtext examples
      legend items example (#2108)
      Sunburst/treemap path (#2006)
      changelog with sunburst / treemap
      added discrete color examples
      added some items in release process notes
      mention getting-started
      changed order of imports for better error messages (#2132)
      xarray and imshow
      Datashader tutorial (#2154)
      Sunburst improvements (#2133)
      fixed pandas 1.0 pb in sunburst/treemap example
      add xarray support in imshow
      aspect ratio: pixels are not square by default for xarrays, plus timedate handling
      imshow tutorial: add xarray example
      update tutorials + use long_name
      change for CI
      Merge doc prod2 (#2179)
      comment
      try to regenerate cache
      Fix pytest (#2181)
      Fix pytest (#2181)
      corrected color bug in pie/sunburst etc
      added doc examples
      attempt to replace nose with pytest
      removed nose from test requirements
      replace nose with pytest
      make black happy
      Update packages/python/chart-studio/chart_studio/tests/test_optional/test_matplotlylib/test_plot_mpl.py
      black
      updated contributing notes and chart-studio tox.ini
      using pytest parametrize
      fixture
      bug
      tried to fix default renderer for ipython terminal (#2255)
      Px bool (#2127)
      corrected import bug (#2265)
      Apigen recursive (#2243)
      changelog updates
      fixed search index graph_objs/graph_objects (#2269)
      unpinned versions of pandas (and scipy and numpy) (#2278)
      tmp
      added labels to imshow
      blacken
      pinning orca
      pinning orca
      label
      removed colorbar key
      corrected bug
      datashader example
      Update packages/python/plotly/plotly/express/_imshow.py
      hover
      try to fix tests by changing plotly urls
      still debugging
      debug
      sed transfo
      more changes
      up
      Update contributing notes (#2290)
      Update images.md
      changelog
      minimal example with customdata for sankey nodes
      see also link to hover tutorial
      small edits in hovermode tutorial
      Update datashader.md
      Update sunburst-charts.md
      Update doc/python/renderers.md
      added backticks
      Update doc/python/sunburst-charts.md
      Hover format or skip (#2377)
      documentation on shape drawing
      skeleton of changelog addition
      more explanations
      fix bug in trendline in the case of missing values (#2357)
      Sg scraper (#2419)
      Mention extra tag in hovertemplate tutorial (#2329)
      Makefile: modify docstrings to use temporarily graph_objs (#2406)
      addressed review
      upgrade to plotly.js 1.54 (#2427)
      Update doc/python/lines-on-maps.md
      Repr html (#2421)
      added links to px.data and px.colors in API doc (#2493)
      complete the API of plotly.colors and plotly.express.colors (#2510)
      docstring of county choropleth (#2513)
      fixed bug in hover data
      addressed review comments
      Correct bug when color and values correspond to the same color in treemap or sunburst (#2591)
      Sunburst parent copy (#2640)
      run updateplotlyjsdev using js fast-image branch
      Sphinx fixes (against doc-prod) (#2687)
      work in progress on imshow with source
      added dev dep
      added dev dep
      more tests and docstring
      range_color case
      values for contrast_rescaling are now minmax and infer
      vendored code from scikit-image for rescale_intensity
      different backends for b64 creation
      more tests and documented parameters in docstring
      no color in hovertemplate when contrast has been modified
      modified tutorial
      modified requirements
      solve bug for rgba images
      tweaks so that zmin/zmax are set less often
      do not do anything when origin='lower' because the JS already takes care of this with source
      use z instead of color in hover
      version added in tutorial
      remove circle ci modifications
      codegen
      add generated files
      remove pypng dependency
      use rgba256 colormodel
      try to fix CI
      fix test
      improve examples
      add jpg compression option
      improve docstring
      use init_figure from main px core
      WIP: add facet_col arg to imshow
      CHANGELOG for imshow (#2747)
      animations work for grayscale images, with or without binary string
      animations now work + tests
      docs on facets and animations + add subplots titles
      solved old unnoticed conflict
      attempt to use imshow with binary strings and xarrays
      added test
      animation work for xarrays, still need to fix slider label
      added test with xarray and animations
      added doc
      added pooch to doc requirements
      Update packages/python/plotly/plotly/express/_imshow.py
      Update doc/python/imshow.md
      remove commented-out code
      animation + facet kinda working now, but it broke labels
      added test
      simplified code
      simplified code
      polished code and added doc example
      accelerate plotly JSON encoder for numpy arrays without nans (#2880)
      updated doc
      move array_to_imagestr function to be part of public API (#2879)
      Use x and y parameters for Image trace in imshow (for RGB or binary_string=True) (#2761)
      changelog entries
      add facet_col_spacing and facet_row_spacing
      modify error message + animation_frame label
      improve code readibility
      added example with sequence of images
      typoe
      label names
      label name
      do not repeat axes labels with facets
      don't save plotlyjs in every figure
      use cdn
      black

Eran (3):
      Update datashader.md (#2415)
      Update dropdowns.md
      Update legend.md

Erik Sundell (3):
      Support JupyterLab 2.0.0
      Bump to 1.5.3
      Support JupyterLab 2.0.0 - plotlywidget

Finlay Maguire (1):
      Fix typo in hover-text-and-formatting doc

Francois Dion (4):
      fixed test and mpl 3.4.1 compatibility
      added drawing of legend shapes (lines, markers)
      fixed test and mpl 3.4.1 compatibility
      added drawing of legend shapes (lines, markers)

Frederic COLLONVAL (2):
      Rename and rebase
      Fix CI

Frédéric Collonval (2):
      Merge JS package and create federated extension
      Add prebuilt assets when installing from sdist

George van den Driessche (1):
      Correct some regular expression syntax. (#2577)

Hammad Khan (5):
      update thumbnail link
      Added manhattan-plot image
      Fixing bio image urls
      Typo fix
      Changing links to git.io

HammadTheOne (1):
      Fixing typo

Harutaka Kawamura (1):
      Add sort=True (#1856)

Hugo van Kemenade (1):
      Fix for Python 4 (#2078)

Jack Parmer (3):
      Update README.md
      Update getting-started.md
      Update getting-started.md

James Eapen (1):
      Fix typo: missing 'as'

James Wong (1):
      Add an example with `constrain='domain'` (#2025)

Joel Ostblom (3):
      Docstring touchups (#1866)
      Add additional templates to control grid lines (#1874)
      Update contribution guidelines (#1884)

Jon Mease (97):
      jupyterlab-plotly@1.1.2 to fix publication
      Update jupyterlab-plotly to 1.1.2 in README
      Graph objects structure and __all__ specifications (#1802)
      Add "overwrite" kwarg to all update* figure methods. (#1726)
      Add convenience methods for annotations, shapes, and images (#1817)
      Template specification fixes (#1819)
      Update to to plotly.js 1.50.1 (#1820)
      Python 2 iframe renderer follow-on to #1809 (#1822)
      Release 4.2.0 (#1823)
      Update CHANGELOG and README for version 4.2.1
      Remove "paper" as default reference when adding annotations/shapes/images (#1888)
      Propagate empty templates (#1892)
      Release 4.3.0 (#1894)
      update to plotly.js 1.51.2 (#1988)
      Convert PIL image objects to data uri strings in JSON serialization. (#1991)
      Remove submodules discussion from contributing now that these are inlined
      Release 4.4.0 (#1992)
      Missed version 4.4.0 in README
      Fix improper JSON encoding exception when pillow module not installed (#1993)
      Release 4.4.1 (#1994)
      Import and initialization optimizations (#2368)
      Remove plotly express from delayed submodule import. (#2390)
      updated codegen to add a _validate property
      codegen logic updates
      Remove global go.validate object and replace with Figure-level validate property
      Fix restoring validation state of layout after template initialization
      Python 2
      rename validate -> _validate to make property private
      Run code generation
      Added Performance CHANGELOG.md section
      Don't disable validation when constructing FigureWidget's template.
      Fix FigureWidget attribute error on wildcard import with ipywidgets not installed (#2445)
      Fix `TypeError: unhashable type: 'Template'` during `Figure` construction
      Add Kaleido image export support (#2613)
      WIP accelerated encoding with orjson
      support fig to dict in io without cloning
      make sure numpy is loaded when processing a numpy convertible array
      fix clone default
      Add pio.json.config object to configure default encoder
      default_encoder to default_engine
      blacken
      Handle Dash objects in to_json
      Update kaleido instructions to install from conda-forge
      add JSON encoding tests
      add testing of from_plotly_json
      Better error message when orjson not installed and orjson engine requested
      Add orjson as optional testing dependency
      Replace Python 3.5 CI tests with 3.8
      Try only install orjson with Python 3.6+
      Don't test orjson engine when orjson not installed
      Try new 3.8.7 docker image since prior guess doesn't exist
      greater than!
      Bump scikit image version for Python 3.8 compatibility
      Try to help Python 2 from getting confused about which json module to import
      Update pandas for Python 3
      Revert 3.8 CI updates. Too much for this PR
      Doh
      Don't skip copying during serialization
      Rename new JSON functions:
      Ensure cleaned numpy arrays are contiguous
      Use to_json_plotly in html and orca logic
      Add orjson documentation dependency
      Handle pandas Timestamp scalars in orjson engine
      Rework date and string encoding, add and fix tests
      default JSON engine to "auto"
      Fix expected JSON in html export (no spaces)
      blacken
      Fix expected JSON in matplotlylib test
      Fix expected JSON in html repr test
      Don't drop timezones during serialization, just let Plotly.js ignore them
      Support JSON serialization of numpy datetime64 arrays
      Support coercing pandas datetime DataFrames
      blacken
      Pre 1.0 pandas compatibilty
      no need to skip legacy tests now
      Only try `datetime_as_string` on datetime kinded numpy arrays
      Only try `datetime_as_string` on datetime kinded numpy arrays
      Don't store object or unicode numpy arrays in figure. Coerce to lists
      Try orjson encoding without cleaning first
      blacken
      remove scratch file
      Remove unused clone
      Remove the new "json" encoder
      Reorder dict cleaning for performance
      Require python 3.6 and CI maintenance (#3160)
      Kaleido v5 updates (#3094)
      CircleCI updates: Unify requirements, drop conda, refactor to reduce duplication (#3164)
      Remove default width/height for static image renderers
      Manually revert 6cea61db9280b33d4870ff527be9dcafeed45bd3
      Add JSON test for serializing customdata as numpy array
      Add CHANGELOG.md entry
      Fix error in orjson engine when a dict has a non-string value as a key (#3351)
      Fixed crash when serializing dict with mix of string and int keys
      CHANGELOG
      Test fix
      Remove layout string test
      Fix deepcopy/pickle tests

Joseph Damiba (33):
      update to content
      fix typo
      adding reference links
      wording fixup
      removing dash-example section
      switch thumbnail for ternary plots doc to ternary scatter plot
      change page type from u-guide to example index for posts that have order less than 5
      target the new graphing-library-docs repo
      prevent creation of new px.default properties at run time
      prevent creation of new px.default properties at run time
      run black
      add test for permissive defaults
      formatting
      formatting
      make sure new test is picked up by pytest
      add examples to show different symbols
      fixups to figure styling
      add examples for configuration options
      Revert "add examples for configuration options"
      styling markers symbol example
      add example showing how to customize figure subplot titles
      change .ly to .com
      Updates to examples in fundamentals section (#2201)
      Config options update (#2199)
      change logo, link colors, typography, header color
      add examples from wishlish
      fixup order to be sequential
      remove section
      enforce order
      add documentation about data input types
      add links and info for mixed form data
      add figure for mixed form data
      fix 404 hyperlink

Julien Monticolo (1):
      correct misspells, fix #3074 (#3105)

Karthikeyan Singaravelan (2):
      Fix warning regarding ABC import from collections
      Fix lint error.

Kully (4):
      docs(icicle): start the  icicle python docs
      docs(typo): correct path to express in plotly.py folder
      add(icicle px): reveal icicle in plotly express
      docs(icicle): complete icicle with PX examples; proof-read the copy

Li Xing (1):
      Update _html.py

Liam Connors (1):
      Minor edit

Mana Borwornpadungkitti (1):
      Clarify `histnorm` description

Marcin Nowak-Liebiediew (7):
      docs:bio:volcano: simplified examles, replaced jupyter-dash example with iframe
      docs:bio: volcano - add `no_display=true` to iframe cell
      docs:bio: merged clustergram and circos files, replace jupyter-dash with iframe
      docs:bio: remove molecular-visualizations
      docs:bio: add manhattanplot documentation
      docs:bio: renamed file with alignmentchat docs
      docs:bio: bar chart for conversion viz + alignment chart iframe url

Marco Gorelli (1):
      :alien: upgrade code so it no longer uses deprecated pandas method ix (#2011)

MarcoGorelli (2):
      Fix typo in plotly.subplots.py which mentioned a non-existing filepath
      Keep in trailing whitespace

Marianne Corvellec (3):
      Update imshow.md
      Add missing whitespaces
      Update _imshow.py

Martin Lehmann (1):
      Fix missing commit info in auto-generated archives

Max Ghenis (1):
      Typo fix in hover-text-and-formatting.md "expectany" (#2603)

Michael Chapman (3):
      Update contributing.md for Windows contributors
      bug_2931: resolving numpy integer check and adding test (#2451)
      bug_2410: Allowing Ints to be passed for rows/cols and refactored int… (#2546)

Michael Fore (1):
      Update sankey-diagram.md

Mitchell Johnson (1):
      UPDATE: consistent CLI installation instructions

Murat Can Karacabey (1):
      Fixed wrong axis titles

Nathan Drezner (1):
      Update webgl-vs-svg.md

Nermin Ghith (1):
      Update time-series.md

Nicholas Esterer (72):
      Clarified installation process for development
      black now included in packages/python/plotly/optional-requirements.txt
      dendrogram works with scipy===1.5.0 default colors
      Map new color sequence to old color sequence
      Updated documentation for colorscale of create_dendrogram
      Improved doc string for dendrogram
      Clarified where to find higher-level functions on figures
      select_traces selector argument can now be a function
      Added ' domain' to EnumeratedValidator.build_regex_replacement
      Pin black version
      Removed whitespace changes
      Squashed version of hline-vline-multifacets
      Remove mystery file
      Instead allow _selector_matches to accept function selector
      select_traces uses _selector_matches accepting function
      BaseFigure._selector_matches accepts function selector
      Better magic underscore errors
      Removed dash link
      Update _selector_matches error
      changelog entry
      Remove whitespace-only changes
      Assert that errors are raised
      Also state when a property doesn't support subscripting
      Tests for non-subscriptable property errors
      updated changelog
      Removed _unzip_pairs in favour of zip(*...)
      Improved domain referenced objects docs
      _add_annotation_like now accepts exclude_empty_subplots argument
      exclude_empty_subplots for add_{shape,annotation,layout_image,trace}
      python2 syntax fix
      Added selector argument and changed _subplot_has_no_traces
      Test finding empty subplots for all selector combinations
      Assert that we indeed test all the selector combinations
      Anything truthy passed to exclude_empty_subplots works
      changelog
      Improved error message when subscripting types that don't support it
      Removed garbage line from test_dict_path_errors.py
      selector argument accepting function now correctly documented
      Added reminder in PR checklist to add/update docstrings
      go.Figure now has set_subplots
      Tests for go.Figure.set_subplots and figure argument to make_subplots
      docs and changelog for fig.set_subplots
      python 2 unittest doesn't support assertRaisesRegex
      Use pytest.raises with match argument in set_subplots tests
      Changed PlotlyKeyError's superclass to KeyError
      BasePlotlyType._raise_on_invalid_property_error raises PlotlyKeyError
      Cast some errors to PlotlyKeyError
      Updated the tests to reflect the new Exception behaviour
      BasePlotlyType.__setitem__ exceptions casted to ValueError
      Merge master's whitespace changes
      Now subscripting errors triggered on types throwing TypeError
      subscripting error tests compatible with Python2
      Changed dict path error display to always ^
      Try taking length of string-like objects
      leading, trailing, multiple underscores detected in dict path strings
      Added tests for leading, trailing and embedded extra underscore errors
      Complain about trailing underscores, find closest key
      Updated error messages for trailing underscores and find closest key
      Key guessing before and after list of valid properties
      Test single property key guessing
      Descriptive error when subplot spacing impossible
      Python2 divide gets me every time
      px raises error when horizontal or vertical spacing is impossible
      Select annotation-like objects with string or int
      traces can be selected with index or string
      select_* methods now accept integer or string selector
      Mistake returning early from BaseFigure._selector_matches
      Cast the returned iterators to generators
      added tests for selecting traces using string or index
      better cast to generator
      tests for selecting annotation-like objects with integer
      Integer selector tested on select_* elements over subplots

Nicolas Kruchten (685):
      ignore .vscode
      really removing chunked_requests
      initial build-out of facet wrapping
      closes https://github.com/plotly/plotly_express/issues/95
      doc tweaks
      facet_wrap percy tests
      lock down fix for #1836
      Update README.md
      Update README.md
      Update README.md
      Update README.md
      Update README.md
      Update README.md
      PX shouldn't modify attrs controlled by template
      force the template via override
      px template tests galore
      blacken
      use three px-standard colorscale kwargs
      imshow defaults cascade
      docstrings and tests
      apply defaults cascade to swatches()
      fix swatch titles
      easily access canonical list of named colorscales
      Apply suggestions from code review
      Update README.md
      Update README.md
      tweaks to pie/funnel
      fix tests
      fix a PX input bug when using data frame indices
      add choropleth_mapbox to px
      px.density_mapbox
      rounding out mapbox functions
      fixing ids in election dataset
      geopandas helper
      fix tests and add new ones
      more percy tests
      black
      bump CI
      bump CI
      Bump CI
      symlink root readme
      doc cleanup
      fix facet labels
      add range_theta kwarg
      range_theta docs
      fix up doc-build
      Px should not hardcode default height (#1990)
      ignore ipynb checkpoint
      Update requirements.txt
      Update CHANGELOG.md
      Update plotly.express.rst
      test backticks
      Update CHANGELOG.md
      Update Makefile
      Closes https://github.com/plotly/documentation/issues/1629
      Rename annotated_heatmap.md to annotated-heatmap.md
      standardize on df variable name
      hurray for tests
      add continuous color to bar_polar
      adding built-in colorscales reference page
      crosslinking
      fix CI
      better wrapping
      trigger documentation deployment automatically
      trigger documentation deployment automatically
      trigger documentation deployment automatically
      undoing previous attempt
      trying to coordinate multi-repo CI jobs with a machine user
      nicer commit messages all around
      fix CI by disabling test
      fix CI by disabling test
      fix CI by disabling test
      fix CI by disabling test
      revamp continuous color docs, add categorical color docs
      addressing PR comments
      categorical to discrete
      fixup
      Update scattermapbox.md
      use legend titles in PX
      fix tests
      fix tests
      categorical choropleths
      comment
      remove references to old name
      remove references to old name
      cleanup
      Update axes.md
      first and last color of cyclicals should match
      cyclical swatches function
      using swatches_cyclical in docs
      typo
      add a geojson dataset and link from election dataset
      add a geojson dataset and link from election dataset
      update plotly.js to 1.52.1
      force CI build
      Update config.yml
      cleanup
      both bundles use min
      clean up package.json build steps
      explicitly run webpack in plotlywidget
      explicitly run webpack in plotlywidget
      preload val_map from orders
      add test for PX orthogonal ordering
      clearer comment
      test extra noise in category_orders
      black
      More flexible parallel_categories magic
      test dimensions_max_cardinality
      docs for dimensions_max_cardinality
      Update doc/python/parallel-categories-diagram.md
      Update packages/python/plotly/plotly/express/_doc.py
      big batch of layout.geo docs (#2109)
      box plot tweaks
      fix simple_white colorbar (#2110)
      4.5.0 changelog draft
      bumping version numbers
      bumping version numbers
      syncing up package-lock.json
      rc versions
      rc versions
      final versions fo 4.5.0
      bump CI versions
      gitignore
      dummy root node in treemaps
      tweaks to make flake8 happy
      g -> trace_data
      k -> attr_name
      v -> attr_value
      v_label -> attr_label
      result -> trace_patch
      finally: how to style px
      cross-link px styling
      more links
      4.5.1 changelog
      update versions
      update versions
      bumping plotly.js to 1.52.2
      bumping versions prior to release
      commit built widget
      more versioning
      updating versions now that things are on PyPI
      updating release docs
      PR feedback
      Pin @types/plotly.js
      release process for 4.5.2
      Update CHANGELOG.md
      dummy setup.py for Github 'Used By'
      Update marker-style.md
      Update figurewidget.md
      Update figurewidget-app.md
      interact html export docs
      Update marker-style.md
      Update figurewidget.md
      Update figurewidget-app.md
      interact html export docs
      release 4.5.3
      fix bad search&replace
      documentation PR checklist
      documentation PR checklist
      release 4.5.4
      bump versions for docs
      Update line-and-scatter.md
      Update ternary-plots.md
      Remove unsupported opacity kwarg from pie-like functions
      pin orca in docs
      Update README.md
      removing odd non-breaking-spaces from headers
      removing odd non-breaking-spaces from headers
      generalizing imshow(labels, x, y)
      docs and tests for imshow changes
      hide name from within hovertemplate
      what about dash?
      Closes #2319
      Port cufflinks
      requirements
      fix ci check
      Update doc/python/cufflinks.md
      Update doc/python/cufflinks.md
      mapbox name fix
      missing pieces from previous commit
      Update plotly-style.css
      bump plotly.js to 1.53.0 (#2340)
      tweak 4.6 changelog
      add link customdata and hovertemplate
      hover and date axis doc upgrades
      chart-studio v1.1.0
      releasing v4.6.0
      bump versions in docs
      bump plotly versions in docs
      Update README.md
      clean up ci jobs (#2355)
      missing PX docs
      Apply suggestions from code review
      nuke gremlin
      add redirections
      Update renderers.md
      initial cut at wide-form support
      wip
      wip
      initial pass at PX auto-orientation
      cleanup
      fix for odd box/violin spacing when axis matches color
      clean up default {}
      smarter histfunc defaults
      px.IdentityMap
      px.Constant
      PR feedback
      black
      satisfy flake8
      test auto orient box-like
      locking down auto_orientation with tests
      respect column index name and pass through melted names
      fix too-narrow type check bug
      tests wip
      DRY up attrable lists
      testing wip
      sort columns for python < 3.6
      wide mode special case tests
      extra comments and another test
      px.Range
      smarter x or y behaviour
      smarter x or y behaviour
      scattergl doesn't support orientation
      move gl switch
      fix Pandas warning, use parameterized tests
      fix Pandas warning, use parameterized tests
      align bar and histogram behaviours in wide mode with categorical values
      wip
      wip
      wip wide_y
      wip
      more tests, more parameterization
      funnel is wideable
      all cartesians now support wide mode
      Add CHANGELOG step to PR template
      title.text everywhere in PX
      more title_text fixup
      Update legend.md
      get rid of
      raise errors on multi-index in column/index in wide mode
      parameterize test_px
      manage ugly name collisions
      lock down edge cases around name collisions
      Update CHANGELOG.md
      Update CHANGELOG.md
      bump plotly.js to 1.54.1
      releasing 4.7.0
      unpinning JupyterLab 1 from instructions
      tweak
      changelog tweaks
      bump versions in post-release files
      Update getting-started.md
      fixup
      bump versions for 4.7.1
      figure factory pages
      tweaks
      adding choropleth to apidoc
      remove old
      fix up links
      apidoc tweak
      PR comments
      wide-mode docstrings
      fix ordering in tests in py < 3.6
      fix tests py2.7
      expand docstrings a bit
      wide datasets
      better timeseries dataset
      pandas backend
      cleaner pandas backend
      special case for wide-var=columns
      straight equality test
      make CI pass for now
      changelog and more docstring
      changelog
      long and wide
      wide form docs draft
      Emma's changelog
      region blocks to avoid execution
      accept indexes as wide-mode spec
      reject wide-mode with different types
      make list-like hover_data more robust
      Update doc/python/wide-form.md
      Update doc/python/radar-chart.md
      PR feedback
      PR feedback
      docs
      bump doc pandas
      doc tweaks
      Fix for pandas pattern
      doc tweaks
      add test
      fixing CI
      fixing CI
      fixing CI
      fixing CI
      fixing CI
      4.8 release
      bump doc requirements
      apidoc version
      bump statsmodels
      release 4.8.1
      bump doc requirements to 4.8.1
      remove order:5 gap
      fixing hover_data and hover_name bugs in path API
      another test
      PR feedback
      Update CHANGELOG.md
      imshow now handles DataFrame indexes and names by default
      changelog
      should go into a minor changelog
      export colors only once
      more Pandas backend options
      animation limitations
      Update CHANGELOG.md
      new Structure of Figures page
      thumbnail
      no need to exclude heatmapgl any more
      headers
      formatting tweaks
      formatting tweaks
      make trendlines more robust
      more tests
      changelog
      nicer error message
      graph objects page
      link fix
      link up graph objects page
      new px landing page
      new px landing page
      new px landing page
      new px landing page
      doc tweaks
      fixing merge
      fixing doc order
      bumping plotly.js
      accept integer and float columns in wide mode
      changelog
      Update packages/python/plotly/plotly/express/_core.py
      unset marginal ranges
      set line_group in wide mode
      release 4.8.2
      bumping doc version
      px.NO_COLOR
      document px.NO_COLOR
      webgl trendlines
      fix tests
      facet spacing, closes #2584
      fix tests
      Update multiple-axes.md
      Update time-series.md
      fix tests for real
      documenting facet_*_spacing
      checkpoint
      various documentation improvements
      bar base and timeline
      ff docs
      Rebuild extensions using Node 12 (#2636)
      clarify docstring
      updating release notes
      fixing up docs
      fix docs
      updating to plotly.js 1.54.6
      plotly.js CHANGELOG entry
      changelog and doc tweaks
      4.9.0-rc.1
      4.9.0 release
      bump doc version
      add timeline and hexbin_mapbox to apidoc
      PX and subplots
      redirection
      strip charts docs
      link up strip charts
      tweak
      fixedrange
      download opts
      tweaks
      slim down
      tweaks
      fix build
      fix build
      navbar tweaks
      clean up imports
      fix internal reference links
      fix internal reference links
      non-business hour gaps
      Delete compatibility.md
      continuous error bars and mention append_trace
      remove last empty
      fixups
      longer timeout for umap
      skip legend arg in pandas hist
      skip legend arg in pandas hist
      longer timeout for umap
      disable failing python-3-5-orca build
      disable failing python-3-5-orca build
      binder reqs
      dash app tiles
      dash app tiles
      dash app tiles
      Update contributing.md
      full_figure_for_development
      add full_figure docs and test
      getting tests to pass
      getting tests to pass
      getting tests to pass
      getting tests to pass
      changelog
      bump plotly.js to 1.55.1
      blacken png
      remove f-string
      fix png.py tests
      fix marker style doc
      try to pin down build failures
      roll back poppler version changes
      trying poppler fix again
      get failed artifacts uploaded
      update orca baseline
      fix doc order
      fix tests
      fix tests
      fix PX timezone treatment
      bump js 1.55
      ticklabelmode docs
      Update CHANGELOG.md
      Update release.md
      docs for time-format
      bumping JS version throughout
      doc tweaks
      updated release instructions
      version 4.10.0
      Update CHANGELOG.md
      update docs
      build docs
      merge doc-prod
      categorical axes
      fix axes
      fix axes
      fix axes
      fix axes
      titles
      tweak
      legend order
      date tick label second line
      Update figure-factories.md
      Update histograms.md
      upgrade plotly.js to 1.56.0 and tag 4.11.0
      bump doc versions
      Update FUNDING.yml
      Update FUNDING.yml
      upload ipynb files to separate branch
      geopandas choropleth examples
      geopandas scatter examples
      mekko example
      use geopandas built-in dataset
      bump plotly.js to 1.57.0
      lines from geopandas
      lines from geopandas
      document xperiod and date histograms
      lines from geopandas
      lines from geopandas
      document xperiod and date histograms
      bump to 1.57.1
      tweak changelog, update package lock
      v4.12.0 version bumps
      bumping versions
      doc tweaks
      broken thumbnail
      more shape/text doc cleanup
      facet annotations
      facet annotations
      typo
      version note
      adding Turbo colorscale and continuous swatches
      cleanup
      makefile tweaks
      support for hiding code cells
      support for hiding code cells
      swatch hover
      Update discrete-color.md
      Update discrete-color.md
      docstring
      clean up flake8 errors
      changelog finalization
      more troubleshooting docs
      plotly red
      honor zmin/zmid/zmax in annotated_heatmap font colors
      enable faceting for geo, geojson everywhere possible, text/symbols for scatter_geo
      no geojson for scattermapbox
      changelog and docs
      bump reqs
      bump reqs
      use subplot updaters to prep for facets-everywhere
      promote geo.fitbounds and geo.visible to PX
      fix geopandas examples
      bump version to 4.13.0
      bump doc versions to 4.13.0
      slightly more robust
      typo
      fix chart-studio version
      bumping plotly.js to 1.58.0
      changelog for imshow changes
      typo fix
      more imshow fixups
      set default templates to autotypenumbers=strict
      changelog
      updating autotype documentation
      improved PX defaults
      bump plotly.js to 1.58.1
      release 4.14.0
      bump doc requirements
      try to pin nbconvert
      bump plotly.js to 1.58.2
      docs for ticklabelposition
      release 4.14.1
      actual 4.14.1 release commit
      updating versions in docs
      changelog tweak
      Update doc/python/troubleshooting.md
      rename 'yo'
      Update release.md
      Update heatmaps.md
      tiny refactoring
      norms in decorated labels
      lock down some behaviour with tests
      finish edge-case labelling for histnorm/histfunc
      support JupyterLab 3 in extensions
      bump plotly.js to 1.58.4
      4.14.2 changelog
      version 4.14.2 release
      version 4.14.2 release
      bump versions in docs
      reuse x/y/z/base in hover data
      changelog
      Small change to packaging of  extension
      changelog
      readme version tweaks
      version 4.14.3
      slight shuffle in release instructions
      bumping version in docs
      Update figure-introspection.md
      Update configuration-options.md
      Update troubleshooting.md
      latex docs (#3157)
      remove latex redirections
      old file cleanup
      minor fix to get_colorscale
      black
      Update figure-structure.md
      Update contributing.md
      Update creating-and-updating-figures.md
      remove 'latest' CDN URLs
      bumping to JS 2.0.0 RC 2
      trying to fix sphinx
      5.0.0rc1
      changelog
      black
      bumping to JS 2.0.0 rc3
      bump JS to 2.0
      v5.0.0rc2
      allow / pattern in bars
      Update LaTeX.md
      Update README.md
      bump deps for security issues
      PX val_map now respects category_orders
      force range to be breadth of category_orders
      directly compute nrows/ncols
      directly compute nrows/ncols
      standardize arg check
      standardize arg check
      simplify get_orderings
      uniquify category_orders
      bumping to Plotly.js 2.1
      adding pattern_shape to PX
      black
      black
      fix docs
      undo partly-built work
      new extension docs
      deprecate transforms
      wip
      standardize and improve hierarchical chart docs
      pattern docs
      orjson and webgl docs
      'new in' and modebar info
      tweaks
      legendrank docs
      legendrank docs
      5.0 changelog
      changelog
      version 5.0.0
      config file
      bump doc versions
      add icicle to apidoc
      Update CHANGELOG.md
      Update pandas-backend.md
      bumping Plotly.js to 2.2
      docs for legendgrouptitle
      5.1 changelog
      bumping internal version numbers to 5.1.0
      bump doc versions
      add some extra options to various demo datasets
      changelog
      fix silly bug
      fix pandas warnings
      improve browser error messages
      revert test change
      fix test
      tweak tests
      better tests
      ability to show markers on lines
      black
      improve scatter and line docs
      add all datasets to PX export for docs
      more line docs
      ma and ewm trendlines
      extract trendline function API
      ols log options checkpoint
      move trendline code to own module
      get trendline_functions into apidoc
      tests for new trendlines
      apidoc and tests
      fix up tests
      docstrings
      docstrings
      docstrings
      add PX utility functions to apidoc
      refactor new trendlines
      clarify
      docstring
      bugfix
      trendline_scope
      black
      changelog
      changelog
      validate trendline_options
      tweak docstrings
      try embedding SciPy talk video
      try embedding SciPy talk video
      positive values only for logs
      docs for trendlines
      bump Plotly.js to 2.3.1
      wip
      mostly finished ECDF
      wip
      finishing up ECDF
      primitive KDE implementation, matches  though
      wip
      kde labelling
      work out line shape for ecdfmode
      wip
      docs sweep
      back out KDE
      changelog
      EPS file change due to gl pixel ratio
      Update troubleshooting.md
      changelog
      doc tweak
      add pretty_names option to datasets
      release 5.2.0
      fix up build process
      release 5.2.1
      doc bumps to 5.2.1
      doc bumps to 5.2.1
      ecdf in apidoc
      changelog tweak
      release v5.2.2
      Update facet-plots.md
      bump Plotly.js to 2.4.0
      retry with correct black
      bump to 2.4.1
      release 5.3.0
      bump doc versions
      bump plotly.js to 2.4.2
      release 5.3.1
      bump doc versions
      bump plotly.js to 2.5.1
      try to pin down doc deps
      CHANGELOG
      CHANGELOG
      bump to plotly.js 2.6
      2.6.1
      bump to Plotly.js 2.6.2
      changelog
      bump Plotly.js to 2.6.3
      release 5.4.0

Nikolas Havrikov (1):
      Actually display the tidy table (#2136)

Ong Chin Hwee (1):
      DOC: Add histogram category order example (#2779)

Pascalco (1):
      assign Figure object to a variable

Paweł Samoraj (1):
      Fix typo in express/_doc.py

Quentin Fortier (1):
      Remove duplicate import

Renaud Laine (15):
      hexbin mapbox implemented in plotly.express
      black formatting
      documentation for hexbin_mapbox
      Changelog entry
      hexbin_mapbox test
      Remove unused
      remove *args for python 2 compatibility
      hexbin in ff
      black
      Remove previous px hexbin stuff
      Hexbin_mapbox improvements: centered on the lat-axis.
      Fixed override_dict for params that are not in docs (used for px.pie for instance)
      Option to display original data.
      black
      removed unnecessary cell in doc file

Rosario Scalise (1):
      Update animations.md

SageCodeCoplAL08 (6):
      fixing documents
      document corrections
      document corrections
      fix for chromium renderer on linux systems (issue #2348)
      formating using the black formatter
      addressing comments on the pull request, modifying the exception statements to be more meaningful while also optimising the code

Sandu Ursu (1):
      Capitalized letters for consistency

Sayed Hadi Hashemi (1):
      Fix a type in configuration-options doc

Shweta Goyal (1):
      Fixed Kaggle link!

StandbyMe (1):
      Update _orca.py (#1840)

Subodh Dahal (1):
      Fixed command for installing ipywidgets using pip

Sylwia Mielnicka (21):
      Update subplots.md
      Update legend.md
      Update subplots.md
      Update axes.md
      Update facet-plots.md
      Update doc/python/facet-plots.md
      Update facet-plots.md
      Update histograms.md
      Update axes.md
      Update subplots.md
      Update legend.md
      Update subplots.md
      Update axes.md
      Update facet-plots.md
      Update doc/python/facet-plots.md
      Update facet-plots.md
      Update axes.md
      Update histograms.md
      Update sliders.md
      Patch 7 (#2297)
      Update sankey-diagram.md (#2291)

Tarek Allam Jr (1):
      Refine div formatting with `to_html()` + full_html=False (#2469)

Tim Gates (1):
      docs: fix simple typo, specfic -> specific

Timoté Vaucher (3):
      Revert #2294
      Remove opacity from trace_patch
      Fix #2316

Tomás Caram (1):
      Fix typo

Wenjie Zheng (2):
      Fix a typo: remove duplicate word "the" (#2031)
      Add some comments about the configuration of the legend (#2032)

William C Grisaitis (1):
      Fix markdown syntax, typo in docs

Winston Sebastian Pais (2):
      Update static-image-export.md
      fixed typo

Xing Han (2):
      Update based on Emma's suggestions
      Add a header

YoongHM (2):
      Update _doc.py
      Update _chart_types.py

Zack Cornelius (1):
      Add server_url to plotly.io.orca to allow for external orca server (#1850)

adehad (7):
      feature/include_plotlyjs uses bundles js version, new cdn-latest option
      fix other tests that are broken by new 'cdn' option behaviour
      make cdn url generator not test exclusive
      add new `include_plotlyjs='cdn'`behaviour to changelog
      fix tests after poor refactor
      format after using right black version
      format changelog entry better

afonit (1):
      volume was spelled volum

alexcjohnson (1):
      Update plotly-express.md

ashwin-nayak (1):
      Minor correction

dangercrow (1):
      Minor typo (#2288)

danieleldjarn (1):
      Fix wrong slicing in performance improvement example

dependabot[bot] (14):
      Bump lodash in /packages/javascript/jupyterlab-plotly (#1880)
      Bump lodash from 4.17.5 to 4.17.13 in /packages/javascript/plotlywidget (#1878)
      Bump ecstatic (#1879)
      Bump y18n from 3.2.1 to 3.2.2 in /packages/javascript/plotlywidget (#3128)
      Bump elliptic from 6.5.3 to 6.5.4 in /packages/javascript/plotlywidget (#3106)
      Bump node-fetch from 2.6.0 to 2.6.1 in /packages/javascript/plotlywidget (#2767)
      Bump browserslist in /packages/javascript/jupyterlab-plotly
      Bump ws from 7.3.1 to 7.4.6 in /packages/javascript/jupyterlab-plotly
      Bump hosted-git-info in /packages/javascript/jupyterlab-plotly
      Bump normalize-url in /packages/javascript/jupyterlab-plotly
      Bump tar from 6.1.0 to 6.1.7 in /packages/javascript/jupyterlab-plotly
      Bump path-parse in /packages/javascript/jupyterlab-plotly
      Bump tar from 6.1.7 to 6.1.11 in /packages/javascript/jupyterlab-plotly
      Bump ansi-regex in /packages/javascript/jupyterlab-plotly

fairlix (2):
      adding example for multiple disconnected lines
      Added omitted code, changed wording

jmsmdy (1):
      Replaced 'retrying' dependency with 'tenacity' in plotly package (#2911)

joelostblom (33):
      Reformat docstring
      Change to setext headers
      Indent param desc to improve readability
      Remove multiple spaces created by line continuation
      Change type abbreviation for consistency with make_subplots.py
      Change type abbreviation for consistency with most other plotly docstrings
      Reformat according to black and add a few missing commas
      Reformat colref variables to support Python2.7
      Remove superfluous parentheses
      Let black autoformat list items and long strings
      Change textwrapper approach for Python2.7 compatibility
      Change `dimensions` parameter description
      Add colorbar options for coloraxis
      Regenerate json templates with coloraxis.colorbar option
      Add mpl template function
      Add mpl package data
      Add mpl to templates file
      Darken grid colors
      Set annotation properties
      Ligthen table fill colors
      Add transparency to scatter markers
      Add changes to json
      Rename template to simple_white
      Add transparency to scatter matrix markers
      Regenerate json template
      Remove marker transparency
      Reduce histogram linewidth
      Regenerate json template
      Update grid and line colors for 3d and ternary plots
      Hide ticks and axis line for the marginal value axes
      Blacken
      Format one-line chart descriptions to linewidth 75
      Format docstrings to linewidth 75

ketigid (1):
      Fixes minor typos in compatibility.md (#1848)

khuynh (2):
      Fix broken link to ecdf plots in plotly-express docs
      Fix other broken ecdf link

mahdis-z (14):
      connectgaps
      bingroup
      multiple tooltips
      filled area
      minor modification
      closed shape
      fixing the bug of update_ methods
      tests added
      amend added properties and install black to fix ci
      fix ci
      modified tests
      fix ci one more time
      fix black issue
      patch=None in codegen/figure.py

meffmadd (2):
      Fix FigureWidget selection behaviour of histograms (#2711)
      Fix selection of histograms with multiple traces (#2771)

olayway (4):
      dash bio test
      created DashBio posts for graphing-library-docs
      rebasing from correct branch
      corrected jupyter-dash package name in requirements.txt

plotly (1):
      coloraxis added

ry-v1 (31):
      added px link
      add px link
      add px link
      add px link
      add px link
      add px link
      add px link
      add px link
      add px and python ref link
      add px link
      add px link
      add px link
      add px link
      add px link
      add px link
      add px link
      add px link
      add px link
      add px link
      add px line
      add px line
      add px line
      add px link
      add px link
      add px line
      add px line
      add px link
      add px link
      add px link
      add px link
      add px link

santiher (1):
      Update sankey-diagram.md: fix reference link

seb-hub (1):
      Update subplots.py

smallstepman (15):
      docs:bio: drop documentation for volcanoplot
      docs:bio: add `no_display=true` to circos iframe example
      Update requirements.txt
      Update bio-alignment-chart.md
      Apply suggestions from code review
      fix:change page name: Volcano plot -> Manhattan Plot
      Volcano Plot page name title-cased
      add intro paragraph to Volcano Plot page
      add intro paragraph to Manhattan Plot page
      add intro paragraph to bio-circos.md
      add intro paragraph to bio-aligment-chart.md
      Update bio-manhattanplot.md
      rename circos.md to clustergram.md, drop all cicros examples
      replace `import dash_bio as dash_bio` with `import dash_bio`
      fix: aligment chart - convert df values to float in order to correctly render bar chart

supRy (1):
      Fixed code block in "Displaying Figures Using Dash"

surchs (1):
      add some additional jupyter instructions

xhlu (8):
      ML Docs: Remove 2 sections
      ML Docs, Regression: fix import, update titles, colors
      ML Docs: Update all kNN sections based on discussions
      ML Docs: Update Regression notebook
      ML Docs: Updated PCA notebook
      ML Docs: Update knn and regression based on Emma's reviews
      ML Docs: Update header description
      ML Docs: Add t-SNE/UMAP notebook (read todo)

xhlulu (34):
      Add sklearn to docs requirements
      Create kNN docs draft
      Placeholder Regression Section
      Create 2 basic sections, 2 advanced sections
      KNN ML docs: Update thumbnail, name, permalink, description, display_as
      Added 3 sections, drafted out 2 sections
      ML Docs: Added 3 new sections to regression notebook
      ML Docs: Updated last ML regression section for clarity
      ML Docs: Added annotations after each section of regression notebook
      ML Docs: updated ml regression header
      ML Docs: Added new section to regression, updated references
      ML Docs: Added coefficient MLR example
      ML Docs: Start pca notebook
      ML Docs: Start ROC/PR section
      ML Docs: More explanations for the KNN section
      Rename Tsne tutorial
      Update kNN page
      ML Docs: Update PCA page
      ML Docs: Update regression page
      ML Docs: Update ROC/PR Page
      ML Docs: Update T-sne and UMAP section
      Add umap to requirements
      Fix error in "Multiclass ROC Curve", change markdown version
      Fix error in "Multiclass ROC Curve", change markdown version
      Add Dash Snippet to discrete-color
      Update message in discrete-colors
      Add 4 new snippets
      Five new apps
      Add Dash snippets to five pages
      Add 5 more apps
      5 new dash apps
      Add 5 new apps
      Add 6 new apps
      Added 11 new Dash Snippets

yibo (1):
      Update waterfall-charts.md

zouhair (1):
      adding repo and branch options to updateplotlyjsdev

Đoàn Trần Công Danh (1):
      python: fix python 3.8 Syntax Warning

“mahdis-z” (5):
      shapes on subplots
      minor revision
      more explanation
      fix ci failure
      removed go.layout. in docs
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
None yet
Projects
None yet
Development

No branches or pull requests

7 participants