Recent Posts
Recent Comments
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- 신경망
- machine learning
- 인공지능
- 매크로
- neural networks
- DeepLearning
- Artificil Intelligence
- Tutorial
- cs231n
- 세상
- openai
- 사랑
- deep learning
- 꿈
- SQL
- tensorflow
- 번역
- Reinforcement Learning
- Andrej Karpathy
- 질문
- SAS
- 딥러닝
- 강화학습
- 한국어
- 행복
- tutorials
- 답변
- 머신러닝
- TensorFlow Tutorials
- Hvass-Lab
Archives
- Today
- Total
Economics & Deeplearning
sas에 일별로 데이터가있을때 주별합계내는방법 본문
안녕하세요 예를들어 이런데이터가있다고하겠습니다 (연월일) (판매량) 20090101 333 20090102 234 20090103 455 . . . 이렇게 일별로된 약3년데이터가있을때 주단위로 합계가 나온 파일을 만들고싶습니다 어떤방법이 있을까요....! |
================================================================================
data temp;
input a b;
cards;
20090101 123
20090102 234
20090103 345
20090114 243
20090115 293
20090117 239
20100307 123
20100308 345
;
run;
data temp1;
set temp;
date=input(put(a,z8.),yymmdd8.);
year=year(date);
month=month(date);
week=intck('week',intnx('month',date,0),date)+1;
run;
proc sort data=temp1;
by year month week;
run;
proc means data=temp1 noprint;
var b;
by year month week;
output out=xxx sum=sums;
run;
'SAS > SAS 질문과 답변' 카테고리의 다른 글
데이터처리(이름 중복, 값이 있는 데이터만 고르기) (0) | 2016.02.21 |
---|---|
data step 부분 ㅠㅠ 도와주세요 (0) | 2016.02.21 |
yyyymmdd 라는 연월일 숫자에 해당하는 요일변수를 추가하는방법이 궁금합니다! (0) | 2016.02.20 |
안녕하세요. sas base 질문 드립니다. (0) | 2016.02.20 |
자료의 열 위치가 다를 경우, input 문을 어떻게 해야 하나요? (0) | 2016.02.20 |
Comments