All Questions
16 questions
1
vote
0
answers
38
views
Trying to mix graph types in Chart.js not working
I'm trying draw points in top of a Line Graph using Chart.js v2, but the points are always drawn on the left of the plot, no matter the value I specify:
Example
I've tried different ways to achieve ...
2
votes
0
answers
838
views
Chartjs fixed range on X axis and custom labels
I'm trying to create a scatter plot with Chartjs.
I want to have few datasets centered around one X value, and three Y values.
When I can't set the custom X labels for my dataset, and also can't set ...
0
votes
1
answer
2k
views
React Native Scatter Plot with Tags
I've found a couple of packages that provide some scatter plots for React Native like react-native-scatter-chart, react-native-chart-kit, react-native-chartjs however I want to know If there is ...
0
votes
1
answer
228
views
Creating a scatter plot in plotly without declaring multiple variables for the data
The following records are a small sample of the dataset I'd like to plot using the scatter plot of the plotly library.
id value condition
1 0.00167736464652281 CM
1 0.00409236292494868 ECM
1 ...
0
votes
1
answer
276
views
D3 scatter plot coming out wrong
So I'm doing this assignment which asks me to plot the time of the best boston-marathon runners from 1897-2017. The data which has to be plotted is the year on the x-axis and the time in minutes on ...
0
votes
1
answer
665
views
Updating d3 scatterplot, new data points are not in the correct positions
Spent hours on this and still not really sure whats going wrong.
My plot is supposed to update based on a bunch of parameters the user selects. When the plot needs to add new data points the new ...
2
votes
0
answers
757
views
Maximum call stack size exceeded in plotly 3d scatter plot
I am implementing a 3d scatterplot using plotly.js
and the task I am currently working on - change the color of the dot when you hover (or click - does not matter) on it. I have found the example that ...
1
vote
1
answer
253
views
Fixed center with dynamic axis scaling
EDIT:
I have edited my code. Now you can directly run the code inside stackoverflow.
Last day, I started with D3 and having some problems in fixing the dynamic axis. I am new to D3 :)
I am trying to ...
1
vote
0
answers
487
views
NVD3 javascript: apply color gradient in scatter plot for each group
I'm trying to customize the nvd3 scatter plot chart provided [here][1]:
The example has 4 distinct colors for 4 groups. I have a continuous measure named proportion for each observation (between 0 ...
-1
votes
2
answers
27
views
Which chart (tool) I can use for drawing "cloud points" scatter with strength ties between them all?
I have big dataset with 200 items. For each math correlation value with others. Matrix 200x200.
Something like that:
item item correl
1 1 1
2 1 0.58
3 1 0.95
4 1 -0....
2
votes
1
answer
2k
views
sharing traces in multiple subplots in Plotly.js
I need to plot a data set with the same structure as in the Iris flower data set with Plotly.js. It should look like Mike Bostock's scatterplot matrix. While getting the effect shown in the link is ...
-4
votes
1
answer
523
views
JavaScript library for real-time sliding bubble/scatter graphs [closed]
I'm looking for a library with the following features:
Real-time sliding right-to-left graph
Graph consisting of bubbles of different sizes and colors
The bubbles should have labels that slide with ...
0
votes
1
answer
4k
views
drawing scatter plot with html5 canvas and pure javascript no libraries with logarithmic axes
I posting my question because I couldn't find info anywhere, most tutorials require the use of fancy libraries and I just wan't to draw a html5 canvas scatter plot from two json multidimensional ...
0
votes
1
answer
328
views
select an area of a scatter plot in javascript
I am trying to achieve the following with javascript:
draw a scatter plot with many (~10,000) points
allow the user to draw a curved shape on top of the plot to select a region (I am open to exactly ...
5
votes
2
answers
4k
views
NVD3 javascript: add colors to points in a scatter plot
I am trying to make a scatter plot from some data with x, y, and z values.
My code is the same as the example on the NVD3 website,
http://nvd3.org/ghpages/scatter.html, except I also calculate a z ...