SAS proc 导入缺少前导零

发布于 2024-12-10 10:35:34 字数 118 浏览 1 评论 0原文

我正在尝试使用 proc import ( SAS ) 将数字从 csv 文件导入到 sas 数据集,但导入后所有前导零都消失了。

例如,

导入后“0123456”我只会得到“123456”

I am trying to import numbers from csv file to sas dataset with proc import ( SAS ) , but all my leading zero are disappear after the import.

For example,

'0123456' after import I would get only '123456'

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

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

发布评论

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

评论(1

玻璃人 2024-12-17 10:35:34

如果您将它们作为数字字段读取,则只需对变量应用一种格式即可显示前导零。请记住,数字 012345 相当于数字 12345,因此没有理由存储前导零。尝试一下格式

z7.

. To display the zero in your example above.
If you really need the zeroes for some reason, and the number of digits is arbitrary, then you need to read them in as character variables instead.

If you are reading them in as numerical fields, you just need to apply a format to the variable to display the leading zeroes. Remember, the number 012345 is equivalent to the number 12345 so there's no reason to store the leading zero. Try the format

z7.

. To display the zero in your example above.
If you really need the zeroes for some reason, and the number of digits is arbitrary, then you need to read them in as character variables instead.

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