Improve sentences (#1279)

It slightly improves sentences and fixes some typos.
This commit is contained in:
Zeki Akyol
2023-02-13 22:29:46 +03:00
committed by GitHub
parent b0a395b477
commit 61a4ce719d
6 changed files with 8 additions and 8 deletions

View File

@@ -502,7 +502,7 @@ We'll use `tibble()` and `tribble()` later in the book to construct small exampl
In this chapter, you've learned how to load CSV files with `read_csv()` and to do your own data entry with `tibble()` and `tribble()`.
You've learned how csv files work, some of the problems you might encounter, and how to overcome them.
We'll come to data import a few times in this book: @sec-import-spreadsheets from Excel and googlesheets, @sec-import-databases will show you how to load data from databases, @sec-arrow from parquet files, @sec-rectangling from JSON, and @sec-scraping from websites.
We'll come to data import a few times in this book: @sec-import-spreadsheets from Excel and Google Sheets, @sec-import-databases will show you how to load data from databases, @sec-arrow from parquet files, @sec-rectangling from JSON, and @sec-scraping from websites.
Now that you're writing a substantial amount of R code, it's time to learn more about organizing your code into files and directories.
In the next chapter, you'll learn all about the advantages of scripts and projects, and some of the many tools that they provide to make your life easier.