All Projects → juba → Explor

juba / Explor

Interfaces for Multivariate Analysis in R

Programming Languages

r
7636 projects

Projects that are alternatives of or similar to Explor

Highcharter
R wrapper for highcharts
Stars: ✭ 583 (+271.34%)
Mutual labels:  shiny, cran, htmlwidgets
Manipulatewidget
Add More Interactivity to htmlwidgets
Stars: ✭ 110 (-29.94%)
Mutual labels:  shiny, cran, htmlwidgets
Scatterd3
R scatter plot htmlwidget based on D3.js
Stars: ✭ 135 (-14.01%)
Mutual labels:  shiny, cran, htmlwidgets
rfrappe
htmlwidget for frappe charts js library
Stars: ✭ 24 (-84.71%)
Mutual labels:  shiny, htmlwidgets
vueR
vue.js for R
Stars: ✭ 131 (-16.56%)
Mutual labels:  shiny, htmlwidgets
MAVIS
MAVIS: Meta Analysis via Shiny
Stars: ✭ 32 (-79.62%)
Mutual labels:  cran, shiny
grillade
Grid sytem for shiny apps or rmarkdown and to create htmlwidgets matrix
Stars: ✭ 16 (-89.81%)
Mutual labels:  shiny, htmlwidgets
Rhandsontable
A htmlwidgets implementation of Handsontable.js
Stars: ✭ 320 (+103.82%)
Mutual labels:  shiny, htmlwidgets
rchess
♛ Chess package for R
Stars: ✭ 68 (-56.69%)
Mutual labels:  cran, htmlwidgets
Reactable
Interactive data tables for R
Stars: ✭ 345 (+119.75%)
Mutual labels:  shiny, htmlwidgets
Rintrojs
Wrapper for the Intro.js library
Stars: ✭ 96 (-38.85%)
Mutual labels:  shiny, cran
Shiny.i18n
Shiny applications internationalisation made easy
Stars: ✭ 104 (-33.76%)
Mutual labels:  shiny, cran
jsTreeR
A wrapper of the jQuery plugin `jsTree`.
Stars: ✭ 36 (-77.07%)
Mutual labels:  shiny, htmlwidgets
rAmCharts4
An R interface to amCharts 4
Stars: ✭ 26 (-83.44%)
Mutual labels:  shiny, htmlwidgets
d3Tree
htmlwidget that binds d3js collapsible trees to R and Shiny to make an interactive search tool
Stars: ✭ 79 (-49.68%)
Mutual labels:  shiny, htmlwidgets
lineup htmlwidget
HTMLWidget wrapper of LineUp for Visual Analysis of Multi-Attribute Rankings
Stars: ✭ 51 (-67.52%)
Mutual labels:  shiny, htmlwidgets
Flextable
table farming
Stars: ✭ 288 (+83.44%)
Mutual labels:  cran, htmlwidgets
Reactr
React for R
Stars: ✭ 227 (+44.59%)
Mutual labels:  cran, htmlwidgets
RagGrid
R interface to ag-grid.
Stars: ✭ 31 (-80.25%)
Mutual labels:  shiny, htmlwidgets
Dt
R Interface to the jQuery Plug-in DataTables
Stars: ✭ 451 (+187.26%)
Mutual labels:  shiny, htmlwidgets

explor

CRAN_Status_Badge CRAN Downloads R build status

explor is an R package to allow interactive exploration of multivariate analysis results.

For now on, it is usable the following types of analyses :

Analysis Function Package Notes
Principal Component Analysis PCA FactoMineR -
Correspondance Analysis CA FactoMineR -
Multiple Correspondence Analysis MCA FactoMineR -
Principal Component Analysis dudi.pca ade4 Qualitative supplementary variables are ignored
Correspondance Analysis dudi.coa ade4 -
Multiple Correspondence Analysis dudi.acm ade4 Quantitative supplementary variables are ignored
Specific Multiple Correspondance Analysis speMCA GDAtools Supplementary variables are not supported
Multiple Correspondance Analysis mca MASS Quantitative supplementary variables are not supported
Principal Component Analysis princomp stats Supplementary variables are ignored
Principal Component Analysis prcomp stats Supplementary variables are ignored
Correspondance Analysis textmodel_ca quanteda.textmodels Only coordinates are available

Features

For each type of analysis, explor launches a shiny interactive Web interface which is displayed inside RStudio or in your system Web browser. This interface provides both numerical results as dynamic tables (sortable and searchable thanks to the DT package) and interactive graphics thanks to the scatterD3 package. You can zoom, drag labels, hover points to display tooltips, hover legend items to highlights points, and the graphics are fully updatable with animations which can give some visual clues. You can also export the current plot as an SVG file or get the R code to reproduce it later in a script or document.

Here is a preview of what you will get. Note that the interface is available both in english and french, depending on your locale :

example

Installation

To get the stable version from CRAN :

install.packages("explor")

To install the latest dev version from GitHub :

install.packages("remotes")  # If necessary
remotes::install_github("juba/scatterD3")
remotes::install_github("juba/explor")

Usage

Usage is very simple : you just apply the explor function to the result of one of the supported analysis functions.

Example with a principal correspondence analysis from FactoMineR::PCA :

library(FactoMineR)
library(explor)

data(decathlon)
pca <- PCA(decathlon[,1:12], quanti.sup = 11:12, graph = FALSE)
explor(pca)

Example with a multiple correspondence analysis from FactoMineR::MCA:

data(hobbies)
mca <- MCA(hobbies[1:1000,c(1:8,21:23)],quali.sup = 9:10, quanti.sup = 11, ind.sup = 1:100)
explor(mca)

Documentation and localization

Two vignettes are provided for more detailed documentation :

Depending on your system locale settings, the interface is displayed either in english or in french (other languages can be easily added).

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].