Svetlana Eden
2004-Feb-05 18:15 UTC
[R] What is the correct way of using function C() for factors:
The funciton c() works differently for strings and for factors: For strings:> l = c('a', 'b') > l[1] "a" "b" For factors:> l = c(factor('a'), factor('b')) > l[1] 1 1 What should be the right technique for merging factors? -- Svetlana Eden Biostatistician II School of Medicine Department of Biostatistics Vanderbilt University
Corey Moffet
2004-Feb-05 18:33 UTC
[R] What is the correct way of using function C() for factors:
try: l <- factor(c('a','b')) l At 12:15 PM 2/5/2004 -0600, Svetlana Eden wrote:> >The funciton c() works differently for strings and for factors: > > >For strings: > >> l = c('a', 'b') >> l >[1] "a" "b" > > >For factors: > >> l = c(factor('a'), factor('b')) >> l >[1] 1 1 > > >What should be the right technique for merging factors? > > > > >-- >Svetlana Eden Biostatistician II School of Medicine > Department of Biostatistics Vanderbilt University > >______________________________________________ >R-help at stat.math.ethz.ch mailing list >https://www.stat.math.ethz.ch/mailman/listinfo/r-help >PLEASE do read the posting guide! http://www.R-project.org/posting-guide.html >With best wishes and kind regards I am Sincerely, Corey A. Moffet Rangeland Scientist USDA-ARS Northwest Watershed Research Center 800 Park Blvd, Plaza IV, Suite 105 Boise, ID 83712-7716 Voice: (208) 422-0718 FAX: (208) 334-1502