Learn R Programming

starry

The goal of starry is to provide an easy to use interactive interface to plot data and perform statistical tests.

Installation

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")

Example

This is a basic example which shows you how to solve a common problem:

library(starry)
## basic example code

Available Functions

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

Examples

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)

Copy Link

Version

Install

install.packages('starry')

Monthly Downloads

181

Version

0.1.2

License

MIT + file LICENSE

Maintainer

Joe Chelladurai

Last Published

January 16th, 2023

Functions in starry (0.1.2)

plot_box

Plot - Box
plot_histogram

Plot - Histogram
%>%

Pipe operator
plot_density

Plot - Density
plot_line

Plot - Line
stat_regression_linear

Stat - Linear Regression
stat_ttest

Stat - T-test
plot_bar

Plot - Bar
plot_scatter

Plot - Scatter
stat_anova

Stat - Anova
stat_correlation

Stat - Correlation
stat_frequency

Stat - Frequency