ggproto
ggpattern
ggplot(iris,aes(sample = Sepal.Length))+ stat_qq(distribution = qnorm , dparams = list(mean=mean(iris$Sepal.Length), sd=sd(iris$Sepal.Length)))+ stat_qq_line()
ggplot(iris,aes(sample = Sepal.Length))+ geom_qq(distribution = qpois , dparams = list(lambda=mean(iris$Sepal.Length)) )+ geom_qq_line()