找回密码
 注册
查看: 29066|回复: 1

R语言:nrow()函数中文帮助文档(中英文对照)

[复制链接]
发表于 2012-2-17 10:12:49 | 显示全部楼层 |阅读模式
nrow(base)
nrow()所属R语言包:base

                                        The Number of Rows/Columns of an Array
                                         阵列的行/列数

                                         译者:生物统计家园网 机器人LoveR

描述----------Description----------

nrow and ncol return the number of rows or columns present in x. NCOL and NROW do the same treating a vector as 1-column matrix.
nrow和ncol返回的行或列数目前在x。 NCOL和NROW不相同的1列矩阵当作一个向量。


用法----------Usage----------


nrow(x)
ncol(x)
NCOL(x)
NROW(x)



参数----------Arguments----------

参数:x
a vector, array or data frame
一个向量,数组或数据框


值----------Value----------

an integer of length 1 or NULL.
integer长度为1或NULL。


参考文献----------References----------

The New S Language. Wadsworth &amp; Brooks/Cole (<code>ncol</code> and <code>nrow</code>.)

参见----------See Also----------

dim which returns all dimensions; array, matrix.
dim返回所有尺寸;array,matrix。


举例----------Examples----------


ma <- matrix(1:12, 3, 4)
nrow(ma)   # 3[3]
ncol(ma)   # 4[4]

ncol(array(1:24, dim = 2:4)) # 3, the second dimension[3,第二个维度]
NCOL(1:12) # 1[1]
NROW(1:12) # 12[12]

转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。


注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
回复

使用道具 举报

发表于 2015-4-21 10:45:29 | 显示全部楼层
?nrow()
> ma <- matrix(1:12, 3, 4)
> nrow(ma)   # 找出矩阵ma的行数   3
[1] 3
> ncol(ma)   #找出矩阵ma的列数   4
[1] 4
> ma
     [,1] [,2] [,3] [,4]
[1,]    1    4    7   10
[2,]    2    5    8   11
[3,]    3    6    9   12
回复 支持 反对

使用道具 举报

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

本版积分规则

手机版|小黑屋|生物统计家园 网站价格

GMT+8, 2025-1-22 19:43 , Processed in 0.023158 second(s), 15 queries .

Powered by Discuz! X3.5

© 2001-2024 Discuz! Team.

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