Please post both the code you are using and the error, Abigail.
Nate
On Oct 9, 2018, 11:59 AM -0700, Friedman, Abigail ,
wrote:
> I keep getting error messages when running my data frame code and I cannot
> figure out what I am doing wrong.
>
>
> [[alternative HTML version deleted]]
>
>
Hello,
Well, you must post the said code (and data), how can we help you
without seeing it?
In order to post data, post the output of dput(df) in your mail. Or, if
it is too big with the output of dput(head(df, 20)). (df is the name of
your dataset.)
Also, don't post in html, please, see t
I would probably write the function something like this:
t_count_na <- function(dataset,
variables = "all") {
if (identical(variables, "all")) {
variable_list <- names(dataset)
} else {
variable_list <- variables
}
apply(dataset[,variable_list], 1, funct
t;,header=FALSE,stringsAsFactors=FALSE)
colnames(dat2)<- unlist(unique(dat1[,seq(1,ncol(dat1),by=2)]))
str(dat2)
'data.frame': 10 obs. of 4 variables:
# $ BRAND: chr "GMC" "FORD" "GMC" "FORD" ...
# $ NUM : int 1 1 1 1 1 1 1 1 1 1
# $ Y
On Tue, Jan 22, 2013 at 3:11 PM, Adam Gabbert wrote:
> Hello,
>
> I'm attempting to read information from an XML into a data frame in R using
> the "XML" package. I am unable to get the data into a data frame as I would
> like. I have some sample code below.
>
> *XML Code:*
>
> Header...
>
> Data
On Jan 22, 2013, at 3:11 PM, Adam Gabbert wrote:
> Hello,
>
> I'm attempting to read information from an XML into a data frame in R using
> the "XML" package. I am unable to get the data into a data frame as I would
> like. I have some sample code below.
>
> *XML Code:*
>
> Header...
>
> Dat
6 matches
Mail list logo