找回密码
 立即注册
查看: 3606|回复: 1

【【期末考试R语言考试】】希望有大神可以帮忙

[复制链接]
发表于 2013-12-16 19:59:28 | 显示全部楼层 |阅读模式
> basic.stats <- function(x,more=F) {
+ stats <- list()
+
+ clean.x <- x[!is.na(x)]
+
+ stats$n <- length(x)
+ stats$nNAs <- stats$n-length(clean.x)
+
+ stats$mean <- mean(clean.x)
+ stats$std <- sd(clean.x)
+ stats$med <- median(clean.x)
+ if(more) {
+ stats$skew <- sum(((clean.x-stats$mean)/stats$std)^3)/
+ length(clean.x)
+ stats$kurt <- sum(((clean.x-stats$mean)/stats$std)^4)/
+ length(clean.x) - 3
+ }
+ unlist(stats)
+ }
上面那些R语言的作用是什么   希望大神帮忙啊!!  
回复

使用道具 举报

 楼主| 发表于 2013-12-20 22:17:49 | 显示全部楼层
自顶!  希望有人帮忙  哪怕提醒一点也可以。  比如more=F是什么意思?  list要列什么东西才能出现一个结果。。。求帮忙啊。。。。
回复

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

Archiver|手机版|小黑屋|R语言中文网

GMT+8, 2024-11-25 08:35 , Processed in 0.026927 second(s), 18 queries .

Powered by Discuz! X3.5

© 2001-2024 Discuz! Team.

快速回复 返回顶部 返回列表