Nothing
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 code
Plot
plot_bar
plot_box
plot_density
plot_histogram
plot_line
plot_scatter
Stat
stat_anova
stat_correlation
stat_frequency
stat_regression_linear
stat_ttest
Each 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)
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.