Tagged Questions

3
votes
1answer
898 views

Matplotlib 3D Scatter Plot with Colorbar

Borrowing from the example on the Matplotlib documentation page and slightly modifying the code, import numpy as np from mpl_toolkits.mplot3d import Axes3D import matplotlib.pyplot as plt def ...
3
votes
2answers
964 views

Any easy way to plot a 3d scatter in Python that I can rotate around?

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 p import ...
3
votes
4answers
1k views

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 circles around some of the colored disks already plotted by scatter(), so as to highlight ...
3
votes
2answers
4k views

Fixing color in scatter plots in matplotlib

I want to fix the color range on multiple scatter plots and add in a colorbar to each plot (which will be the same in each figure). Essentially, I'm fixing all aspects of the axes and colorspace etc. ...
3
votes
6answers
1k views

Are there any graph/plotting/anything-like-that libraries for Python 3.0?

As per the title. I am trying to create a simple scater plot, but haven't found any Python 3.0 libraries that can do it. Note, this isn't for a website, so the web ones are a bit useless.
2
votes
2answers
511 views

PyQt4 Scatterplot with Clickable and Selectable Points

I'm trying to create a scatterplot with about 1000 data points in a way so that each data point can be selected by clicking on them using a mouse, which will result in bringing up a context menu which ...
1
vote
2answers
83 views

Scatter plot of 10k record extracted from database

I am trying to make a scatter plot in Python. I supposed it will be fairly simple but got stuck with understanding in scatterplot (x and y value) while plotting. ==My mission == I have database and ...
1
vote
2answers
88 views

matplotlib 3D scatter plot colors of dots very light

I used the command below to create a 3D scatter plot: from mpl_toolkits.mplot3d import Axes3D import matplotlib.pyplot as plt sizeseq = 2 colorseq = "k" fig = plt.figure(1, (5,5), dpi=300) ax = ...
1
vote
2answers
171 views

scatterplot instead of a lineplot while using the plotfile function of matplotlib

I know the general usage of plotfile: import matplotlib.pyplot as plt plt.plotfile(csvfile,sometuple) But this produces a line plot by default. I want a scatterplot. Is there some special argument ...