Questions tagged [scatterplot3d]

scatterplot3d is an R package for plotting three dimensional (3D) point clouds.

Scatterplot3d is an R package for visualizing multivariate data in a three dimensional space. It includes function scatterplot3d(), which generates a scatter plot in a 3D space using a parallel projection and allows for visualizing higher dimensions of the data with different colors, symbol types or symbol sizes.

Repositories

Vignettes

Related Packages

  • Package
  • Package (Plots three dimensional point clouds.)
24 questions
8
votes
1 answer

How to style/format point markers in Plotly 3D scatterplot?

I am unsure how to customize scatterplot marker styles in Plotly scatterplots. Specifically, I have a column predictions that is 0 or 1 (1 represents an unexpected value) and even though I used the symbol parameter in px.scatter_3d to indicate the…
Jane Sully
  • 3,137
  • 10
  • 48
  • 87
2
votes
0 answers

Changing the angels between the x and y axis in python using matplotlib

I've not been able ot find any information on this any where. I am trying to represent the atomic coordinates of CaCO3 in the R -3 c H space group (see image 1), using matplotlib. However, to achieve this the angle between the X and Y axis must be…
1
vote
1 answer

Plotly js 3D Scatter Chart with colorscale

I am trying a 3D Scatter plot with plotly js. is there any way I can add a color scale to the widget as in the below screenshot When I tried to create I am only able to render 3D chart with some colors. I am not able to achieve a color scale and…
1
vote
1 answer

I am trying to plot a scatter graph onto my 3d continuous graph in python using matplotlib

I have plotted the Lorenz attractor on a 3d graph. I am wanting to see how the size of the growth rates of the bred vectors affect the lorenz attractor, by plotting different coloured points representing different sizes of growth rates onto the…
USer555
  • 81
  • 7
1
vote
0 answers

Add in Plane using Plotly in R

I am new to using plotly, and I am trying to add a set of planes into data at specific points. I have been able to add the planes in scatterplot3d successfully with the following code: my_data <- mtcars # Create Scatter Plot…
1
vote
1 answer

How to plot R linear model lm() using scatterplot3d via $plane3d function

Stackoverflow community, I am looking to plot the results of R's lm() as a plane in a 3d graph made with the scatterplot3d() command from the R package scatterplot3d. I keep getting multiple errors, depending on my method of trying to graph via the…
Purrsia
  • 712
  • 5
  • 18
1
vote
1 answer

How to add label(annotation) to each plotting dot on R scatterplot3d

The data formate "NB" is as follows. > head(NB) time speed traffic density 1 06:00 44.04854 304.6616 108.4641 2 06:10 43.73164 332.3510 111.6164 3 06:20 43.35056 359.2273 114.8773 4 06:30 42.91960 382.6465 118.5487 5 06:40 42.42904 400.3864…
0
votes
0 answers

How to turn on all axes boundaries of a 3D scatterplot?

How can I turn on all axes lines of a 3D scatterplot? More specifically, how can I make a scatterplot like this: Stay like this:
Lucas Oliveira
  • 197
  • 1
  • 7
0
votes
0 answers

Getting an error trying to recreate a scatterplot

I'm trying to use the scatter3D to plot in three dimensions. Create four subplots with the appropriate viewing angles using the view_init() function. So here's my code: import pandas as pd fileName = "MultipleLinearRegression.csv" df =…
Kdoyle73
  • 91
  • 7
0
votes
0 answers

How to implement the x,y,z datapositions on a scatterplot so that it fits to the values

I want to do a 3Dscatterplot out of an xarray dataset. For this I have a variable called vari form the dataset. With plova I want to extract the variable specific for that time I need. And then I want to make a grid that fits to those values. But no…
0
votes
1 answer

Can we use Tabpy to show visualizations generated from Plotly?

I created a 3D scatter plot using Plotly. I want to use tableau to visualize the plot so that it can be updated in realtime as data gets updated? Can we use Tabpy to show visualizations generated from Plotly? As per my knowledge, Tabpy script can…
0
votes
1 answer

Customize ticks and lables using scatterplot3d

My goal is to plot 9 names on my y axis (the letter "a" to "i" by one letter after another). However only every second letter is being plotted using the function scatterplot3d in the program R. Do you know how I could solve this…
paris
  • 3
  • 3
0
votes
1 answer

R scatterplot3d plotting points with incorrect coordinates

The scatterplot3D function seems to be plotting incorrectly and I am unsure about why. For example, the following commands should yield identical plots but they do not. I also providing reproducible code to create the data structures below. I guess…
hariskr
  • 1
  • 1
0
votes
1 answer

Rotate scatterplot3d around X axis

I'm aware of this question where dcarlsen helpfully explains how to rotate a 3dscatterplot around the z-axis in r. However, I would also like to rotate around the x axis. Code: attach(dataset) dateconverted <- as.Date(Date) Status_converted <-…
anonymous2
  • 219
  • 7
  • 21
0
votes
1 answer

D3.js custom ticks on x axis of scatterplot

I have three issues: How can I add ticks on the x axis so that they separate the grouped areas of the scatterplot (grouped columns per year)? How can I place the years as text under the corresponding area of the scatterplot? Is there a more elegant…
Dr.J
  • 25
  • 4
1
2