r normalize.r

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了r normalize.r相关的知识,希望对你有一定的参考价值。

#A simple function to normalize a variable to range(0,1)

normalize <- function(x) {
return ((x - min(x)) / (max(x) - min(x)))
}

#Can be apply to Stata as follows: here `college_degree` is rate of college degree in each state
egen maxcoll = max(college_degree_round )
egen mincoll = min(college_degree_round )
ge college_degree_normalize = (college_degree - mincoll )/(maxcoll - mincoll )

以上是关于r normalize.r的主要内容,如果未能解决你的问题,请参考以下文章

——R的数据组织

+-r, +-s 的所有排列

shinydashboard ui.R 和 server.R 未读取 Global.R

R语言计算回归模型R方(R-Squared)实战

r语言中r-studio怎么调用

R电子书资料《学习R》+《R语言实战第2版》+《R数据科学》学习推荐