forked from erikaduan/r_tips
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' of github.com:erikaduan/r_tips
- Loading branch information
Showing
7 changed files
with
74 additions
and
31 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
--- | ||
title: "Using arrow with tidyverse and data.table" | ||
author: Erika Duan | ||
date: "`r Sys.Date()`" | ||
output: | ||
github_document: | ||
toc: true | ||
--- | ||
|
||
|
||
```{r setup, include=FALSE} | ||
knitr::opts_chunk$set(echo = TRUE) | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
Using arrow with tidyverse and data.table | ||
================ | ||
Erika Duan | ||
2022-03-05 | ||
|
||
- [R Markdown](#r-markdown) | ||
- [Including Plots](#including-plots) | ||
|
||
## R Markdown | ||
|
||
This is an R Markdown document. Markdown is a simple formatting syntax | ||
for authoring HTML, PDF, and MS Word documents. For more details on | ||
using R Markdown see <http://rmarkdown.rstudio.com>. | ||
|
||
When you click the **Knit** button a document will be generated that | ||
includes both content as well as the output of any embedded R code | ||
chunks within the document. You can embed an R code chunk like this: | ||
|
||
``` r | ||
summary(cars) | ||
``` | ||
|
||
## speed dist | ||
## Min. : 4.0 Min. : 2.00 | ||
## 1st Qu.:12.0 1st Qu.: 26.00 | ||
## Median :15.0 Median : 36.00 | ||
## Mean :15.4 Mean : 42.98 | ||
## 3rd Qu.:19.0 3rd Qu.: 56.00 | ||
## Max. :25.0 Max. :120.00 | ||
|
||
## Including Plots | ||
|
||
You can also embed plots, for example: | ||
|
||
![](dc-using_arrow_files/figure-gfm/pressure-1.png)<!-- --> | ||
|
||
Note that the `echo = FALSE` parameter was added to the code chunk to | ||
prevent printing of the R code that generated the plot. |
Binary file added
BIN
+3.66 KB
tutorials/dc-using_arrow/dc-using_arrow_files/figure-gfm/pressure-1.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters