gpt4 book ai didi

csv - SAS proc 导出到 CSV : how to add double quotes

转载 作者:行者123 更新时间:2023-12-03 17:07:39 25 4
gpt4 key购买 nike

新来的,所以很抱歉。我在 SAS 中有一个文件,我需要将其导出为 CSV,并且需要为所有字段添加双引号。我怎样才能做到这一点?提前致谢。

最佳答案

有多种方法可以从 SAS 创建 CSV 文件。使用 proc export不会将每个字段都用双引号括起来,因此最简单的方法是 %ds2csv()宏。这假设您有 SAS 9.2 或更高版本。可以在此处找到它的文档:

http://support.sas.com/documentation/cdl/en/lrdict/64316/HTML/default/viewer.htm#a002683390.htm

运行它的一个例子:

%ds2csv(data=sashelp.retail, runmode=b, csvfile=c:\class.csv);

产生:
"Retail sales in millions of $","DATE","YEAR","MONTH","DAY"
"$220","80Q1","1980","1","1"
"$257","80Q2","1980","4","1"
"$258","80Q3","1980","7","1"

关于csv - SAS proc 导出到 CSV : how to add double quotes,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25572025/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com