delivery(robustbase)
delivery()所属R语言包:robustbase
Delivery Time Data
交货时间数据
译者:生物统计家园网 机器人LoveR
描述----------Description----------
Delivery Time Data, from Montgomery and Peck (1982). The aim is to explain the time required to service a vending machine (Y) by means of the number of products stocked (X1) and the distance walked by the route driver (X2).
交货时间的资料显示,从蒙哥马利和派克(1982)。宗旨是解释服务自动售货机(Y)由进货的产品(X1)和距离的数目的装置所需要的时间的路由驱动器(X2),由走。
用法----------Usage----------
data(delivery)
格式----------Format----------
A data frame with 25 observations on the following 3 variables.
一种数据框与25上的以下3个变量的观测。
n.prod Number of Products
n.prod产品数量
distance Distance
distance距离
delTime Delivery time
delTime交货时间
源----------Source----------
Montgomery and Peck (1982, p.116)
蒙哥马利,“佩克(1982年,第116页)
参考文献----------References----------
Robust Regression and Outlier Detection; Wiley, page 155, table 23.
实例----------Examples----------
data(delivery)
summary(lm.deli <- lm(delTime ~ ., data = delivery))
delivery.x <- as.matrix(delivery[, 1:2])
c_deli <- covMcd(delivery.x)
c_deli
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|