I have a data set created by....
import random
count = []
for i in range(1, 4):
for j in range(3, 6):
for k in range(15,19):
count.append((i, j, k, random.random()))
I would like to create 3d graphs of count vs pairs of i, j, and k (so 3 graphs total). I have looked through examples here: http://matplotlib.org/mpl_toolkits/mplot3d/tutorial.html#surface-plots, but they all seem to be creating values on the fly. How do I plot the surface or mesh graphs that I want?