The hardware and bandwidth for this mirror is donated by METANET, the Webhosting and Full Service-Cloud Provider.
If you wish to report a bug, or if you are interested in having us mirror your free-software or open-source project, please feel free to contact us at mirror[@]metanet.ch.
The goal of starry is to provide an easy to use interactive interface to plot data and perform statistical tests.
Starry is available on CRAN and can be installed using:
install.packages("starry")You can install the development version of starry from GitHub with:
# install.packages("devtools")
devtools::install_github("joe-chelladurai/starry")This is a basic example which shows you how to solve a common problem:
library(starry)
## basic example codePlot
plot_bar
plot_box
plot_density
plot_histogram
plot_line
plot_scatterStat
stat_anova
stat_correlation
stat_frequency
stat_regression_linear
stat_ttestEach function takes a data argument and variables.
plot_scatter(mtcars, disp, hp)These functions are also pipeable
mtcars |>
plot_scatter(disp, hp)You can also pass just a data argument and choose the variables in the interactive app
plot_scatter(mtcars)These binaries (installable software) and packages are in development.
They may not be fully stable and should be used with caution. We make no claims about them.