Fix/EDA typos (#1427)

This commit is contained in:
Mitsuo Shiota 2023-04-17 21:06:06 +09:00 committed by GitHub
parent 0a5be3a022
commit 66394d2dcd
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 3 deletions

View File

@ -399,7 +399,7 @@ In the exercises, you'll be challenged to figure out why.
`cut` is an ordered factor: fair is worse than good, which is worse than very good and so on.
Many categorical variables don't have such an intrinsic order, so you might want to reorder them to make a more informative display.
One way to do that is with `fct_reorder()`.
You'll learn more about that function in @sec-modifying-factor-order, but we wanted to give you a quick preview here because it's so useful.
You'll learn more about that function in @sec-modifying-factor-order, but we want to give you a quick preview here because it's so useful.
For example, take the `class` variable in the `mpg` dataset.
You might be interested to know how highway mileage varies across classes:
@ -710,7 +710,7 @@ We're not discussing modelling in this book because understanding what models ar
## Summary
In this chapter you've learned a variety of tools to help you understand the variation within your data.
You've seen technique that work with a single variable at a time and with a pair of variables.
This might seem painful restrictive if you have tens or hundreds of variables in your data, but they're foundation upon which all other techniques are built.
You've seen techniques that work with a single variable at a time and with a pair of variables.
This might seem painfully restrictive if you have tens or hundreds of variables in your data, but they're foundation upon which all other techniques are built.
In the next chapter, we'll focus on the tools we can use to communicate our results.