3,691 questions
0
votes
1
answer
44
views
Excel XY scatter chart glitch
Sometimes Excel refuses point blank to create XY scatter plots properly. Defaulting to a silly format plotting rows as lines with legends "series 1", "series 2" & "series ...
1
vote
1
answer
40
views
Create a legend taking into account both the size and color of a scatter plot
I am plotting a dataset using a scatter plot in Python, and I am encoding the data both in color and size. I'd like for the legend to represent this.
I am aware of .legend_elements(prop='sizes') but I ...
0
votes
0
answers
30
views
Translation from linker to scatter script - define global symbols
I have to translate a ld script to ARM Scatter syntax in order to use an ARM FuSa Compiler.
How are the commented parts from ld translated into scatter syntax?
ld:
.foo_data
{
. = ALIGN(4); ...
0
votes
1
answer
30
views
Spatial clustering with two separate datasets
I'm hoping to get some advice on approaching a clustering problem. I have two separate spatial datasets, being real data and modelled data. The real data contains a binary output (0,1), which is ...
0
votes
0
answers
41
views
How do I clearly combine a 3D scatter plot and a surface plot together?
I think my problem is fairly simple. I've managed to find a way to plot my 3D surface against a set of discrete data points, but the issue now is that it is not clear to see whether the points lie ...
0
votes
1
answer
31
views
Struggling with plt.scatter()
I'm trying to do a logistic map using the code below, but I'm struggling with making a scatter plot because I keep getting this error: "scatter() missing 1 required positional argument: 'y'"....
0
votes
0
answers
28
views
Overlay a raster image with the component scattermap (plotly) in streamlit
Type With a streamlit application, I try to add a georeferenced raster image in the scattermap graph. a fixed image appears on the top left of the map, the image seems not well georeferenced, and does ...
0
votes
0
answers
25
views
Facing problems with scatter mapbox and time frames within plotly express
just starting to program in Python,
and faced the following problems when trying to plot three points moving in a map, as the time progresses.
Not sure if this is a bug from plotly or it is just me.......
-1
votes
1
answer
19
views
Text and annotations removal with Legend
I did a scatter plot with legends , text and annotations . But when i click on the legend text and annotations associated with the bubble remains. Please check the below code.
const getAnnotations ...
2
votes
2
answers
61
views
How to scale points in scatterplot by area
How can I scale the points in a Stata scatterplot by another variable? (I would like to get the area of each point, so I would like to scale by the area, or the square root of the variable, but this ...
0
votes
0
answers
11
views
Scatter express looks odd when trying to add lines to bin edges in histogram marginals
I am trying to show a scatter plot in plotly express (to my understanding PX is the way to go since I can tweak the traces for formatting efficiently)
This is what I got from searching online
import ...
0
votes
3
answers
79
views
How to change both the shape and colour of an individual scatter point in Python Matplotlib?
I am currently trying to import some data in a table into python to create a plot of one variable against another. I also want to group each of the data point by two of the other variable in the same ...
0
votes
0
answers
33
views
Creating scatterplot in R but want the X and Y from same column
I have trade data as shown. The countries and trade direction are not in separate fields, otherwise I think that might be easier. I would like the X axis to be one trade partner and the Y axis to be ...
0
votes
0
answers
41
views
How to plot Timedelta error bars in Plotly
I am trying to use plotly with streamlit.
I want to add error bars to my data.
The y axis is a date, and I have start and end date, therefore, I compute the timedelta.
Then, I use total_seconds and ...
2
votes
1
answer
31
views
How to unjoin of different plots when plotting multiple scatter/line plots on one figure?
I am plotting multiple line and scatter graphs on a single figure and axis. My code sets one variable called total_steel_area and then goes through a set of values of another variable called phi_x__h. ...