Skip to content

Commit fbae71b

Browse files
committed
04-data-types-and-format.md: fix challenges
1 parent 6c792bc commit fbae71b

1 file changed

Lines changed: 8 additions & 4 deletions

File tree

_episodes/04-data-types-and-format.md

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -259,7 +259,7 @@ dtype('float64')
259259
~~~
260260
{: .output}
261261

262-
> ## Challenge - Changing Types
262+
> ## Changing Types
263263
>
264264
> Try converting the column `plot_id` to floats using
265265
>
@@ -364,9 +364,13 @@ Python gives us all of the tools that we need to account for these issues. We
364364
just need to be cautious about how the decisions that we make impact scientific
365365
results.
366366
367-
> ## Challenge - Counting
368-
> Count the number of missing values per column. Hint: The method .count() gives you
369-
> the number of non-NA observations per column. Try looking to the .isnull() method.
367+
> ## Counting
368+
> Count the number of missing values per column.
369+
>
370+
> > ## Hint
371+
> > The method `.count()` gives you the number of non-NA observations per column.
372+
> > Try looking to the `.isnull()` method.
373+
> {: .solution}
370374
{: .challenge}
371375
372376
## Writing Out Data to CSV

0 commit comments

Comments
 (0)