Replies: 2 comments 6 replies
-
Hi, Yeah that is easily done, that is just row slicing like you would do in numpy or pandas: # This creates a shallow copy (does not use extra memory)
df2 = df[1000:5000]
# Or you can do things directly like
df[1000:5000].viz.heatmap(...)
df[1000:5000].export(...) I hope this helps! |
Beta Was this translation helpful? Give feedback.
6 replies
-
By the way, for the x-axis and y-axis of heatmap, how do we set display range. e.g -100 to +100? Thanks a lot in advance. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hi,
I have a dataset with 10,000 entries or X and Y.
In both cases, we only care about the entry#, not the their values.
Thanks a lot in advance!
Beta Was this translation helpful? Give feedback.
All reactions