Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Replace excel screenshots by embedded file contents #598

Merged
merged 2 commits into from
Dec 14, 2023
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 6 additions & 5 deletions episodes/11-supp-read-write-csv.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -255,7 +255,8 @@ write.csv(carSpeeds, file = 'data/car-speeds-cleaned.csv')

If you open the file, you'll see that it has header names, because the data had headers within R, but that there are numbers in the first column.

<img src="fig/01-supp-csv-with-row-nums.png" alt="csv written without row.names argument" />
```{embed file = "data/car-speeds-cleaned.csv"}
```

### The `row.names` Argument

Expand All @@ -267,7 +268,8 @@ write.csv(carSpeeds, file = 'data/car-speeds-cleaned.csv', row.names = FALSE)

Now we see:

<img src="fig/01-supp-csv-without-row-nums.png" alt="csv written with row.names argument" />
```{embed file = "data/car-speeds-cleaned.csv"}
```

::::::::::::::::::::::::::::::::::::::::: callout

Expand Down Expand Up @@ -306,9 +308,8 @@ write.csv(carSpeeds,

And we see:

<img src="fig/01-supp-csv-with-special-NA.png" alt="csv written with -9999 as NA" />


```{embed file = "data/car-speeds-cleaned.csv"}
```

:::::::::::::::::::::::::::::::::::::::: keypoints

Expand Down
Binary file removed episodes/fig/01-supp-csv-with-row-nums.png
Binary file not shown.
Binary file removed episodes/fig/01-supp-csv-with-special-NA.png
Binary file not shown.
Binary file removed episodes/fig/01-supp-csv-without-row-nums.png
Binary file not shown.