Thread: [R-gregmisc-users] SF.net SVN: r-gregmisc:[1720] trunk/SASxport/man/read.xport.Rd
Brought to you by:
warnes
From: <wa...@us...> - 2013-10-09 18:20:26
|
Revision: 1720 http://sourceforge.net/p/r-gregmisc/code/1720 Author: warnes Date: 2013-10-09 18:20:23 +0000 (Wed, 09 Oct 2013) Log Message: ----------- Change to camelcase Modified Paths: -------------- trunk/SASxport/man/read.xport.Rd Modified: trunk/SASxport/man/read.xport.Rd =================================================================== --- trunk/SASxport/man/read.xport.Rd 2013-10-09 18:18:08 UTC (rev 1719) +++ trunk/SASxport/man/read.xport.Rd 2013-10-09 18:20:23 UTC (rev 1720) @@ -181,12 +181,12 @@ } ## We can also get the dataset wrapped in a list -w <- read.xport(testfile, as.list=TRUE) +w <- read.xport(testFile, as.list=TRUE) class(w) sapply(w, head) ## And we can ask for the format information to be included as well. -w <- read.xport(testfile, as.list=TRUE, include.formats=TRUE) +w <- read.xport(testFile, as.list=TRUE, include.formats=TRUE) class(w) sapply(w, head) This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <wa...@us...> - 2014-07-17 02:32:13
|
Revision: 1829 http://sourceforge.net/p/r-gregmisc/code/1829 Author: warnes Date: 2014-07-17 02:32:04 +0000 (Thu, 17 Jul 2014) Log Message: ----------- Enable examples that use Hmisc, since it is now a dependency. Modified Paths: -------------- trunk/SASxport/man/read.xport.Rd Modified: trunk/SASxport/man/read.xport.Rd =================================================================== --- trunk/SASxport/man/read.xport.Rd 2014-07-17 02:16:22 UTC (rev 1828) +++ trunk/SASxport/man/read.xport.Rd 2014-07-17 02:32:04 UTC (rev 1829) @@ -26,7 +26,7 @@ variables should be returned as integers (\code{TRUE}) or doubles (\code{FALSE}). Variables outside the supported integer range (\code{.Machine$integer.max}) will always be converted to - doubles. + doubles. } \item{formats}{a data frame or list (like that created by \code{foreign:::read.xport}) containing \code{PROC FORMAT} @@ -36,7 +36,7 @@ \item{name.chars}{Vector of additional characters permissible in variable names. By default, only the alpha and numeric characters ([A-Za-z0-9]) and periods ('.') are permitted. All - other characters are converted into periods ('.'). + other characters are converted into periods ('.'). } \item{names.tolower}{Logical indicating whether variable and dataset names should be converted to lowercase (\code{TRUE}) or left @@ -45,7 +45,7 @@ \item{keep}{a vector of names of SAS datasets to process. This list must include \code{PROC FORMAT} dataset if it is present for datasets to use use any of its value label formats. - } + } \item{drop}{a vector of names of SAS datasets to ignore (original SAS upper case names) } @@ -53,7 +53,7 @@ Either a logical flag indicating whether SAS character variables should be preserved as character objects (\code{TRUE}) or factor objects (\code{FALSE}), or a fractional cutoff between 0 and 1. - + When a fractional cutoff is provided, character variables containing a more than this fraction of unique values will be stored as a character variables. This is done in order to @@ -65,12 +65,12 @@ \item{as.list}{Logical indicating whether to return a list even if the SAS xport file contains only only one dataset.} \item{include.formats}{Logical indicating whether to include SAS - format information (if present) in the returned list} + format information (if present) in the returned list} } \value{ If only a single dataset is present (after removing \code{PROC FORMAT} data when \code{include.formats=FALSE}), the return value is a single - dataframe object. Otherwise the return is a list of dataframe objects. + dataframe object. Otherwise the return is a list of dataframe objects. Note that if \code{include.formats=TRUE}, the returned list will contain a dataframe named "FORMATS" containing any available 'PROC FORMAT' @@ -79,18 +79,18 @@ \details{ \itemize{ - \item SAS date, time, and date/time variables are converted respectively to \code{Date}, + \item SAS date, time, and date/time variables are converted respectively to \code{Date}, POSIX, or \code{chron} objects - + \item SAS labels are stored in "label" attributes on each variable, and are accessible using the \code{\link{label}} function. - + \item SAS formats are stored in "SASformat" attributes on each variable, and are accessable using \code{\link{SASformat}} - + \item SAS iformats are stored in "SASiformat" attributes on each variable, and are accessable using \code{\link{SASiformat}} - + \item SAS integer variables are stored as integers unless \code{force.integer} is \code{FALSE} } @@ -105,7 +105,7 @@ functions. } \author{ Gregory R. Warnes \email{gr...@wa...} - based on \code{Hmisc:::sasxport.get} by Frank E. Harrell, Jr.} + based on \code{Hmisc:::sasxport.get} by Frank E. Harrell, Jr.} \section{Note}{ This code provides a subset of the functionality of the \code{sasxport.get} function in the Hmisc library. @@ -114,7 +114,7 @@ \code{\link[foreign]{read.xport}}, \code{\link{label}}, \code{\link[Hmisc]{sas.get}}, - \code{\link[Hmisc]{sasxport.get}}, + \code{\link[Hmisc]{sasxport.get}}, \code{\link{Dates}}, \code{\link{DateTimeClasses}}, \code{\link[chron]{chron}}, @@ -195,7 +195,6 @@ } -\dontrun{ #### The Hmisc library provides many useful functions for interacting with #### data imported from SAS via read.xport() library(Hmisc) @@ -209,7 +208,6 @@ options(digits=7) # compare the following matrix with PROC MEANS output t(sapply(w$z, function(x) c(Mean=mean(x),SD=sqrt(var(x)),Min=min(x),Max=max(x)))) -} } \keyword{interface} This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <wa...@us...> - 2014-07-17 02:56:20
|
Revision: 1831 http://sourceforge.net/p/r-gregmisc/code/1831 Author: warnes Date: 2014-07-17 02:56:17 +0000 (Thu, 17 Jul 2014) Log Message: ----------- Updated read.xport man page exampls to match new behavior of names.toupper Modified Paths: -------------- trunk/SASxport/man/read.xport.Rd Modified: trunk/SASxport/man/read.xport.Rd =================================================================== --- trunk/SASxport/man/read.xport.Rd 2014-07-17 02:55:02 UTC (rev 1830) +++ trunk/SASxport/man/read.xport.Rd 2014-07-17 02:56:17 UTC (rev 1831) @@ -199,14 +199,14 @@ #### data imported from SAS via read.xport() library(Hmisc) -describe(w$test) # see labels, format names for dataset test +describe(w$TEST) # see labels, format names for dataset test lapply(w, describe)# see descriptive stats in more detail for each variable -contents(w$test) # another way to see variable attributes +contents(w$TEST) # another way to see variable attributes lapply(w, contents)# show contents of individual items in more detail options(digits=7) # compare the following matrix with PROC MEANS output -t(sapply(w$z, function(x) +t(sapply(w$Z, function(x) c(Mean=mean(x),SD=sqrt(var(x)),Min=min(x),Max=max(x)))) } This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |