通过实例和RCode从浅到深介绍ggplot2的语法。 1. 五脏俱全的散点图 library(ggplot2) # 表明我们使用diamonds数据集, ggplot(diamonds) + # 绘制散点图: 横坐标x为depth, 纵坐标y为price, 点的颜色通过color列区分,alpha透明度,size点大小,shape形状(实心正方形),stroke点边框的宽度 geom_point(aes(x = ca...
通过实例和RCode从浅到深介绍ggplot2的语法。 1. 五脏俱全的散点图 代码语言:javascript 复制 library(ggplot2)# 表明我们使用diamonds数据集,ggplot(diamonds)+# 绘制散点图:横坐标x为depth,纵坐标y为price,点的颜色通过color列区分,alpha透明度,size点大小,shape形状(实心正方形),stroke点边框的宽度geom_point(...
通过实例和RCode从浅到深介绍ggplot2的语法。 1. 五脏俱全的散点图# Copy library(ggplot2)# 表明我们使用diamonds数据集,ggplot(diamonds)+# 绘制散点图: 横坐标x为depth, 纵坐标y为price, 点的颜色通过color列区分,alpha透明度,size点大小,shape形状(实心正方形),stroke点边框的宽度geom_point(aes(x=carat,...
The example code below creates a bar chart from Boston snowfall data, and it has several lines of customizations that I’d like to use again with other data. The first code block is the initial graph:library(ggplot2)library(scales)library(rio)snowfall2000s <- import(“https://gist.githubu...
library(ggplot2) # load the data 载入数据 data("midwest", package = "ggplot2") # 显示数据 head(midwest) # Init Ggplot 初始化图像 # area and poptotal are columns in 'midwest' ggplot(midwest, aes(x=area, y=poptotal)) 1. 2.
setwd("E:\\QTL_mapping\\R_code") #设置文件夹 library(ggplot2) #加载ggplot2 library(ggnewscale) #加载ggnewscale,这块是为了分开后面两次不同绘图的颜色 mydata<-read.table("linkage_map_results.txt",sep="\t",header = TRUE)#加载数据 ...
library(palmerpenguins) penguins |> gg_histogram(x = body_mass_g, col = species) 使用ggblanket创建的直方图。 结果仍然是一个ggplot对象,这意味着您可以通过使用传统的ggplot2代码添加层来继续定制它。 ggblanket由David Hodge编写,可在CRAN上下载。
library(ggalluvial) # 用于绘制柱状图背后的条带 ra <- as.matrix(read.table("abundance.txt", row.names =1, header = F, sep = "\t")) # 读入相对丰度数据并转换为矩阵方便后续数据整理 1. 2. 3. 4. Note: 从左至右分组分别为JRZS0,JRZS2,NRZS0,NRZS2,XRZS0,XRZS2共6个分组。其中JR、NR...
1. 离散型 plot() + scale_colour_manual(values=c("red","blue"))修改轮廓配色 plot() + scale_fill_manual(values=c("red","blue"))修改填充配色 library("RColorBrewer")plot()++scale_colour_brewer(palette="Greens") Note: 可以通过scale_color_manual(value= c("name_1"="color_code_1", ...
前面介绍了一些ggplot绘图,ggplot2|从0开始绘制直方图,ggplot2|从0开始绘制箱线图,ggplot2|从0开始绘制折线图,这次介绍一下当数据为发散性正负值的时候,几种比较合适的展示方式。 一 载入数据并处理 代码语言:javascript 复制 library(ggplot2)# 使用mtcars数据集data("mtcars")# 保留car name ,新建一列 ...