Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save whizzalan/4cad8c8521080229492311a6ba7c6279 to your computer and use it in GitHub Desktop.
Save whizzalan/4cad8c8521080229492311a6ba7c6279 to your computer and use it in GitHub Desktop.

R Inhibit Interpretation/Conversion of Objects

tags: r

使用方法

class(x) #AsIs
unclass(x) #matrix

# can't using
x$dinames

# using
attr(x,"dimnames")

但是 Hadely 建議妳這樣使用 object attributes using list

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment