일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 | 31 |
- 번역
- cs231n
- 답변
- 질문
- 세상
- 매크로
- neural networks
- 한국어
- 딥러닝
- 사랑
- SAS
- 강화학습
- Artificil Intelligence
- 행복
- 꿈
- SQL
- tutorials
- 인공지능
- tensorflow
- 신경망
- Reinforcement Learning
- Andrej Karpathy
- deep learning
- Tutorial
- machine learning
- openai
- Hvass-Lab
- 머신러닝
- TensorFlow Tutorials
- DeepLearning
- Today
- Total
목록SAS/SAS 질문과 답변 (34)
Economics & Deeplearning
안녕하세요. 한 텍스트 주소변수가 있습니다. 이 변수를 공백을 기준으로 여러변수로 쪼갤수 있을까요? 예>x서울 강서구 염창동 x1 x2 x3서울 강서구 염창동 이런식으로요 주소 데이터기 때문에 각각의 주소마다 생성되는 변수의 수는 다른 상황입니다. ================================================================================data temp; infile cards dsd; input x $30.; cards; 서울 강서구 염창동 ; data temp1; set temp; x1=scan(x,1,' '); x2=scan(x,2,' '); x3=scan(x,3,' '); run;
%macro prtlast;proc print data=&syslast (obs=5);title "Listing of &syslast data set";run;%mend;data sales;price_code=1;run;options mprint mlogic;%prtlast을 실행하면 로그창에MPRINT(PRTLAST): proc print data=WORK.SALES (obs=5);MPRINT(PRTLAST): title "Listing of WORK.SALES data set";MPRINT(PRTLAST): run;Work.sales뒤에 공란은 왜생길까요?==================================================================================..
sas 왕 초보입니다. 이제서야 겨우겨우 책 보고 하나하나 해가는 >.
안녕하세요^^?또 도움 받고자 들렸습니다. 시작일종료일a 2009.01.01 2010.04.02 a 2008.01.01 2008.12.31 a 1998.02.01 2008.01.01 b 1998.02.01 2005.12.31 c 2009.01.01 9999.12.31 c 2008.01.01 2008.12.31 c 2003.02.01 2008.01.01 이 것이 자료이고이 자료를 이용해 시작일종료일1998199920002001200220032004200520062007200820092010201120122013a 2009.01.01 2010.04.02 nnnnnnnnnnnyynnna 2008.01.01 2008.12.31 nnnnnnnnnnynnnnna 1998.02.01 2008.01.01 yyyyyyy..