在 R 中管理元数据的最佳方法是什么?

发布于 2024-10-01 15:28:40 字数 100 浏览 2 评论 0 原文

在分析数据时,有关变量的元数据极其重要。您如何在 R 中管理这些信息?

例如,有没有办法指定将打印的标签而不是变量名称?

R中有哪些工具可以实现这一点?

In analyzing data the metadata about variables is extremely important. How do you manage this information in R?

For example, is there a way to specify a label that will be printed instead of the variable name?

What facilities are there in R for this?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

巷子口的你 2024-10-08 15:28:40

我想到的快速建议是

  1. 将数据与对象一起存储的属性(正如 Frank Harrell 长期以来所倡导的那样),
  2. comment() 函数可以
  3. 在面向对象的整个范围内 完成其中的一部分实现不同的打印行为等

Quick suggestions that come to mind are

  1. attributes to store data along with an object (as Frank Harrell has championed for a long time)
  2. the comment() function can do parts of this
  3. the whole gamut of object-orientation to achieve different printing behaviour etc
傲娇萝莉攻 2024-10-08 15:28:40

使用repo包。您可以为每个变量分配一个长名称、描述、一组标签、远程 URL、依赖关系,还可以附加图形或通用外部文件。在 CRAN 上查找最新的稳定版本 (install.packages("repo")) 或在 此处。希望有帮助。

Use the repo package. You can assign each variable a long name, a description, a set of tags, a remote url, dependency relations and also attach to it figures or generic external files. Find the latest stable release on CRAN (install.packages("repo")) or the latest development on github. A quick overview here. Hope it helps.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文