search for: name_12

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

Did you mean: name_1
2017 Jun 04
2
Warning from reshape2 when melting a data frame with uneven number of columns.
Here is a small reproducible example: data <- structure(list(V1 = 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...
2017 Jun 04
0
Warning from reshape2 when melting a data frame with uneven number of columns.
Is this the solution? > d1<- 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...
2017 Jun 04
0
Warning from reshape2 when melting a data frame with uneven number of columns.
...oor at gmail.com> wrote: Here is a small reproducible example: data <- structure(list(V1 = 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...