reshapeExt(sparkTable)
reshapeExt()所属R语言包:sparkTable
Reshaping datasets
重塑数据集
译者:生物统计家园网 机器人LoveR
描述----------Description----------
reshapeExt() can be used to transform data that are already in 'long' format to the form that the data can be used by newSparkTable or newGeoTable.
reshapeExt()可以被用来转换数据中已经存在的“长”格式的形式,该数据可用于由newSparkTable或newGeoTable。
用法----------Usage----------
reshapeExt(x,timeValues=NULL,geographicVar=NULL,...)
参数----------Arguments----------
参数:x
data frame
数据框
参数:timeValues
if specified, vector of valid time-points
如果指定的话,矢量的有效时间点
参数:geographicVar
if specified, name of a variable in x holding regional information.
如果指定的话,在x区域信息的变量名称。
参数:...
additional parameter used for reshape()
额外的参数用于改造()
(作者)----------Author(s)----------
Bernhard Meindl, Alexander Kowarik, Statistics Austria
参见----------See Also----------
setParameter, getParameter,reshape
setParameter,getParameter,reshape
实例----------Examples----------
data(pop,package='sparkTable')
content <- list(
function(x) { round(mean(x),2) },
newSparkBox(), newSparkLine(), newSparkBar(),
function(x) { round(tail(x,1),2) })
names(content) <- paste('column',1:5,sep='')
varType <- rep('value',5)
pop <- pop[,c('variable','value','time')]
pop$time <- as.numeric(as.character(pop$time))
xx <- reshapeExt(pop, idvar='variable', varying=list(2))
x1 <- newSparkTable(xx, content, varType)
#plotSparkTable(x1, outputType='html', graphNames='o2',filename='t1')[plotSparkTable(X1,输出类型=html的,graphNames =氧气,FILENAME =T1)]
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|