Skip to content

Commit

Permalink
add skip and col_names to R ref sheet
Browse files Browse the repository at this point in the history
  • Loading branch information
mgyliu committed Dec 22, 2023
1 parent 270f91e commit c054747
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions REFERENCE_R.md
Original file line number Diff line number Diff line change
Expand Up @@ -52,16 +52,16 @@ e.g. `mean(column)`.

## Data Reading

| Function | Description |
| ------------------------------ | ---------------------------------------------- |
| `download.file(url, destfile)` | Download a file from the web |
| `read_csv(filepath)` | Reads comma-separated values into a data frame |
| `read_csv2(filepath)` | Reads CSV files with semicolon delimiter |
| `read_delim(filepath, delim)` | Reads data from a delimited text file |
| `read_excel(filepath)` | Reads Excel files into R data frames |
| `read_html(filepath)` | Reads and parses HTML web pages |
| `read_tsv(filepath)` | Reads tab-separated values into a data frame |
| `write_csv(tbl, filepath)` | Writes data to a CSV file |
| Function | Description |
| ---------------------------------------------- | ---------------------------------------------- |
| `download.file(url, destfile)` | Download a file from the web |
| `read_csv(filepath)` | Reads comma-separated values into a data frame |
| `read_csv2(filepath)` | Reads CSV files with semicolon delimiter |
| `read_delim(filepath, delim, skip, col_names)` | Reads data from a delimited text file |
| `read_excel(filepath)` | Reads Excel files into R data frames |
| `read_html(filepath)` | Reads and parses HTML web pages |
| `read_tsv(filepath)` | Reads tab-separated values into a data frame |
| `write_csv(tbl, filepath)` | Writes data to a CSV file |

Database functions:

Expand Down

0 comments on commit c054747

Please sign in to comment.