Skip to content

Commit 92086c7

Browse files
committed
02-starting-with-data.md: Fix code blocks and blockquotes
Signed-off-by: Maxim Belkin <[email protected]>
1 parent 06394c7 commit 92086c7

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

_episodes/02-starting-with-data.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ record_id,month,day,year,plot_id,species_id,sex,hindfoot_length,weight
8181
8,7,16,1977,1,DM,M,37,
8282
9,7,16,1977,1,DM,F,34,
8383
~~~
84-
>> {: .output}
84+
{: .output}
8585

8686
---
8787

@@ -155,7 +155,7 @@ record_id month day year plot_id species_id sex hindfoot_length weight
155155
156156
[35549 rows x 9 columns]
157157
~~~
158-
>> {: .output}
158+
{: .output}
159159

160160
We can see that there were 35,549 rows parsed. Each row has 9
161161
columns. The first column is the index of the DataFrame. The index is used to
@@ -362,7 +362,7 @@ Index(['record_id', 'month', 'day', 'year', 'plot_id', 'species_id', 'sex',
362362
'hindfoot_length', 'weight'],
363363
dtype='object')
364364
~~~
365-
>> {: .output}
365+
{: .output}
366366

367367
Let's get a list of all the species. The `pd.unique` function tells us all of
368368
the unique values in the `species_id` column.

0 commit comments

Comments
 (0)