Top "Scatter-plot" questions

A scatter plot is a type of data visualization that reveals possible correlations between two variables.

Setting different color for each series in scatter plot on matplotlib

Suppose I have three data sets: X = [1,2,3,4] Y1 = [4,8,12,16] Y2 = [1,4,9,16] I can scatter plot this: from matplotlib import pyplot as plt …

python matplotlib scatter-plot
Matplotlib scatter plot with different text at each data point

I am trying to make a scatter plot and annotate data points with different numbers from a list. So, for …

python matplotlib text scatter-plot annotate
Control the size of points in an R scatterplot?

In R, the plot() function takes a pch argument that controls the appearance of the points in the plot. I'm …

r plot scatter-plot
How to do a scatter plot with empty circles in Python?

In Python, with Matplotlib, how can a scatter plot with empty circles be plotted? The goal is to draw empty …

python matplotlib geometry scatter-plot scatter
Matplotlib scatter plot legend

I created a 4D scatter plot graph to represent different temperatures in a specific area. When I create the legend, …

python matplotlib legend scatter-plot
How to overplot a line on a scatter plot in python?

I have two vectors of data and I've put them into pyplot.scatter(). Now I'd like to over plot a …

python numpy matplotlib linear-regression scatter-plot
How can I label points in this scatterplot?

Can you help me on putting labels on the following graph? The code i use is: valbanks<-scan("banks.…

r label point scatter-plot
How to make a 3D scatter plot in Python?

I am currently have a nx3 matrix array. I want plot the three columns as three axis's. How can I …

python 3d matplotlib plot scatter-plot
scatter plot in matplotlib

This is my first matplotlib program, so sorry for my ignorance. I've two arrays of string. say, A = ['test1',…

python matplotlib scatter-plot
How to change the font size and color of x-axis and y-axis label in a scatterplot with plot function in R?

I used the following code to draw a scatterplot. How to increase the font size and change colour of x-axis …

r scatter-plot