R语言格式化百分比数据

(一)通过函数实现百分比格式化

# 百分比格式化

format_percnet <-function(x){return(paste0(format(x*100,digits = 2),"%"))}

你可能感兴趣的:(R语言格式化百分比数据)