-
-
Notifications
You must be signed in to change notification settings - Fork 2.6k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merge doc prod updates into master #4522
Conversation
np.float has been removed, using float instead
Merge `master` to `doc-prod`
Fix broken markdown link in figure-labels.md
Update dendrogram.md
Fix `suplot` typo in doc
Update map tiles in docs
Jinja2 is a standard, safe, and powerful way to insert content into HTML in Python. I add an example to the documentation
Co-authored-by: Liam Connors <connorsl@tcd.ie>
adding a jinja2 example to the interactive HTML export
Fix rendering issues on page
Update config.yml
Add example of Annotations with Log Axes
Add clarification on colors with open markers
In the python code that sets the variable "limits", the range numbers are resulting in missed values. This is because the first number in the list pair is inclusive while the second number is exclusive. For example, the limit pair of (0,2) only iterates through two loops (0 & 1) instead of three. The net result is that the map doesn't include the "2" city (Chicago).
Update bubble-maps.md
@@ -92,7 +92,7 @@ from scipy.spatial.distance import pdist, squareform | |||
# get data | |||
data = np.genfromtxt("http://files.figshare.com/2133304/ExpRawData_E_TABM_84_A_AFFY_44.tab", | |||
names=True,usecols=tuple(range(1,30)),dtype=float, delimiter="\t") | |||
data_array = data.view((np.float, len(data.dtype.names))) | |||
data_array = data.view((float, len(data.dtype.names))) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Do we need this change?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yes, np.float
has been removed in recent versions of Pandas
Here's the original PR that add that to the docs https://github.com/plotly/plotly.py/pull/4364/files
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thank you!
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Nicely done.
💃
This merges recent updates to the docs back to master