Right now my graphing function looks this.
def makeGraph(data, name, title, xlab):
g = Gnuplot.Gnuplot(persist=1)
g.title(title)
g('set terminal png truecolor')
g('set output "'+name+'"')
g('set ylabel "# of Reservations"')
g('set xlabel "'+xlab+'"')
g('set style data histograms')
g('set style fill solid 1.0 border -1')
g.plot(data)
As you can see in the photo, everything is working as expected. Now, I would like to change the markings on the x axis (0-6) to Sun-Sat. I have been searching around, but have yet to successfully get it to work.
