Ask Your Question
1

List Density Plot?

asked 2015-03-10 00:36:55 +0200

Geremia gravatar image

updated 2015-03-10 02:07:12 +0200

How can I make a 2-D density plot of a list of values in Sage?

I'd like to make something like this: Density map (image source)

edit retag flag offensive close merge delete

3 Answers

Sort by » oldest newest most voted
1

answered 2015-03-10 23:43:13 +0200

Eugene gravatar image

Consider this example borrowed from matplotlib gallery (note the change in the last row, it is needed for use within sage's notebook):

import matplotlib.pyplot as plt
from matplotlib.colors import BoundaryNorm
from matplotlib.ticker import MaxNLocator
import numpy as np


# make these smaller to increase the resolution
dx, dy = 0.01, 0.01

# generate 2 2d grids for the x & y bounds
y, x = np.mgrid[slice(1, 5 + dy, dy),
                slice(1, 5 + dx, dx)]

z = np.sin(x) ** 10 + np.cos(10 + y * x) * np.cos(x)

# x and y are bounds, so z should be the value *inside* those bounds.
# Therefore, remove the last value from the z array.
z = z[:-1, :-1]
levels = MaxNLocator(nbins=15).tick_values(z.min(), z.max())


# pick the desired colormap, sensible levels, and define a normalization
# instance which takes data values and translates those into levels.
cmap = plt.get_cmap('PiYG')
norm = BoundaryNorm(levels, ncolors=cmap.N, clip=True)

plt.subplot(2, 1, 1)
im = plt.pcolormesh(x, y, z, cmap=cmap, norm=norm)
plt.colorbar()
# set the limits of the plot to the limits of the data
plt.axis([x.min(), x.max(), y.min(), y.max()])
plt.title('pcolormesh with levels')



plt.subplot(2, 1, 2)
# contours are *point* based plots, so convert our bound into point
# centers
plt.contourf(x[:-1, :-1] + dx / 2.,
             y[:-1, :-1] + dy / 2., z, levels=levels,
             cmap=cmap)
plt.colorbar()
plt.title('contourf with levels')

plt.savefig('test.png')
edit flag offensive delete link more

Comments

Actually, I want to do this for discrete values, not functions, so a need to use histogram2d, as here.

Geremia gravatar imageGeremia ( 2015-03-13 20:33:09 +0200 )edit

Actually, hist2d is what I was looking for.

Geremia gravatar imageGeremia ( 2015-03-14 02:05:00 +0200 )edit
1

answered 2015-03-10 00:52:57 +0200

tmonteil gravatar image

updated 2015-03-10 00:55:20 +0200

You can plot various points on a picture by adding together point plots:

sage: point((1,2)) + point((3,4))

You can also do:

sage: points([(1,2), (3,4)])

You can also have a look at:

sage: bar_chart?

Now, if you have a list of values, you can make boxes (representing intervals), and count how many points fall within each box, and then draw the result. Please do not hesitate to ask for more details if you are locked somewhere.

edit flag offensive delete link more

Comments

I would like to color-code each point based upon a z-value.

Geremia gravatar imageGeremia ( 2015-03-10 01:17:29 +0200 )edit

I just discovered the hue() function! That's exactly what I need! (I suppose I don't want to do a density plot as much a 3-D plot on a 2-D surface, where the third dimension is the color of the point.)

Geremia gravatar imageGeremia ( 2015-03-10 01:19:33 +0200 )edit

I'm dealing with over 300,000 points, and

p = Graphics()

for n in range(len(mylist)):
    
    p += point((mylist[n][0], mylist[n][1]),color=hue(n/len(mylist)))

is somewhat slow…

Any tips to speed this up?

thanks

Geremia gravatar imageGeremia ( 2015-03-10 01:42:05 +0200 )edit

You might be able to use a mapcommand. Or you might want to try using Cython. See: http://combinat.sagemath.org/doc/them...

calc314 gravatar imagecalc314 ( 2015-03-10 13:54:39 +0200 )edit
1

answered 2015-03-14 02:10:57 +0200

Geremia gravatar image

updated 2015-03-14 02:15:37 +0200

They key is to use hist2d:

import matplotlib as mpl
import matplotlib.pyplot as plt

px,py = x,y

nx = ny = 100 #number of bins in x,y directions
x_bins = np.linspace(px.min(), px.max(), nx+1)
y_bins = np.linspace(py.min(), py.max(), ny+1)

plt.xlabel('Nonce');
plt.ylabel('Hash ($\log_{10}$)');
plt.title(r'2-D Histogram of First '+str(len(x))+' Valid Nonces and Hashes');

plt.hist2d(px, py, [x_bins,y_bins], norm=mpl.colors.LogNorm());

plt.savefig('Density Plot (log colorscale).png')
plt.close();

This produces a nice plot: hist2d plot

edit flag offensive delete link more

Your Answer

Please start posting anonymously - your entry will be published after you log in or create a new account.

Add Answer

Question Tools

1 follower

Stats

Asked: 2015-03-10 00:36:55 +0200

Seen: 1,155 times

Last updated: Mar 14 '15