About 77,300 results
Open links in new tab
  1. python - How to make a 3D scatter plot - Stack Overflow

    Apr 26, 2023 · I am currently have a nx3 matrix array. I want plot the three columns as three axis's. How can I do that? I have googled and people suggested using Matlab, but I am really …

  2. python - Make 3D plot interactive in Jupyter Notebook - Stack …

    plotly's px.scatter_3d is the simplest solution I found for 3d plot animation after trying hard with matplotlib with no luck - you can find a good example in this post: Why does the size of my 3D …

  3. charts - Any easy way to plot a 3d scatter in Python that I can …

    Nov 25, 2014 · Currently I'm using matplotlib to plot a 3d scatter and while it gets the job done, I can't seem to find a way to rotate it to see my data better. Here's an example: import pylab as …

  4. python - pylab 3d scatter plots with 2d projections of plotted data ...

    I am trying to create a simple 3D scatter plot but I want to also show a 2D projection of this data on the same figure. This would allow to show a correlation between two of those 3 variables …

  5. python - Updating a pyplot 3d scatter plot in a loop, grid lines ...

    Feb 6, 2014 · I am updating a 3d scatter plot with every iteration of a loop. When the plot is redrawn, the gridlines "go through" or "cover" the points, which makes my data more difficult to …

  6. python - plot 3d scatter plot from a dataframe and color by group ...

    Sep 6, 2019 · I am doing a PCA, and have 10 components. I would like to plot the first 3 components and color according to their group type. from mpl_toolkits.mplot3d import Axes3D …

  7. python - Jupyter | How to rotate 3D graph - Stack Overflow

    Nov 15, 2017 · from mpl_toolkits.mplot3d import axes3d import matplotlib.pyplot as plt %matplotlib notebook fig = plt.figure() ax = fig.add_subplot(111, projection='3d') # load some …

  8. python - How to create 3D scatter animations - Stack Overflow

    The scatter plot in 3D is a mpl_toolkits.mplot3d.art3d.Path3DCollection object. This provides an attribute _offsets3d which hosts a tuple (x,y,z) and can be used to update the scatter points' …

  9. python - 3D scatterplots with hue colormap and legend - Stack …

    From the Matplotlib documentation, you can generate a legend from a scatter plot with getting the handles and labels of the output of the scatter function. The result of the code is shown in the …

  10. 3D Scatterplot with strings in Python - Stack Overflow

    Jan 9, 2019 · I tried to do a 3D scatter plot in Python with string categories (i.e. activation functions and solvers for a neural network) on x and y and floating numbers (i.e. accuracy …