当前位置:网站首页>R HISTOGRAM EXAMPLE QUICK REFERENCE
R HISTOGRAM EXAMPLE QUICK REFERENCE
2022-07-02 09:38:00 【小宇2022】
library(tidyverse)
theme_set(
theme_bw() +
theme(legend.position = "top")
)
head(iris, 3)
iris.gathered <- iris %>%
as_data_frame() %>%
gather(key = "variable", value = "value",
-Sepal.Length, -Species)
head(iris.gathered, 3)
ggplot(iris.gathered, aes(x = value, y = Sepal.Length)) +
geom_point(aes(color = Species)) +
facet_wrap(~variable)+
scale_color_viridis_d()
set.seed(1234)
wdata = data.frame(
sex = factor(rep(c("F", "M"), each=200)),
weight = c(rnorm(200, 55), rnorm(200, 58))
)
head(wdata, 4)
hist(wdata$weight, breaks = 30, col = "steelblue", frame = FALSE)
library(ggplot2)
theme_set(theme_bw())
# Basic plot
ggplot(wdata, aes(x = weight)) +
geom_histogram(bins = 30)
# Change fill color by sex group
ggplot(wdata, aes(x = weight)) +
geom_histogram(aes(fill = sex), bins = 30, alpha = 0.5,
position = position_dodge()) +
scale_fill_viridis_d()
library(ggpubr)
# Basic plots
gghistogram(wdata, x = "weight", fill = "steelblue", alpha = 1)
# Change color by sex group
gghistogram(
wdata, x = "weight", color = "sex",
palette = c("#00AFBB", "#E7B800")
)
边栏推荐
- Homer预测motif
- Some suggestions for young people who are about to enter the workplace in the graduation season
- tidb-dm报警DM_sync_process_exists_with_error排查
- 原生方法合并word
- Principe du contrat évolutif - delegatecall
- SSRF
- Is bond fund safe? Does the bond buying foundation lose principal?
- PowerBI中导出数据方法汇总
- TIPC Service and Topology Tracking4
- TDSQL|就业难?腾讯云数据库微认证来帮你
猜你喜欢
MTK full dump grab
数字化转型挂帅复产复工,线上线下全融合重建商业逻辑
Jinshanyun - 2023 Summer Internship
Verilog and VHDL signed and unsigned number correlation operations
Tick Data and Resampling
Always report errors when connecting to MySQL database
PYQT5+openCV项目实战:微循环仪图片、视频记录和人工对比软件(附源码)
PKG package manager usage instance in FreeBSD
TIPC addressing 2
MySQL linked list data storage query sorting problem
随机推荐
Redis超出最大内存错误OOM command not allowed when used memory &gt; 'maxmemory'
Principe du contrat évolutif - delegatecall
三.芯片啟動和時鐘系統
Webauthn - official development document
bedtools使用教程
Native method merge word
webauthn——官方开发文档
Resources reads 2D texture and converts it to PNG format
Is it safe to open a stock account through the QR code of the securities manager? Or is it safe to open an account in a securities company?
TDSQL|就业难?腾讯云数据库微认证来帮你
Tick Data and Resampling
spritejs
【云原生】2.5 Kubernetes 核心实战(下)
PX4 Position_Control RC_Remoter引入
电脑无缘无故黑屏,无法调节亮度。
Summary of data export methods in powerbi
The difference between SQL left join main table restrictions written after on and where
Win11 arm system configuration Net core environment variable
Principle of scalable contract delegatecall
从ros1到ros2配置的一些东西