Skip to content

Commit

Permalink
Merge pull request #334 from inkcartrich/fix/cheatsheet/data-import
Browse files Browse the repository at this point in the history
Fix 'Read a subset of lines' code example in html cheatsheet
  • Loading branch information
mine-cetinkaya-rundel authored May 2, 2024
2 parents 842d786 + 8ea6d39 commit d655880
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion html/data-import.qmd
Original file line number Diff line number Diff line change
Expand Up @@ -245,7 +245,7 @@ write_file("A,B,C\n7,8,9\nNA,11,12", file = "file3.csv")
```{r}
#| message: false
read_csv("file.csv", skip = 1)
read_csv("file.csv", n_max = 1)
```
- Read values as missing:
Expand Down

0 comments on commit d655880

Please sign in to comment.