Intrduction
This article describes how to create an interactive boxplot in R using the highcharter R package.
Contents:
Loading required R packages
# Load required R packages
library(dplyr)
library(highcharter) 
# Set highcharter options
options(highcharter.theme = hc_theme_smpl(tooltip = list(valueDecimals = 2)))Data preparation
data("ToothGrowth")
ToothGrowth$dose <- as.factor(ToothGrowth$dose)
head(ToothGrowth, 4)##    len supp dose
## 1  4.2   VC  0.5
## 2 11.5   VC  0.5
## 3  7.3   VC  0.5
## 4  5.8   VC  0.5Horizontal boxplots
hc <- hcboxplot(
  x = ToothGrowth$len,
  var = ToothGrowth$dose,
  name = "Tooth Length", 
  color = "#2980b9"
  ) hcVertical boxplots
hc <- hcboxplot(
  x = ToothGrowth$len,
  var = ToothGrowth$dose,
  outliers = FALSE,
  color = "#2980b9"
  ) %>% 
  hc_chart(type = "column")hcGrouped boxplots
hc <- hcboxplot(
  x = ToothGrowth$len,
  var = ToothGrowth$dose,
  var2 = ToothGrowth$supp,
  outliers = FALSE
  ) %>% 
  hc_chart(type = "column")hcRecommended for you
This section contains best data science and self-development resources to help you on your path.
Books - Data Science
Our Books
- Practical Guide to Cluster Analysis in R by A. Kassambara (Datanovia)
- Practical Guide To Principal Component Methods in R by A. Kassambara (Datanovia)
- Machine Learning Essentials: Practical Guide in R by A. Kassambara (Datanovia)
- R Graphics Essentials for Great Data Visualization by A. Kassambara (Datanovia)
- GGPlot2 Essentials for Great Data Visualization in R by A. Kassambara (Datanovia)
- Network Analysis and Visualization in R by A. Kassambara (Datanovia)
- Practical Statistics in R for Comparing Groups: Numerical Variables by A. Kassambara (Datanovia)
- Inter-Rater Reliability Essentials: Practical Guide in R by A. Kassambara (Datanovia)
Others
- R for Data Science: Import, Tidy, Transform, Visualize, and Model Data by Hadley Wickham & Garrett Grolemund
- Hands-On Machine Learning with Scikit-Learn, Keras, and TensorFlow: Concepts, Tools, and Techniques to Build Intelligent Systems by Aurelien Géron
- Practical Statistics for Data Scientists: 50 Essential Concepts by Peter Bruce & Andrew Bruce
- Hands-On Programming with R: Write Your Own Functions And Simulations by Garrett Grolemund & Hadley Wickham
- An Introduction to Statistical Learning: with Applications in R by Gareth James et al.
- Deep Learning with R by François Chollet & J.J. Allaire
- Deep Learning with Python by François Chollet
Version: 
     Français
Français
 
                                 
                             
					
No Comments