當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


R structure 屬性規範


R語言 structure 位於 base 包(package)。

說明

structure 返回給定對象並進一步設置attributes

用法

structure(.Data, ...)

參數

.Data

一個帶有各種屬性的對象。

...

屬性,以 tag = value 形式指定,將附加到數據中。

細節

添加類"factor" 將確保數字代碼采用整數存儲模式。

由於曆史原因(解析時使用這些名稱),屬性 ".Dim"".Dimnames"".Names"".Tsp"".Label" 重命名為 "dim""dimnames""names""tsp""levels"

可以多次給出相同的標簽,在這種情況下,最後分配的值獲勝。與分配屬性的其他方法一樣,使用 tag = NULL 會從 .Data 中刪除屬性 tag(如果存在)。

例子

structure(1:6, dim = 2:3)

參考

Becker, R. A., Chambers, J. M. and Wilks, A. R. (1988) The New S Language. Wadsworth & Brooks/Cole.

也可以看看

attributesattr

相關用法


注:本文由純淨天空篩選整理自R-devel大神的英文原創作品 Attribute Specification。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。