logo
  • 教程列表
  • SO官方文档
  • 可变长度
    • 为字符变量分配长度
  1. StackOverflow 文档
  2. sas 教程
  3. 可变长度
  4. 为字符变量分配长度

为字符变量分配长度

Created: November-22, 2018

data table;
set table;
length state_full $8;
if state = 'KS' then state_full = 'Kansas';
else if state = 'CO' then state_full = 'Colorado';
else state_full = 'Other';
run;
  • 可变长度

Copyright © 2018. All right reserved

tastones.com 备案号:鲁ICP备18045372号-1

  • 关于我们
  • 免责声明