GooPyCharts Demo Notebook

Import GooPyCharts

To cut down on syntax, import figure directly.


In [1]:
from gpcharts import figure

Simple Line Graph

Same graph as described in the readme.


In [2]:
fig1 = figure()
fig1.plot([8,7,6,5,4])


Line Graph with Two Lines

Another line graph, but with two dependent variables. Also customizing plot.


In [3]:
fig2 = figure(title='Two lines',xlabel='Days',ylabel='Count',height=600,width=600)
xVals = ['Mon','Tues','Wed','Thurs','Fri']
yVals = [[5,4],[8,7],[4,8],[10,10],[3,12]]
fig2.plot(xVals,yVals)


DateTime Graph

A graph with dates and times. Title is assigned afterwards, and data is given header information.


In [5]:
fig3 = figure()
fig3.title = 'Weather over Days'
fig3.ylabel = 'Temperature'
#modify size of graph
fig3.height = 800
fig3.width = 1000

X datetime data can take either of the following formats: "yyyy-mm-dd HH:MM:SS" or "yyyy-mm-dd", but be consistent.


In [6]:
#xVals = ['Dates','2016-03-20 00:00:00','2016-03-21 00:00:00','2016-03-25 00:00:00','2016-04-01 00:00:00']
xVals = ['Dates','2016-03-20','2016-03-21','2016-03-25','2016-04-01']
yVals = [['Shakuras','Korhal','Aiur'],[10,30,40],[12,28,41],[15,34,38],[8,33,47]]
fig3.plot(xVals,yVals)


A Log Scale Example

Set "logScale=True" when calling plot (or plot_nb for notebooks) to plot the y axis in log scale.


In [7]:
fig4 = figure(title='Population Growth',ylabel='Population')
xVals = ['Year',1700,1800,1900,2000]
yVals = [['Gotham City', 'Central City'],[0,10],[100,200],[100000,500000],[5000000,10000000]]
fig4.plot(xVals,yVals,logScale=True)


Scatter Plot

Scatter plot arguments are the same as for normal line graph arguments, but use "scatter" (or "scatter_nb" for notebooks) to plot instead. Scatter plots also support trend lines. Set "trendline=True" in the arguments to get a trendline on your graph. Currently only a trendline for the first dependent variable is supported.


In [8]:
fig5 = figure('Strong Correlation')
fig5.scatter([1,2,3,4,5],[[1,5],[2,4],[3,3],[4,2],[5,1]],trendline=True)


Bar Graph

Simple horizontal bar graphs are supported. Use function "bar" (or "bar_nb" for notebooks).


In [9]:
fig6 = figure('Percent Alcohol Consumption')
fig6.bar(['Percentage','Beer','Wine','Liquor'],['Type',40,50,10])


Histogram

Simple histograms are also supported. Histograms take in 1 list of input. Use function "hist" (or "hist_nb" for notebooks).


In [10]:
fig7 = figure('Distribution',xlabel='value')
fig7.hist([1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,3,3,3,3,4,4,5,6,7,8,8,8,8,8,9,9,9,10,11,12,13,13,13,13,14])