R Programming Week 3 Quiz & Ans

这篇博客主要围绕R语言的统计和循环功能展开,通过一系列的问题和答案来探讨如何使用R计算数据集 iris 和 mtcars 的平均值。涉及的函数包括 apply、colMeans、rowMeans、tapply、with 及其在不同情况下的应用。同时,还讨论了ls函数在执行中的行为。
摘要由CSDN通过智能技术生成

Q1:

Take a look at the 'iris' dataset that comes with R. The data can be loaded with the code:

> library(datasets)
> data(iris)

A description of the dataset can be found by running

>?iris

There will be an object called 'iris' in your workspace. In this dataset, what is the mean of 'Sepal.Length' for the species virginicaPlease round your answer to the nearest whole number.(取整数)

(Only enter the numeric result and nothing else.)

ANSWER:

#直接使用mean函数,mean(x),用[]来取特定值
> mean(iris[iris$Species == "virginica",]$Sepal.Length)
[1] 6.588

or:

#或者使用tapply函数,tapply(vector, index, function):
> tapply(iris$Sepal.Length,iris$Species=="virginica",mean)

FALSE  TRUE 
评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值