Displaying 1 result from an estimated 1 matches for "path_to_sharepointsit".
Did you mean:
path_to_sharepointsite
2009 Jun 23
1
opening URL for writing
...We are investigating whether it is possible to read and write data to
Microsoft Sharepoint sites using R.
We have managed to open a read-only connection to read data from
sharepoint sites using the 'url' function (connections{base}), for
example:
conn <- url(description="https://path_to_sharepointsite/data.csv", open
="r);
dat <- read.table(file=conn, sep=",");
However, it appears that URLs can only be opened for reading; from the
connections{base} help file:
"Not all modes are applicable to all connections: for example URLs can
only be opened for reading."...