在 r 中将数字格式化为百分比(带有示例)
在 R 中将数字格式化为百分比的最简单方法是使用scales包中的percent()函数。该函数使用以下语法:
百分比(x, 精度 = 1)
金子:
- x:要格式化为百分比的对象。
- precision:要舍入的数字。例如,使用 0.01 四舍五入到小数点后两位。
本教程提供了该功能实际使用的几个示例。
示例 1:设置向量中百分比的格式
以下代码显示如何将向量中的数字格式化为百分比:
library (scales) #createdata data <- c(.3, .7, .14, .18, .22, .78) #format numbers as percentages percent (data, accuracy = 1 ) [1] "30%" "70%" "14%" "18%" "22%" "78%" #format numbers as percentages with one decimal place percent (data, accuracy = 0.1 ) [1] "30.0%" "70.0%" "14.0%" "18.0%" "22.0%" "78.0%" #format numbers as percentages with two decimal places percent (data, accuracy = 0.01 ) [1] "30.00%" "70.00%" "14.00%" "18.00%" "22.00%" "78.00%"
示例 2:设置数据框列中百分比的格式
以下代码显示如何将数据框列中的数字格式化为百分比:
library (scales)
#create data frame
df = data. frame (region = c('A', 'B', 'C', 'D'),
growth = c(.3, .7, .14, .18))
#view data frame
df
region growth
1 to 0.30
2 B 0.70
3 C 0.14
4 D 0.18
#format numbers as percentages in growth column
df$growth <- percent (df$growth, accuracy= 1 )
#view updated data frame
df
region growth
1 to 30%
2 B 70%
3 C 14%
4 D 18%
示例 3:设置多个数据框列中的百分比格式
以下代码显示如何将数据框的多列中的数字格式化为百分比:
library (scales)
#create data frame
df = data. frame (region = c('A', 'B', 'C', 'D'),
growth = c(.3, .7, .14, .18),
trend = c(.04, .09, .22, .25))
#view data frame
df
region growth trend
1 A 0.30 0.04
2 B 0.70 0.09
3 C 0.14 0.22
4 D 0.18 0.25
#format numbers as percentages in growth and trend columns
df[2:3] <- sapply (df[2:3], function (x) percent (x, accuracy= 1 ))
#view updated data frame
df
region growth trend
1 to 30% 4%
2 B 70% 9%
3 C 14% 22%
4 D 18% 25%
您可以在此页面上找到更多 R 教程。