Most voted "conditional-graph" questions
2 questions
Sort by count of
-
8
votes2
answers637
viewsHow to make a conditional y~x graph for each data.frame factor?
Suppose a data.frame like the following: set.seed(1) dados <- data.frame(w=rep(c("A", "B", "C", "D"), 50), y= rnorm(200), x=rnorm(200), stringsAsFactors=FALSE) How to create a chart y~x separated…
-
6
votes1
answer632
viewsGenerate contour charts over a 360*360 position map with weights from 0 to 1
What technique can I use to generate graphics in the style of c and d of this figure? Man input will be in the standard: X, Y and the weight of that position, where X and Y go from -180°; up to…