Title: | General Editorial Computing Environment for Data Analysis |
---|---|
Description: | Survo R is an open source version of the general computing environment Survo developed by professor Seppo Mustonen. |
Authors: | Reijo Sund, Seppo Mustonen, Kimmo Vehkalahti |
Maintainer: | Reijo Sund <[email protected]> |
License: | Artistic-2.0 |
Version: | 0.7.7 |
Built: | 2025-01-29 07:25:29 UTC |
Source: | https://github.com/rsund/survor |
Expands file name containing Survo R paths
muste_ExpandFileName(path)
muste_ExpandFileName(path)
path |
input path |
Gives expanded path as output.
Expanded path.
Reijo Sund
Reads a file in Survo (or Muste) binary format into a data frame.
read.svo(file)
read.svo(file)
file |
a filename or URL as a character string. |
If the filename appears to be a URL (of schemes ‘http:’, ‘ftp:’ or ‘https:’) the URL is first downloaded to a temporary file and then read. (‘https:’ is only supported on some platforms.)
The variables in the Survo data set become the columns of the data frame. Missing values are correctly handled. The variable labels, types and lengths as well as data description and info are stored as attributes of the data frame.
A data frame with attributes. These will include "status.info"
,
"status.description"
, "status.varname"
, "status.vartype"
and "status.varlen"
.
Reijo Sund
Initializes Survo R and opens the editorial interface window. For more information, type HELP? in the editor and activate by ESC-key. See also Survo R web pages and Survo web pages for more information. Especially getting started tour, Survo books, Survo demos and Survo help system are likely to be useful for a newbie.
survo(sucro = "<empty>", config = "<empty>")
survo(sucro = "<empty>", config = "<empty>")
sucro |
Path for start sucro. |
config |
Path for config file (SURVOR.APU). |
Writes a data frame into Survo (or Muste) binary format.
write.svo(dataf,svofile)
write.svo(dataf,svofile)
dataf |
R data frame object |
svofile |
name for output file |
The R data frame is copied to the given Survo data set. Missing values and encodings are correctly handled.
A Survo data file.
Reijo Sund