@@ -54,7 +54,7 @@ We will be using files from the [Portal Project Teaching Database][pptd].
5454This section will use the ` surveys.csv ` file that can be downloaded here:
5555[ https://ndownloader.figshare.com/files/2292172 ] [ figshare-ndownloader ]
5656
57- We are studying the species and weight of animals caught in sites in our study
57+ We are studying the ** species** and ** weight** of animals caught in sites in our study
5858area. The dataset is stored as a ` .csv ` file: each row holds information for a
5959single animal, and the columns represent:
6060
@@ -317,10 +317,10 @@ this case it represents strings (such as 'M' and 'F' in the case of sex).
317317
318318We'll talk a bit more about what the different formats mean in a different lesson.
319319
320- ### Useful Ways to View DataFrame objects in Python
320+ ### Useful Ways to View DataFrame Objects in Python
321321
322322There are many ways to summarize and access the data stored in DataFrames,
323- using attributes and methods provided by the DataFrame object.
323+ using ** attributes** and ** methods** provided by the DataFrame object.
324324
325325To access an attribute, use the DataFrame object name followed by the attribute
326326name ` df_object.attribute ` . Using the DataFrame ` surveys_df ` and attribute
@@ -329,14 +329,14 @@ with `surveys_df.columns`.
329329
330330Methods are called in a similar fashion using the syntax ` df_object.method() ` .
331331As an example, ` surveys_df.head() ` gets the first few rows in the DataFrame
332- ` surveys_df ` using ** the ` head() ` method** . With a method, we can supply extra
332+ ` surveys_df ` using the ` head() ` method. With a method we can supply extra
333333information in the parens to control behaviour.
334334
335335Let's look at the data using these.
336336
337337> ## Challenge - DataFrames
338338>
339- > Using our DataFrame ` surveys_df ` , try out the attributes & methods below to see
339+ > Using our DataFrame ` surveys_df ` , try out the ** attributes** & ** methods** below to see
340340> what they return.
341341>
342342> 1 . ` surveys_df.columns `
0 commit comments