-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
4 changed files
with
19 additions
and
3 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
# Reading .rds and .rdata files is made possible via RData.jl. There is currently no write support, nor is there url support. | ||
|
||
# To read the file, simply pass the path to `read_rdata` or `read_file`. There is a small difference between .rds and .rdata files. | ||
# .rdata files will contain a dict of the table name and the data frame. There can be multiple entries in one .rdata file. To access the data frame, you must pass the name of the dict to the object. | ||
|
||
# ```julia | ||
# using TidierFiles | ||
# file = read_rdata("path.rdata) # or read_file("path.rdata) | ||
# df = file["entry_name"] | ||
# ``` | ||
|
||
# This is in contrast to .rds files which will contain one data frame. | ||
# ```julia | ||
# df = read_rdata("path.rds) | ||
# ``` |
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
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