search for: w_melt

Displaying 1 result from an estimated 1 matches for "w_melt".

Did you mean: melt
2010 Aug 30
2
reordering levels error
...875L, 222L, 883L, 0L, 0L, 129L, 0L, 0L, ??? 0L, 0L, 0L, 0L, 0L, 0L, 0L, 0L)), .Names = c("week", "BY2010", "BY2009", "BY2008", "BY2007", "BY2006", "BY2005"), class = "data.frame", row.names = c(NA, -53L)) ?str(winter) ?w_melt <- melt(winter,id="week",variable="year");str(w_melt) ?#? Reorder DOESN'T WORK ?w_melt <- reorder(w_melt$year,c("BY2005","BY2009","BY2006","BY2008","BY2007","BY2010")) pdf("wtest.pdf") ggplot(w_melt...