search for: nam_34

Displaying 3 results from an estimated 3 matches for "nam_34".

Did you mean: nam04
2017 Jun 04
2
Warning from reshape2 when melting a data frame with uneven number of columns.
...= structure(1:3, .Label = c("Name1", "Name2", "Name3"), class = "factor"), V2 = structure(c(1L, 3L, 2L), .Label = c("nam1", "name-1", "name_12"), class = "factor"), V3 = structure(1:3, .Label = c("nam2", "nam_34", "name-2"), class = "factor"), V4 = structure(c(2L, 3L, 1L), .Label = c("", "nam3", "nam_56"), class = "factor"), V5 = structure(c(1L, 2L, 1L), .Label = c("", "name_78"), class = "factor")), .Names =...
2017 Jun 04
0
Warning from reshape2 when melting a data frame with uneven number of columns.
...lt;- as.data.frame(lapply(data,as.character),stringsAsFactors=FALSE) > str(d1) 'data.frame': 3 obs. of 5 variables: $ V1: chr "Name1" "Name2" "Name3" $ V2: chr "nam1" "name_12" "name-1" $ V3: chr "nam2" "nam_34" "name-2" $ V4: chr "nam3" "nam_56" "" $ V5: chr "" "name_78" "" > melt(d1,id.vars="V1") V1 variable value 1 Name1 V2 nam1 2 Name2 V2 name_12 3 Name3 V2 name-1 4 Name1...
2017 Jun 04
0
Warning from reshape2 when melting a data frame with uneven number of columns.
...s. Did you intend the values in each variable to be character? data.frame':??? 3 obs. of? 5 variables: ?$ V1: Factor w/ 3 levels "Name1","Name2",..: 1 2 3 ?$ V2: Factor w/ 3 levels "nam1","name-1",..: 1 3 2 ?$ V3: Factor w/ 3 levels "nam2","nam_34",..: 1 2 3 ?$ V4: Factor w/ 3 levels "","nam3","nam_56": 2 3 1 ?$ V5: Factor w/ 2 levels "","name_78": 1 2 1 On Sunday, June 4, 2017 6:48 AM, Ashim Kapoor <ashimkapoor at gmail.com> wrote: Here is a small reproducible example:...