Questions tagged [scatter]

A scatter plot is a type of mathematical diagram using Cartesian coordinates to display values for two variables for a set of data.

A scatter plot is a type of mathematical diagram using Cartesian coordinates to display values for two variables for a set of data.

943 questions
3
votes
0 answers

X,Y Scatter Plot with Animation

I'm looking for a way to graph multiple point within an (X,Y) plane, and have them appear (then disappear) one at a time. I have a total of about 400 (x,y) points, which are position tracking information gathered from a Inertial Measurement…
Rob Coke
  • 31
  • 2
3
votes
1 answer

MPI partition array into blocks and Send

I am trying to find a maximum element of an array using MPI in C language. I have to compare the time it takes to send and calculation of the maximum using vs MPI_Scatter functions. MPI_Send: Here' the code for the MPI_Scatter function it works…
franvergara66
  • 10,524
  • 20
  • 59
  • 101
3
votes
0 answers

GNU linker script - split code in two memory regions

I am trying to create a liker script that splits the code into two memory regions for the code and a separate for the BSS. The two code sections are to linked together but to be loaded separatly What ever I try, the code always mixeup. I tried…
user1875037
  • 137
  • 2
  • 4
3
votes
2 answers

Using dynamic named range in VBA for scatter chart labeling

I'm trying to make a macro that will change the data labels on a scatter chart to the title of each point. Eg: (source: wiseowl.co.uk) In this case I would like the data labels to show the movie title. The code I used comes from this website, but…
3
votes
1 answer

Changing the contents of Highcharts legend

When using Highcharts, is it possible to change the contents of the legend to display something other than the series? For example, I have a scatter chart with just one series but with many elements, so that the element labels obstruct one another…
sangil
  • 1,310
  • 2
  • 18
  • 25
3
votes
2 answers

How to show color gradient on scatter plot in matlab?

I have a scatter plot that will overlay several sets of data. Each set of data currently displays as the next color in the default colormap. This is my code right now: figure hold on for i=1:10 scatter(RunRawArea(i,:),…
CodeFusionMobile
  • 14,812
  • 25
  • 102
  • 140
3
votes
2 answers

Plot multiple y-axis AND colorbar in matplotlib

I am trying to produce a scatter plot that has two different y-axes and also a colorbar. Here is the pseudo-code used: #!/usr/bin/python import matplotlib.pyplot as plt from matplotlib import cm fig = plt.figure() ax1 =…
Manila Thrilla
  • 547
  • 1
  • 8
  • 17
2
votes
1 answer

MATLAB: Scatterplot - points with different shapes according to position

The properties of my figure I want to build are the following: The figure shows 200 points. The points above the diagonal should be shown with red stars and the one below the diagonal, with blue triangles. This is what I've managed to do so far…
Alex Encore
  • 299
  • 1
  • 13
  • 26
2
votes
2 answers

How to efficiently do scattered summing with SSE/x86

I've been tasked with writing a program that does streaming sums of vectors into scattered memory locations, at the absolute max speed possible. The input data is a destination ID and an XYZ float vectors, so something like: [198, {0.4,0,1}], [775,…
mistermost
  • 21
  • 1
2
votes
1 answer

sorting dotplot factor axis in ggplot

I have a data.frame with gene expression data and I want to create a graph in ggplot2. here's an example for my data frame: Gene.Name cell.type expression ABC heart 12 AZF heart 13 ABC kidney …
AhmetZ
  • 137
  • 1
  • 3
  • 9
2
votes
0 answers

weird pairplot distribution after kmeans clustering

I made K-means clustering to a large dataset with 32000 features, Ps : I cant delete outliers because I want to detect them and make a cluster that contains anomalies in my data ... --> My Question is : Is it normal for the ditribution to be like…
2
votes
1 answer

What is the performance limitation of a javafx scatter plot?

Can anyone tell me how many points a JavaFX scatter chart can display? The charts can be seen here. The charts look great, but just wondering about performance. Someone correct me if I'm wrong, but isn't JavaFX based on a scene graph? Does the…
max
  • 2,346
  • 4
  • 26
  • 34
2
votes
0 answers

"Point Select" mode in plotly interactive figure

I am trying to adapt this plotly script example, allowing to populate a table using a plotly mouse selection event. I am running this piece of code in a Jupyter notebook. As pointed in this SO post: ...in order to trigger your own on_selection…
Sheldon
  • 4,084
  • 3
  • 20
  • 41
2
votes
1 answer

Pyplot scatter name not defined

I have scraped data from a webpage and now I want to visualise that data. When I'm trying to scatter I get the error "NameError: name 'x' is not defined" at the plt.scatter(data[x],data[y]). I've tried to look over the codes and data I'm scraping…
2
votes
1 answer

Plot density field depending on x, y, z coordinates with python

I have extracted nodal fields from my geodynamic simulation, but I'm stuck on visualizing it. Here I take rock density rho [kg/m3] as an example. The data are represented on the nodal points of a 3D rectangular grid, with a resolution of 10 * 3 * 10…