Skip to content

Commit c8b5cb7

Browse files
authored
Merge pull request #151 from rstudio/docs-arrow-ref
remove todo notes around arrow
2 parents 8915c12 + f024388 commit c8b5cb7

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ board.pin_write(mtcars.head(), "mtcars", type="csv")
5555

5656
Above, we saved the data as a CSV, but depending on
5757
what you’re saving and who else you want to read it, you might use the
58-
`type` argument to instead save it as a `joblib` or `arrow` file (NOTE: arrow is not yet supported).
58+
`type` argument to instead save it as a `joblib` or `arrow` file.
5959

6060
You can later retrieve the pinned data with `.pin_read()`:
6161

docs/getting_started.Rmd

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,10 +70,10 @@ But you can choose another option depending on your goals:
7070

7171
- `type = "csv"` uses `to_csv()` from pandas to create a `.csv` file. CSVs can read by any application, but only support simple columns (e.g. numbers, strings, dates), can take up a lot of disk space, and can be slow to read.
7272
- `type = "joblib"` uses `joblib.dump()` to create a binary python data file. See the [joblib docs](https://joblib.readthedocs.io/en/latest/) for more information.
73+
- `type = "arrow"` uses `pyarrow` to create an arrow/feather file. [Arrow](https://arrow.apache.org) is a modern, language-independent, high-performance file format designed for data science. Not every tool can read arrow files, but support is growing rapidly.
7374

7475
🚧 Data formats TODO 🚧
7576

76-
- `type = "arrow"` uses `arrow::write_feather()` to create an arrow/feather file. [Arrow](https://arrow.apache.org) is a modern, language-independent, high-performance file format designed for data science. Not every tool can read arrow files, but support is growing rapidly.
7777
- `type = "json"` uses `jsonlite::write_json()` to create a `.json` file. Pretty much every programming language can read json files, but they only work well for nested lists.
7878

7979
After you've pinned an object, you can read it back with `pin_read()`:

0 commit comments

Comments
 (0)