Skip to content

Commit c091a8a

Browse files
committed
DOC: fix flow issue, add dataframe constructor before example. close #2061
1 parent 396c3ab commit c091a8a

File tree

1 file changed

+0
-4
lines changed

1 file changed

+0
-4
lines changed

doc/source/basics.rst

-4
Original file line numberDiff line numberDiff line change
@@ -110,15 +110,11 @@ Series input is of primary interest. Using these functions, you can use to
110110
either match on the *index* or *columns* via the **axis** keyword:
111111

112112
.. ipython:: python
113-
:suppress:
114113
115114
d = {'one' : Series(randn(3), index=['a', 'b', 'c']),
116115
'two' : Series(randn(4), index=['a', 'b', 'c', 'd']),
117116
'three' : Series(randn(3), index=['b', 'c', 'd'])}
118117
df = DataFrame(d)
119-
120-
.. ipython:: python
121-
122118
df
123119
row = df.ix[1]
124120
column = df['two']

0 commit comments

Comments
 (0)