Skip to content

Commit

Permalink
Merge pull request mikedewar#53 from e9t/master
Browse files Browse the repository at this point in the history
Fix error in 'bar' example
  • Loading branch information
mikedewar committed Feb 10, 2013
2 parents 24850b0 + 495aded commit 9efaa8b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions examples/d3py_bar.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,10 +18,10 @@
p += d3py.xAxis(x = "apple_type")
p.show()

# if you are writing in a terminal, use without 'with' to keep everything nice
# if you are writing in a terminal, use without 'with' to keep everything nice
# and interactive
"""
p = d3py.Figure(df)
p = d3py.PandasFigure(df)
p += d3py.Bar(x = "apple_type", y = "count", fill = "MediumAquamarine")
p += d3py.xAxis(x = "apple_type")
p.show()
Expand Down

0 comments on commit 9efaa8b

Please sign in to comment.