colors - R : stat_smooth error cause by sufficient unique values -
i have dataset, , want show figure using stat_smooth().
first, can show age vs scored_probabilities (male) figure, looks this:
names(dataset2) <- sub(pattern=' ', replacement='.', x=names(dataset2)) dataset3 <- subset(dataset2,gender== 'male') #patterns vs age d <- ggplot(dataset3, aes(y=scored.probabilities, x=jitter(as.numeric(age)), colour=factor(patterns))) d + stat_smooth() +scale_colour_brewer(palette="set3")
but when changing male female, error occurs:
#female dataset4 <- subset(dataset2,gender== 'female') #patterns vs age d <- ggplot(dataset4, aes(y=scored.probabilities, x=jitter(as.numeric(age)), colour=factor(patterns))) d + stat_smooth()+scale_colour_brewer(palette="set3") error in smooth.construct.cr.smooth.spec(object, data, knots) : x has insufficient unique values support 10 knots: reduce k.
second, "set3" color seems not enough plot. color set can solve it?
Comments
Post a Comment