导出 SAS 数据集中的变量类型
有没有简单的方法来捕获和导出 SAS 数据集中每个变量的类型?我将数据集导出为 CSV 格式以读入 R,如果后者还知道每个变量的数据类型,则后者中的 read.table
过程可以更有效地工作。
Is there any easy way to capture and export the type of each variable in a SAS dataset? I'm exporting a dataset to CSV format to read into R, and the read.table
procedure in the latter can work more efficiently if it also knows the data type of each variable.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
PROC CONTENTS 有一个 OUT= 选项来输出具有可变属性的数据集。 type=1 为数字,type=2 为字符。 HTH。
PROC CONTENTS has an OUT= option to ouput a dataset with variable attributes. type=1 is numeric and type=2 is character. HTH.