Skip to content

kmaheshkulkarni/corrly

Repository files navigation

Corrly is a Data Visualization Package For Manufacturing Process.

Project Status: WIP – Initial development is in progress, but there has not yet been a stable, usable release suitable for the public. lifecycle CRAN status

Home page

Install Corrly

# install.packages("devtools")
# devtools::install_github("kmaheshKulkarni/corrly")

Correlation Scatter Plot

library(plotly)
library(corrly)
spearman<- corr_coef_spearman(variable1= cars$speed, variable2=cars$dist, decimal = 2)
corr_scatterly(data=cars,x=cars$speed,y=cars$dist,corr_coef=spearman,xname="speed",yname="dist")

Correlation Matrix Plot

library(plotly)
library(corrly)
matrixly(data = mtcars)