How to copy Survo data to R data frame?

classic Classic list List threaded Threaded
1 message Options
Reply | Threaded
Open this post in threaded view
|

How to copy Survo data to R data frame?

Reijo Sund
Administrator
Use the command FILE LOAD <data> TO R>data, for example:
FILE LOAD <Survo>/D/DECA TO R>deca   / Copying data to R data frame
R> deca                            # / Check the contents of data (output in R window)
R> attributes(deca)                # / Survo metadata are preserved in attributes

It is also possible to use R function read.svo().