Questions tagged [scatter-plot]

A scatter plot is a type of data visualization that reveals possible correlations between two variables. Data points are plotted on a two-dimensional plane using Cartesian coordinates. Use this tag if you have a programming question related to scatter plots, such as problems with computing or displaying the data. You should also tag which language or software libraries you are using.

A scatter plot is a type of mathematical diagram that reveals possible correlations between two variables. Data points are plotted on a two-dimensional plane using Cartesian coordinates. Series of points may be colorized to display additional data.

Link:

3562 questions
6
votes
1 answer

How to resize matplotlib scatter plot

I'm unable to resize the graph in my matplotlib scatter plot. I have included plt.figure(figsize=(20,20)) but it doesn't affect the size. Here is the current plot…
sanjeet kishore
  • 71
  • 1
  • 1
  • 3
6
votes
1 answer

How to add a scatter plot to a filled contour?

I have a data set formed by a 9 points observed in a combination of 2 variables with 3 values each, i.e. x <- c(0,10,100) y <- c(0,25,30) z <- matrix(c(1,2,3,4,5,6,7,8,9), nrow = 3, ncol = 3, byrow = TRUE) With this data I created a contour…
Daniel Valencia C.
  • 2,159
  • 2
  • 19
  • 38
6
votes
1 answer

Avoid overlapping geom_point and geom_text in ggplot2

How can I avoid that these 2 layers in ggplot2 overlap? I try to display the text so that they are not laying above the points. check_overlap does a great job with avoiding that the text overlaps itself, but not with other layers. I also tried the…
Max
  • 61
  • 1
  • 2
6
votes
4 answers

time scatter plot w/ chart.js

I'm trying to render a scatter plot in chart.js of (x,y) data where x is a date string. I've seen many examples and tutorials online where the instructor uses a function to generate the time stamp for an example chart, but I haven't found any…
user2711286
  • 141
  • 1
  • 6
6
votes
2 answers

Draw a line on Google Charts ScatterChart

I have a ScatterChart where I need to draw a diagonal line (of the function y=x) that serves as a visual aid. Is it possible ? if so, how can I do it?
David Rabinowitz
  • 29,904
  • 14
  • 93
  • 125
6
votes
3 answers

How do you run Google Charts locally?

I am looking at using Google Charts to have scatter plot. All of the examples have external dependency, and I would like to avoid that as this is an intranet application that doesn't have external Internet access.