Two questions:
I like to store and process the output of ss.study.ca() in same way as I do with ggplot:
p1 <- ggplot(..) + ... p2 <- ss.study.ca(....) multiplot(p1, p2, rows = 2) # this function puts 2 graphs on 1 page
However p2 seems to want a page for its own.
Second questions is that ss.study.ca() returns both a NULL and a warning message like:
1: In ss.study.ca(df_temp$Value, LSL = (df_temp$LimitLo)[1], USL = (df_temp$LimitHi)[1], : Normality test/s failed
As I use ss.study.ca in a loop I like to suppress both messages.
Any pointer for solution is appreciated.