python (65.1k questions)
javascript (44.2k questions)
reactjs (22.7k questions)
java (20.8k questions)
c# (17.4k questions)
html (16.3k questions)
r (13.7k questions)
android (12.9k questions)
Managing large number of data in holoviews/hvplot curve and scatter plots
Let's say I have a large DataFrame with lots of rows and I want to do a simple line plot of the data using hvplot/holoviews.
Example:
pd.DataFrame([i for i in range(1000000)]).hvplot()
On my machine ...
gioarma
Votes: 0
Answers: 1
How to add an errorbar to jittered scatter plot in holoviews/hvplot
I have a DataFrame like this:
biases = ['+5V']*3 + ['-5V']*8
df = pd.DataFrame({'Bias': biases,
'Ea': [1.059, 0.287, 0.451, 0.533, 0.587, 0.466, 0.805, 0.499, 0.473, 0.721, 0.461],...
gioarma
Votes: 0
Answers: 0
Subset of colormap in holoviews/hvplot
I have a DataFrame and I want to plot it in a scatter plot with different scatter colors depending on the sample name. I do it for example with:
df.hvplot.scatter(x='x', y='y', color='Sample name', cm...
gioarma
Votes: 0
Answers: 1
Holoviews plot with horizontal scrollbar?
I would like to realize a holoviews plot with a scrollbar for the time/x axis.
In detail, I want to plot a long ecg signal (20 minutes) and be able to display a frame of e.g. 10 seconds with the possi...
25334
Votes: 0
Answers: 1