I saw a picture of a chart below and would like to recreate something similar. My code is below, how would I got about creating a multi-layer donut pl ...
I saw a picture of a chart below and would like to recreate something similar. My code is below, how would I got about creating a multi-layer donut pl ...
I am recording the data for 3 counters and have the choice of using either of following schema: Date|Sensor|Value Date|Sensor1Value|Sensor2Value|Sen ...
I am solving Newton ralphson problem in which I am getting complex values of the first derivative, I have to plot the values of the first derivative v ...
How can you plot a list of functions in one graph using a for loop in R? The following code does the trick, but requires a separate call of plot for t ...
I'm trying to do a scatterplot between this 2 variables, but it gives me this error. ValueError: setting an array element with a sequence. The reques ...
I have a simple timeseries with a price over time: [{t:"2023-01-31", price: 100}, ...]. With vega-lite.js I can easily plot this as a line. The sc ...
I am trying to plot a function which is dependent on two variables, x and y in a 3D surface plot in r. I get an error message which says that increasi ...
I am making a 4-panel figure where each column represents a different variable and each row represents a different location. When I add the first two ...
Given the following data: dt = pd.DataFrame.from_dict( { "thing": {0: "A", 1: "B", 2: "C"}, "min": { 0: "2021-11-01 0 ...
I am trying to make a lollipop plot that includes a text 'condition' and a value associated. The issue I am having is that, because there is so much ...
I have a dataframe in python that consists of two columns [Combinations] and [counts], the dataframe is 16369 rows, so there are 16369 combinations. T ...
I have a 2 x 2 figure where the columns represent two different variables and the rows represent two different locations. How can I add the names of t ...
I have my own Pine script strategy that plots some indicators in separate window (not on the main price chart). However, I want to draw a line for the ...
I am trying to make a plotly scatter plot with a OLS trendline and provide a dropdown menu what let's the user pick from a different of X's and Y's. T ...
Ive been working with adjustments and I have coordinates and I need to plot a sphere with wireframe, I need to draw these points and this sphere on th ...
I would like to make a composite graphic which is 3 panels wide by 8 panels tall. Inside each of the panel would be a graphic that takes multiple R co ...
I am brand new to Digital Signal Processing and I am trying to find the peak of an audio file spectrum, I usually open an audio file with Audacity and ...
I am trying to represent data organized as a matrix of vector-valued timeseries. Given a vector timeseries placed at position (i,j) in the matrix, the ...
How would I be able to edit the r code below so that I can use the integers as the stems and tenths as the leaves in the stem-leaf plot. ...
I have a dataframe similar to like this: I want a grouped bar chart where x axis is a year. For example 2018, 2019, 2020, 2021, 2022. In each of th ...