|
PROC 결과를 저장하는 file
CONTENTS= TOC(table of contents) file 생성(toc.html)
(body file과 link)
FRAME= frame file 생성(frame.html)
PAGE=
options
PATH=
STYLE=
ex) Body file 생성
ods html body='c:\work\admit.html';
proc print data=clinic.admit label;
var sex age height weight actlevel;
label actlev
|
- 페이지 24페이지
- 가격 1,000원
- 등록일 2003.12.17
- 파일종류 한글(hwp)
- 참고문헌 없음
- 최근 2주 판매 이력 없음
|
|
proc format cntlin=zip;
data example;
input zip $ @@;
format zip $zipcode.;
datalines;
134 437 142 600 612 704
proc print; run;
실습)
다음은 종합볍원 응급전화자료이다. 전화번호중 지역번호를 지역명으로 아래와 같이 출력하시오. (PROC FORMAT 사용)
병원병 전화번호
고려
|
- 페이지 9페이지
- 가격 1,000원
- 등록일 2003.12.17
- 파일종류 한글(hwp)
- 참고문헌 없음
- 최근 2주 판매 이력 없음
|
|
proc print;
proc freq order=data;
weight count;
format belief $bfmt.;
table gender*belief;
run;
Summary
사용형식
PROC FREQ DATA=SAS-data-set ORDER=option;
TABLES requests / options;
BY varnames;
WEIGHT variable;
FORMAT statement;
ORDER=options
FREQ 도수가 큰 범주형 변수값부터 출력한다
DATA 입력
|
- 페이지 6페이지
- 가격 700원
- 등록일 2003.12.17
- 파일종류 한글(hwp)
- 참고문헌 없음
- 최근 2주 판매 이력 없음
|
|
proc print label data=age noobs ;
508 var name age victories_2003 earnings_2003 eranings_career;
509 title 'LPGA Tour 기록자료';
510 label victories_2003='2003 Victories';
511 label earnings_2003='2003 Earnings';
512 label eranings_career='Career Earnings';
513 run;
NOTE: 5개의 관측치를 데이터셋 WOR
|
- 페이지 10페이지
- 가격 1,000원
- 등록일 2003.12.17
- 파일종류 한글(hwp)
- 참고문헌 없음
- 최근 2주 판매 이력 없음
|
|
printf(" %s\n", result2);
}
fclose(fp);
}
void num_proc(char *filename){ // 현재 사용되는 프로세서의 수를 세는 함수
int i;
FILE *fp = fopen(filename, "r");
if(fp == NULL){
notopen(filename);
return;
}
if(fgets(result1, MAX+1, fp) != NULL)
for(i=15; result1[i]!='/'; i++)
printf(" %c\n", result1[i]);
|
- 페이지 11페이지
- 가격 800원
- 등록일 2003.10.18
- 파일종류 한글(hwp)
- 참고문헌 없음
- 최근 2주 판매 이력 없음
|