README.md

[![](/man/figures/logo.png)](https://kmaheshkulkarni.github.io/corrly/) ## 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.](https://www.repostatus.org/badges/latest/wip.svg)](https://www.repostatus.org/#wip) [![lifecycle](https://img.shields.io/badge/lifecycle-maturing-blue.svg)](https://graph.network) [![CRAN status](https://www.r-pkg.org/badges/version/corrly)](https://CRAN.R-project.org/package=corrly) [Home page](https://github.com/kmaheshkulkarni/corrly/index.html)

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)



kmaheshkulkarni/corrly documentation built on Dec. 28, 2021, 11:57 a.m.