# Install packages
if (!requireNamespace("data.table", quietly = TRUE)) {
install.packages("data.table")
}
if (!requireNamespace("jsonlite", quietly = TRUE)) {
install.packages("jsonlite")
}
if (!requireNamespace("ggplot2", quietly = TRUE)) {
install.packages("ggplot2")
}
# Load packages
library(data.table)
library(jsonlite)
library(ggplot2)Multiple Histograms
Note
Hiplot website
This page is the tutorial for source code version of the Hiplot Multiple Histograms plugin. You can also use the Hiplot website to achieve no code ploting. For more information please see the following link:
Multiple histograms are plotted on the same graph to compare differences between multiple sets of data.
Setup
System Requirements: Cross-platform (Linux/MacOS/Windows)
Programming language: R
Dependent packages:
data.table;jsonlite;ggplot2
sessioninfo::session_info("attached")β Session info βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
setting value
version R version 4.5.2 (2025-10-31)
os Ubuntu 24.04.3 LTS
system x86_64, linux-gnu
ui X11
language (EN)
collate C.UTF-8
ctype C.UTF-8
tz UTC
date 2026-01-17
pandoc 3.1.3 @ /usr/bin/ (via rmarkdown)
quarto 1.8.27 @ /usr/local/bin/quarto
β Packages βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
package * version date (UTC) lib source
data.table * 1.18.0 2025-12-24 [1] RSPM
ggplot2 * 4.0.1 2025-11-14 [1] RSPM
jsonlite * 2.0.0 2025-03-27 [1] RSPM
[1] /home/runner/work/_temp/Library
[2] /opt/R/4.5.2/lib/R/site-library
[3] /opt/R/4.5.2/lib/R/library
* ββ Packages attached to the search path.
ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
Data Preparation
# Load data
data <- data.table::fread(jsonlite::read_json("https://hiplot.cn/ui/basic/multiple-histograms/data.json")$exampleData$textarea[[1]])
data <- as.data.frame(data)
# View data
head(data) type value
1 v1 3.059937
2 v1 1.907186
3 v1 4.278629
4 v1 3.834794
5 v1 5.493830
6 v1 1.380032
Visualization
# Multiple Histograms
p <- ggplot(data, aes(x = value, fill = type)) +
geom_histogram(color = "black", alpha = 0.5,
position = "identity", binwidth = 0.3) +
scale_fill_manual(values = c("#BC3C29FF","#0072B5FF")) +
theme_bw()
p
