gpt4 book ai didi

sas - 如何使用SAS将字符串拆分为两个变量

转载 作者:行者123 更新时间:2023-12-04 19:37:43 25 4
gpt4 key购买 nike

  • 我有一个数据集如下:
    country
    United States, Seattle
    United Kingdom, London

  • 如何将国家/地区拆分为 SAS 中的数据,例如:
        country                  city
    United States Seattle
    United Kingdom London

    最佳答案

    使用带有逗号作为分隔符的函数 SCAN()。

    data test;
    set test;
    city=scan(country,2,',');
    country=scan(country,1,',');
    run;

    关于sas - 如何使用SAS将字符串拆分为两个变量,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20505871/

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