8 使用 PyArrow 從 R
8.1 簡介
如果您要取得有關設定及安裝 PyArrow 以在 R 中使用的詳細資料,請參閱 「reticulate 中的 Python 和 R 的 Apache Arrow」摘錄。
8.3 從 R 呼叫 PyArrow 函式
您想要從 R 課程中呼叫 PyArrow 函式。
8.3.1 解決方案
<- arrow_table(mtcars[1:5,])
table_1 <- arrow_table(mtcars[11:15,])
table_2
$concat_tables(tables = list(table_1, table_2)) %>%
pacollect()
## # A tibble: 10 × 11
## mpg cyl disp hp drat wt qsec vs am gear carb
## <dbl> <dbl> <dbl> <dbl> <dbl> <dbl> <dbl> <dbl> <dbl> <dbl> <dbl>
## 1 21 6 160 110 3.9 2.62 16.5 0 1 4 4
## 2 21 6 160 110 3.9 2.88 17.0 0 1 4 4
## 3 22.8 4 108 93 3.85 2.32 18.6 1 1 4 1
## 4 21.4 6 258 110 3.08 3.22 19.4 1 0 3 1
## 5 18.7 8 360 175 3.15 3.44 17.0 0 0 3 2
## 6 17.8 6 168. 123 3.92 3.44 18.9 1 0 4 4
## 7 16.4 8 276. 180 3.07 4.07 17.4 0 0 3 3
## 8 17.3 8 276. 180 3.07 3.73 17.6 0 0 3 3
## 9 15.2 8 276. 180 3.07 3.78 18 0 0 3 3
## 10 10.4 8 472 205 2.93 5.25 18.0 0 0 3 4