Export Data to URL

DESCRIPTION:

Export data to a file stored at a WebDAV URL.

USAGE:

spserver.exportData(data, file, ...)

REQUIRED ARGUMENTS:

data
a data frame or matrix or bdFrame to be exported.
file
WebDAV URL where the exported data file should be written. This argument is named file to be consistent with exportData.

OPTIONAL ARGUMENTS:

...
Other arguments that will be passed to exportData.

VALUE:

The same value as exportData, the number of rows written.

SIDE EFFECTS:

Writes the exported data file to the specified WebDAV server.

DETAILS:

This function exports the data to a temporary file by calling exportData, and then uploads this file to the specified URL.

EXAMPLES:


# spserver.exportData(fuel.frame, spserver.url("fuel.txt"), type="ASCII")