search for: origdata

Displaying 9 results from an estimated 9 matches for "origdata".

Did you mean: orig_data
2010 Jul 23
1
Error produced by read.zoo: "bad entries"
...ate(monthly$month,"%Y%m%d") (monthly) str(monthly) I am trying to use read.zoo - like in 3 lines below: library(zoo) z <- read.zoo(monthly, split = "market") (z) With the artificially produced data set above, it works just fine. However, with my data it gives me an error: OrigData<-read.csv("OrigData.csv") OrigData$Month<-as.character(OrigData$Month) OrigData$Month<-as.Date(OrigData$Month,"%m/%d/%y") str(OrigData) ### The result of str(OrigData) is: 'data.frame': 440 obs. of 3 variables: $ Brand : Factor w/ 11 levels "aBra...
2012 Jan 19
1
ctree question
Hello. I have used the "party" package to generate a regression tree as follows: >origdata<-read.csv("origdata.csv") >ctrl<-ctree_control(mincriterion=0.99,maxdepth=10,minbucket=10) >test.ct<-ctree(Y~X1+X2+X3,data=origdata,control=ctrl) The above works fine. Orig data was my training data. I now have a test data file (testdata), and would like to r...
2011 Mar 15
3
how to reshape the data.frame from long to wide in a specific order
Hi, For example, the data.frame like: origdata.long <- read.table(header=T, con <- textConnection(' subject sex condition measurement 1 M control 7.9 1 M first 12.3 1 M second 10.7 2 F control 6.3 2 F first 10.6 2 F second...
2018 Jan 17
4
effects: error when original data frame is missing
...;Temp", fm) Error in eval(model$call$data, envir) : object 'myair' not found Has anybody a better "workaround" for this than, e.g., explicitly saving the fitted model object fm together with its original environment or just the data needed frame (maybe in a list like fm.plus.origdata <- list(fm, myair = myair)) to be able to restore the original environemt (or at least the needed opriginal data frame) of the time when fm was created? Thx for any hint! Regards -- Gerrit --------------------------------------------------------------------- Dr. Gerrit Eichner...
2011 Oct 25
2
extract data for specific levels factor
Dear all, I'm trying to analyze data with the following structure: ind cat tx age 40.2 por fol peq vh 35 41.9 por fol med vh 35 68.9 por fol preov vh 35 71.5 por fol peq ser 37 67.5 por fol med ser 37 76.9 por fol preov ser 37 78.7 por fol peq otr 37 78.3 por fol med otr 37 82.1 por fol
2018 Jan 17
0
effects & lme4: error since original data frame not found WASeffects: error when original data frame is missing
...eval(model$call$data, envir) : object 'myair' not found > > Has anybody a better "workaround" for this than, e.g., explicitly > saving the fitted model object fm together with its original > environment or just the data needed frame (maybe in a list like > fm.plus.origdata <- list(fm, myair = myair)) to be able to restore > the original environemt (or at least the needed opriginal data > frame) of the time when fm was created? > > Thx for any hint! > > ?Regards? --? Gerrit > > ------------------------------------------------------------...
2018 Jan 17
0
effects & lme4: error since original data frame notfoundWASeffects: error when original data frame is missing
...myair' not found > >> > >> Has anybody a better "workaround" for this than, e.g., explicitly > >> saving the fitted model object fm together with its original > >> environment or just the data needed frame (maybe in a list like > >> fm.plus.origdata <- list(fm, myair = myair)) to be able to restore > >> the original environemt (or at least the needed opriginal data > >> frame) of the time when fm was created? > >> > >> Thx for any hint! > >> > >> ??Regards? --? Gerrit > >> >...
2010 Apr 25
4
Image into Excel file from R
Hi useRs, I would like to know what R users are employing to get their images/plots created in R, into Excel sheets. I am aware of the various packages (xlsReadWrite, RODBC) to get data frames into R, but I would like to copy images too. Thank you for any help in solving this problem. Regards, Harsh Singhal
2008 Feb 15
12
Transfer Crosstable to Word-Document
# Dear list, # I am an R-beginner and # spent the last days looking for a method to insert tables produced # with R into a word document. I thought about SPPS: copy a table from # an SPO-file and paste it into a word document # (if needed do some formatting with that table). # Annother idea was, to produce a TEX-file, # insert it and make it a word-table. # I found the following libraries, which