Skip to content

Commit b97e007

Browse files
swuechojorisvandenbossche
authored andcommitted
DOC: minor format fix (#14802)
1 parent 5d0e157 commit b97e007

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

doc/source/cookbook.rst

+2-4
Original file line numberDiff line numberDiff line change
@@ -107,10 +107,8 @@ Splitting
107107
df = pd.DataFrame(
108108
{'AAA' : [4,5,6,7], 'BBB' : [10,20,30,40],'CCC' : [100,50,-30,-50]}); df
109109
110-
dflow = df[df.AAA <= 5]
111-
dfhigh = df[df.AAA > 5]
112-
113-
dflow; dfhigh
110+
dflow = df[df.AAA <= 5]; dflow
111+
dfhigh = df[df.AAA > 5]; dfhigh
114112
115113
Building Criteria
116114
*****************

0 commit comments

Comments
 (0)