update docs
This commit is contained in:
Родитель
8c6991f713
Коммит
1947d5cc03
|
@ -37,6 +37,14 @@ od$create_folder("Documents/newfolder")
|
||||||
|
|
||||||
# open a document for editing in Word Online
|
# open a document for editing in Word Online
|
||||||
od$open_item("Documents/myfile.docx")
|
od$open_item("Documents/myfile.docx")
|
||||||
|
|
||||||
|
# working with data frames and R objects
|
||||||
|
od$save_dataframe(iris, "Documents/iris.csv")
|
||||||
|
iris2 <- od$load_dataframe("Documents/iris.csv")
|
||||||
|
|
||||||
|
wtmod <- lm(wt ~ ., data=mtcars)
|
||||||
|
od$save_rds(wtmod, "Documents/wtmod.rds")
|
||||||
|
wtmod2 <- od$load_rds("Documents/wtmod.rds")
|
||||||
```
|
```
|
||||||
|
|
||||||
### SharePoint Online
|
### SharePoint Online
|
||||||
|
|
|
@ -93,6 +93,23 @@ newfile$open()
|
||||||
newfile$download("newdocument modified.docx")
|
newfile$download("newdocument modified.docx")
|
||||||
```
|
```
|
||||||
|
|
||||||
|
There are also convenience methods for working with data frames and other R objects.
|
||||||
|
|
||||||
|
```r
|
||||||
|
# saving and loading data to a csv file
|
||||||
|
od$save_dataframe(iris, "Documents/iris.csv")
|
||||||
|
iris2 <- od$load_dataframe("Documents/iris.csv")
|
||||||
|
|
||||||
|
# saving and loading an R object
|
||||||
|
wtmod <- lm(wt ~ ., data=mtcars)
|
||||||
|
od$save_rds(wtmod, "Documents/wtmod.rds")
|
||||||
|
wtmod2 <- od$load_rds("Documents/wtmod.rds")
|
||||||
|
|
||||||
|
# saving and loading multiple objects
|
||||||
|
od$save_rdata(iris, wtmod, file="Documents/objects.rdata")
|
||||||
|
od$load_rdata("Documents/objects.rdata")
|
||||||
|
```
|
||||||
|
|
||||||
## SharePoint
|
## SharePoint
|
||||||
|
|
||||||
To access a SharePoint site, use the `get_sharepoint_site()` function and provide the site name, URL or ID. You can also list the sites you're following with `list_sharepoint_sites()`.
|
To access a SharePoint site, use the `get_sharepoint_site()` function and provide the site name, URL or ID. You can also list the sites you're following with `list_sharepoint_sites()`.
|
||||||
|
|
Загрузка…
Ссылка в новой задаче