오늘로 독학 이틀째..
역시나 안개속을 열심히 걸어다니는 느낌이다. 흐흑...

♥♥♥♥♥
/* 시스템 파일을 작성하는 예 */                                                                                                        
                                                                                                                                       
LIBNAME kkk 'e:\sastest';                                                                                                              
DATA a1; INPUT x y;                                                                                                                    
CARDS;                                                                                                                                 
1 2                                                                                                                                    
3 4                                                                                                                                    
;                                                                                                                                      
DATA kkk.b1; SET a1;                                                                                                                   
xy = x+y;                                                                                                                              
PROC PRINT; VAR x y;                                                                                                                   
RUN;                                                                                                                                   
♥♥♥♥♥
                                                        SAS 시스템                                                        1

                                                       OBS    x    y

                                                        1     1    2
                                                        2     3    4

♥♥♥♥♥
라이브러리 이름은 물리적 위치로는 'e\sastest' 폴더에, kkk로 명명한다.
a1이라는 이름의 데이터를 만들고, 입력되는 변수는 x y 두개이다.
자료들
1 2 .. 1번자료 x는 1, y는 2
3 4 .. 2번자료 x는 3, y는 4
자료 끝
kkk.b1이라는 이름의 데이터를 만들자. 변수는 a1에서 셋팅된 것으로 쓴다.
xy는 x에 y를 더한 것이다
출력하자. 변수 x와 y를.
돌려돌려
♥♥♥♥♥


LIBNAME이 뭐지
도움말을 확인해봤다. 아 영어다..ㄱ-;

LIBNAME Function: Windows
LIBNAME 기능: 윈도우즈
--------------------------------------------------------------------------------

Assigns or clears a libref for a SAS data library Category: SAS File I/O 
Windows specifics: behavior of the' ' libref (a space between single quotation marks) 
See: LIBNAME Function in SAS Language Reference: Dictionary 

SAS 데이터 라이브러리 목록을 위한 libref(library referance의 약어인 듯; 라이브러리 영역)을 할당하거나 지운다:
윈도우 환경에서 SAS 파일 I/O(input/output; 입출력):
그 ' '안의 libfef(하나의 인용 마크 사이 공간)을 보고 수행한다:
SAS 언어 참조 내 Libname 기능 : 사전
--------------------------------------------------------------------------------
Syntax 구문
Details 세부사항

--------------------------------------------------------------------------------
 
Syntax 구문
LIBNAME(libref<,SAS-data-library<,engine<,options>>>) 
LIBNAME(libref<,SAS의 데이터 라이브러리<, 엔진<. 옵션>>>)


libref
specifies the libref that is assigned to a SAS data library. Under Windows, the value of libref can be an environment variable.
libref를 조건으로 지정해서 SAS 데이터 라이브러리에 할당한다. 윈도우즈 하에서, libref는 환경 변수로 쓰여질 수 있다.

SAS-data-library
specifies the physical name of the SAS data library that is associated with the libref.
SAS 데이터 라이브러리의 물리적인 이름을 지정하며 libref와 함께 사용된다.

engine
specifies the engine that is used to access SAS files opened in the data library.
엔진을 지정하는 것은 SAS 파일을 데이터 라이브러리속에서 꺼내어 접속한다.

options
names one or more options honored by the specified engine, delimited with blanks.
특별한 엔진에 하나 이상의 옵션의 이름을 사용하며, 공란으로 한계를 정한다.

--------------------------------------------------------------------------------
 
Details 세부사항


If the LIBNAME function returns a 0, then the function was successful. However, you could receive a non-zero value, even if the function was successful.
A non-zero value is returned if an error, warning, or note is produced.
To determine if the function was successful, look through the SAS Log and use the following guidelines:
If a warning or note was generated, then the function was successful.
If an error was generated, then the function was not successful.
Under Windows, if you do not specify a SAS-data-library or if you specify a SAS-data-library
as ' ' (a space between single quotation marks) or '' (no space between single quotation marks), SAS deassigns the libref.

만약 LIBNAME 기능이 0을 반환하면, 기능은 성공적으로 수행된 것이다. 그러나 0이 아닌 값을 반환 받았어도 기능이 성공적으로 수행된다.
0이 아닌 값은 문제점, 경고 또는 노트를 돌려준다.
만약 기능이 성공적으로 수행되었다면, SAS 로그를 훑어보고, 지시를 따라가면 된다:
만약 경고나 노트가 만들어졌을때는 기능이 성공적으로 수행된것이다.
만약 에러가 만들어졌다면 기능은 성공적으로 수행되지 못한 것이다.
윈도우즈 환경 하에서, SAS 데이터 라이브러리를 자세히 쓸 수 없거나, ' '(' ' 사이의 공간) 또는 ''(' ' 사이에 공간 없음) 같은 SAS 데이터 라이브러리에 기술한다면,
SASrk libref를 지정할 수 없는 것이다.

음.. 뭔소린지 모르겠다. 대충 느끼기에는 라이브러리 목록안에 새 목록을 만들거나 지운다는 얘기같다.
우리가 새폴더를 만들거나 폴더 삭제를 하듯이..
기능적으로 0을 반환하면 명령어가 잘 돌아가는 것이고, 0을 반환하지 않고 에러 메시지를 띄우면 잘 찾아서 확인해보라는것 같다.

결과값을 보면, xy에 대한 값은 출력되지 않는다. 우리가 연산을 안한게 아닌데...
이를 출력하기 위해서는 이 문장이 필요하다고 한다.

♥♥♥♥♥
libname kkk 'e:\sastest';                                                                                                              
proc print data=kkk.b1;                                                                                                                
run;
♥♥♥♥♥
                                                        SAS 시스템                                                        5

                                                    OBS    x    y    xy

                                                     1     1    2     3
                                                     2     3    4     7
♥♥♥♥♥
라이브러리 이름 kkk, 위치는 'e:\sastest'에 지정한다;
출력하자. kkk.b1의 데이터를. (kkk.b1에 우리는 xy=x+y를 연산해 주었었다. 그런데, 그냥 이 문장만 쓰면 자동으로 출력해준단 말인가.. 전부 다 나오면, 생략하고 싶은 건 어찌해야 하나..)
돌려돌려;
♥♥♥♥♥

이번에는 라이브러리를 마우스로 손 쉽게 만드는 법을 설명하고 있다.
왼쪽에 탐색기가 '활성 라이브러리' 가리키도록 한다. 거기에 마우스 오른쪽 버튼을 누르고 '새로 만들기'를 클릭한다.

사용자 삽입 이미지

우리가 libname kkk; 'e:\sastest'; 라고 쓴 명령어를 쉽게 만들어 놓았다는 느낌이 들지 않는가.
일단 이름란이 kkk 일꺼고, 엔진은 설정하지 않았지만, 도움말에 있는 것을 보았을 것이다. 아 도움말을 끌고와서 비교해보자.

Syntax 구문
LIBNAME(libref<,SAS-data-library<,engine<,options>>>) 
LIBNAME(libref<,SAS의 데이터 라이브러리<, 엔진<. 옵션>>>)

자 이게 구문인데,
sas-data-library가 kkk에 해당되는 부분이고,
engine이 engine이겠지? 물론 건드리지 않았으니 default일 것이고,
경로가 'e:\sastest'로 썼던거 그 부분일것이고,
옵션은 options 인데, 아는 옵션이 없어서 안 썼으니, 무 옵션으로 처리되었을 것이다.

이렇게 치고 확인을 누르면 활성 라이브러리 창에 kkk2라는 목록이 생긴다. 이름을 이미지와 같이 kkk2로 만들었다면 말이다.

SAS를 시작할 때마다 이런 라이브러리 이름을 지정해줘야 한다. 이걸 자동으로 하고 싶은 사람도 있을 것이다.
SAS가 처음 로더될때 자동적으로 실행되는 명령문을 적어주는 파일이 있단다.
autoexec.sas라는 파일이란다.
메모장에 libname test 'e:\sample' 이라고 치고 sas를 실행한 후 탐색기를 보면 test가 생성된다고 한다.

다시 책으로 돌아가니, 그 다음 배울 부분은 option 창이다.
참고로 지금 있는 과의 내용은 sas 윈도우 사용법이다.

환경을 우리가 사용하기 편하게 customize 할 수 있다고 한다.
F11을 누르고 입력창에다가 options 라고 입력해보자. 짜쟌 옵션이 열린다. +_+
로그와 프로시저 출력>sas 로그와 프로시저 출력으로 가보자.
살짝 살펴볼까?
Date : 1이면 sas 결과 상단에 날짜가 프린트된다. 0이면 물론 안나온다.
Linesize : 130이면 한 줄에 130 글자가 프린트 된다. 난 123으로 되어 있으니..모 123자겠지..ㅋㅋ
Number ; 1로 되어 있으면 프린트 될 때 1페이지부터 시작한다. 0이면 아마도 페이지가 출력되지 않는 것 같다.
Pagesize : 47이면 한 페이지에 47줄이 프린트 된다. 난 66이니 66줄이 프린트 되겠군.. 근데 왜 하필 숫자가.. ㄱ-

참고로 단축키로 창을 끄려면 ctrl+F4이다. 마우스가 귀찮은 나 같은 사람은 알아두면 편하다.
(원래 마우스가 편했는데, 군복무할때 보급병으로 복무하면서 행정일을 많이하다보니... 아마 행정직 병과를 받은 사람은 이해할 수 있을 듯;)

사람에 따라서는 출력을 다양한 방법으로 많이 사용해야 할 지 모른다.
그래서인지는 몰라도, 프로그램문에 options문을 활용해서 이를 처리할 수 있다.
일일이 바꿔주지 않고 프로그램마다 원하는대로 출력 설정을 할 수 있다는 것은 굉장히 편한 것이다. +_+

자 비교비교 해보자.

1) option문을 사용하지 않은 경우
♥♥♥♥♥
data a1; input x y;                                                                                                                    
cards;                                                                                                                                 
1 2                                                                                                                                    
3 4                                                                                                                                    
;                                                                                                                                      
proc print; var x y;                                                                                                                   
run;                                                                                                                                   
♥♥♥♥♥
                                                        SAS 시스템                                                        6

                                                       OBS    x    y

                                                        1     1    2
                                                        2     3    4
♥♥♥♥♥


2) option문을 사용한 경우
♥♥♥♥♥
option date;
data a1; input x y;                                                                                                                    
cards;                                                                                                                                 
1 2                                                                                                                                    
3 4                                                                                                                                    
;                                                                                                                                      
proc print; var x y;                                                                                                                   
run;                                                                                                                                   
♥♥♥♥♥
                                                        SAS 시스템            2007년 02월 16일 금요일 오후 12시12분57초   7

                                                       OBS    x    y

                                                        1     1    2
                                                        2     3    4
♥♥♥♥♥

차이가 보이는가? option date; 라는 문장 하나가 결과 값에서 날짜를 출력하게 만들었다.
책은 날짜를 없애도록 option nodate; 라고 입력하게 되어 있는데, 나는 옵션에 날짜가 꺼져 있게 설정 되어있어서 date문을 입력했다.

자! 유의깊게 본 사람에게 묻는다. 아까전부터 출력 결과에 신경 살짝 쓰이는 것 있지 않은가?
개인적으로 만들면서 살짝 짜증이 밀려오고 있다. 저 출력 페이지숫자, 계속 증가하고 있다!!!!
대체 어찌 줄이는거야!!! 라고 생각이 파도치는데 책에 옵션으로 설명이 나왔다.

한 번 해보자. 짜증 한 큐에 날려보자!
♥♥♥♥♥
option date pageno=1;
data a1; input x y;                                                                                                                    
cards;                                                                                                                                 
1 2                                                                                                                                    
3 4                                                                                                                                    
;                                                                                                                                      
proc print; var x y;                                                                                                                   
run;                                                                                                                                   
♥♥♥♥♥

                                                        SAS 시스템            2007년 02월 16일 금요일 오후 12시12분57초   1

                                                       OBS    x    y

                                                        1     1    2
                                                        2     3    4
♥♥♥♥♥
option date에 pageno=1가 추가되었다.
option date;
option pageno=1;
로 써도 상관은 없겠지만, SAS 프로그램은 한 방에 주욱 쓸 수 있게 처리가 되는 것으로 나타났다.
웹 페이지 디자인 하다보면, embed 문장 같은데 width=500 height=400 이런 식으로 이어 쓰지 않는가. 그런 경우라고 보면 되겠다.
편하다.. ㅡㅅ-.. 므흣..

오 이번엔 조금 어려운 문장이다.
연산에 대해서 조금 배울 수 있으려나.
linesize 옵션에 관한 내용인데, 우린 그 이상을 배워야겠지?

1) Linesize 옵션을 적용하기 전
♥♥♥♥♥
data a1; input x1 @@; cards;                                                                                                           
1 2 3 4 5                                                                                                                              
proc means n mean std min max stderr sum var cv maxdec=3;                                                                              
run;                                                                                                                                   
♥♥♥♥♥
                                                        SAS 시스템            2007년 02월 16일 금요일 오후 12시12분57초   2

                                                      MEANS 프로시저

                                                       분석 변수 : x1

 N         평균값       표준편차         최소값         최대값       표준오차           합계           분산       변동계수
 -------------------------------------------------------------------------------------------------------------------------
 5          3.000          1.581          1.000          5.000          0.707         15.000          2.500         52.705
 -------------------------------------------------------------------------------------------------------------------------
♥♥♥♥♥
일단 구문 해석하기 전에, 이번엔 옵션에 date문을 쓰지 않았는데도 날짜가 나온다. 아마도 date문은 스위치같다고 생각할 수 있는 부분이다.
즉, option date; 라고 쓰면 결과에 날짜는 계속 나오게끔 스위치 on 되는 것이다.
자 분석해볼까.
데이터 이름은 a1이다. (그리고보니 맨날 a1이네..ㄱ-); 입력값은 x1 @@ ...@@가 뭐냐!! ㄷㄷㄷ... 찾아보니 밑에 cards의 값을 일렬로 주욱 써 놨는데,
이런 변수를 한 행씩 입력한 것처럼 인식한다고 한다.
즉, 1 2 3 4 5는 @@를 붙이지 않았다면
1
2
3
4
5
;
이런 식으로 입력해야 한다는 것이다.
proc means(기술통계량을 구한다)
n (총 갯수)
mean (the (arithmetical) MEAN; 평균값)
std(the STandard Deviation; 표준편차)
min(MINimum; 최소값)
max(MAXimum; 최대값)
stderr(STanDard ERRor; 표준편차)
sum(SUM; 합)
var(분산)
cv(Coefficient of Variability; 변동계수)
maxdec=3 (max decimal; 최대 소숫점 3자리...이런 의미같다)
돌려돌려;

proc means로 통계를 구한다고 한 뒤, 뒤에 뭘 붙이는가에 따라 출력하는 결과물이 달라지는 것이다.
연산을 몰라도, 결과가 무엇을 나타내는지에 대한 의미와, 자신이 활용하고자 하는 목적 등을 알 수 있다면 그걸로 된다는 의미다.
계산은 이 녀석이 잘 해줄꺼다. 실수 하지만 말자!

자 다시 책으로 돌아가서, 이 부분에서 보여주고자 하는 것은 linesize에 관한 것이였다.

♥♥♥♥♥
option linesize=130;
data a1; input x1 @@; cards;                                                                                                           
1 2 3 4 5                                                                                                                              
proc means n mean std min max stderr sum var cv maxdec=3;                                                                              
run;                                                                                                                                   
♥♥♥♥♥
                                                        SAS 시스템            2007년 02월 16일 금요일 오후 12시12분57초   2

                                                      MEANS 프로시저

                                                       분석 변수 : x1

 N         평균값       표준편차         최소값         최대값       표준오차           합계           분산       변동계수
 -------------------------------------------------------------------------------------------------------------------------
 5          3.000          1.581          1.000          5.000          0.707         15.000          2.500         52.705
 -------------------------------------------------------------------------------------------------------------------------

                                                            SAS 시스템               2007년 02월 16일 금요일 오후 12시12분57초   3

                                                          MEANS 프로시저

                                                          분석 변수 : x1

N          평균값        표준편차          최소값          최대값        표준오차            합계            분산        변동계수
---------------------------------------------------------------------------------------------------------------------------------
5           3.000           1.581           1.000           5.000           0.707          15.000           2.500          52.705

---------------------------------------------------------------------------------------------------------------------------------
♥♥♥♥♥
위에 결과값은 옵션 적용전이고, 아래는 후의 값이다.
linesize, 즉 줄의 길이가 달라졌다.
아까 살펴본 바로는 내 설정이 123이였으니까, 한 줄에 7자가 늘었다고 보면 되겠다.

음 그럼 이제 출력할때마다 130으로 되는건가..ㄱ- 모르겠네;

다음으로 배울것은 title과 footnote창이다.
이 구문/명령어는 출력을 할때 뭐에 대한 출력인지를 알려주는 기능을 한다.
어디에 설명이 되냐면, title문은 우리가 앞에서 나온 결과값에 'SAS 시스템'이라고 찍힌 부분이고,
footnote는 결과 출력 다 된 아래이다.
해보도록 하자.

< title문/창 >
♥♥♥♥♥
data a1;                                                                                                                               
title "이것은 첫번째 줄입니다";                                                                                                        
title2 "이것은 두번째 줄입니다";                                                                                                       
title3 "이것은 세번째 줄입니다";                                                                                                       
input x y z;                                                                                                                           
cards;                                                                                                                                 
1 2 3                                                                                                                                  
4 5 6                                                                                                                                  
7 8 9                                                                                                                                  
;                                                                                                                                      
proc print;                                                                                                                            
proc means;                                                                                                                            
run;                                                                                                                                   
♥♥♥♥♥
                                                      이것은 첫번째 줄입니다         2007년 02월 16일 금요일 오후 12시12분57초   5
                                                      이것은 두번째 줄입니다
                                                      이것은 세번째 줄입니다

                                                          MEANS 프로시저

                            변수    N          평균값        표준편차          최소값          최대값
                            -------------------------------------------------------------------------
                            x       3       4.0000000       3.0000000       1.0000000       7.0000000
                            y       3       5.0000000       3.0000000       2.0000000       8.0000000
                            z       3       6.0000000       3.0000000       3.0000000       9.0000000
                            -------------------------------------------------------------------------
♥♥♥♥♥
음.. linesize가 130으로 맞춰져버렸다. 역시 스위치의 개념이군...
자 어디에 출력되는지 알겠는가?
F11을 누르고 명령어창에다가 title이라고 쳐보자.
그럼 title 창이 나오게되고, 편집을 할 수 있게 된다.
해보잣!!
근데 지우고서 어찌 실행하는건지 모르겠다... 뭐지뭐지...;;;;; @_@;

<footnote문/창>
♥♥♥♥♥
data a1;                                                                                                                               
footnote "이것은 첫번째 줄입니다";                                                                                                        
footnote2 "이것은 두번째 줄입니다";                                                                                                       
footnote3 "이것은 세번째 줄입니다";                                                                                                       
input x y z;                                                                                                                           
cards;                                                                                                                                 
1 2 3                                                                                                                                  
4 5 6                                                                                                                                  
7 8 9                                                                                                                                  
;                                                                                                                                      
proc print;                                                                                                                            
proc means;                                                                                                                            
run;
♥♥♥♥♥
                                                  이것은 첫번째 줄입니다      2007년 02월 16일 금요일 오후 02시51분32초   6

                                                  이것은 세번째 줄입니다

                                                      MEANS 프로시저

                         변수    N          평균값        표준편차          최소값          최대값
                         -------------------------------------------------------------------------
                         x       3       4.0000000       3.0000000       1.0000000       7.0000000
                         y       3       5.0000000       3.0000000       2.0000000       8.0000000
                         z       3       6.0000000       3.0000000       3.0000000       9.0000000
                         -------------------------------------------------------------------------


























                                                  이것은 첫번째 줄입니다
                                                  이것은 두번째 줄입니다
                                                  이것은 세번째 줄입니다
♥♥♥♥♥
저 아래가서 찍히네.. 즉, 여기가 네가 설정한 페이지의 끝이라는 것이다.
명령어창에 foot 또는 footnote라고 치면, title창과 같은 창이 뜬다. 사용법은 같다.

으어어어.. 3장 끝났다. 4장도 슬슬 공부해보자.. 4장의 제목은 SAS 도움말 이용법이다.
아!! 또 4장을 어찌 하냐고? 이 무슨 나약한 소리인가. 30장까지 있는데, 조금이라도 빨리가서 치우고 쉬면 좋지.
음핫핫핫!!! 그보다 4장은 얼마 안된다. 3장의 절반도 안된다. 하하하!!! 거기다 프로그래밍도 없고, 단지 도움말이 뭔지 설명하는 단원~^^

도움말은 F1을 누르면 나온다.
목차탭에 5가지 내용이 나온다.
- SAS 9 및 9.1의 새로운 기능
- SAS 사용법 배우기
- Using SAS Software in your Operating Environment
- SAS Products
- SAS 사용자 지원 서비스

4번째 SAS Products > SAS/STAT Software 를 선택하면 SAS/STAT에서 지원하는 프로시저 리스트를 볼 수 있다고 한다..
책에서는 8버전에대해 설명하고 난 9버전이라 좀 차이가 있긴 있지만, 뭐 지원은 하겠지 싶다.

SAS 사용법 배우기에 보면 수 많은 샘플들이 있다. 그 중에 하나인 캘린더 샘플을 돌려봤다.
♥♥♥♥♥
/****************************************************************/
 /*          S A S   S A M P L E   L I B R A R Y                 */
 /*                                                              */
 /*    NAME: BPG07R01                                            */
 /*   TITLE: CALENDAR Procedure, Chapter 7                       */
 /* PRODUCT: SAS                                                 */
 /*  SYSTEM: ALL                                                 */
 /*    KEYS: EXAMPLES FROM DOCUMENTATION, SCHEDULE               */
 /*   PROCS: CALENDAR FORMAT SORT                                */
 /*    DATA:                                                     */
 /*                                                              */
 /* SUPPORT:                             UPDATE:                 */
 /*     REF: SAS Procedures Guide, CHAPTER 7                     */
 /*    MISC:                                                     */
 /*                                                              */
 /****************************************************************/
 
options ls=132;
title 'Meals Served in Community Hospital Cafeteria';
options pagesize=60 linesize=132 nodate;
data act;
  input date date7. brkfst lunch dinner;
    cards;
01Dec91       123 234 123
02Dec91       123 234 238
03Dec91       188 188 198
04Dec91       123 183 176
05Dec91       200 267 243
06Dec91       176 165 177
07Dec91       156   . 167
08Dec91       198 143 167
09Dec91       178 198 187
10Dec91       165 176 187
11Dec91       187 176 231
12Dec91       176 187 222
13Dec91       187 187 123
14Dec91       164 187 231
15Dec91       187 165 167
16Dec91       187 198 156
17Dec91       198 187 156
18Dec91       187 165 178
19Dec91       187 176 156
20Dec91       156 211 199
21Dec91       176 156 143
22Dec91       165 167 211
23Dec91       187 176   .
24Dec91       185 167 167
25Dec91       187 178 187
26Dec91       167 156 198
27Dec91       167 239 267
28Dec91       267 287 256
29Dec91       276 243 234
30Dec91       267 287 256
31Dec91       243 231 243
;
 proc calendar;
   start date;
   sum brkfst lunch dinner;
   mean brkfst lunch dinner;
 run;
title 'Summer Planning Calendar:  '
'Julia Q. Wydget, President';
title2 'Better Products Inc.';
data act;
    input date : date7. happen $ 9-36 who $ 38-48 long;
    cards;
01JUL91 Dist. Mtg.                    All          1
02JUL91 Mgrs. Meeting                 District 6   2
03JUL91 Interview                     JW           1
05JUL91 VIP Banquet                   JW           1
08JUL91 Sales Drive                   District 6   5
08JUL91 Trade Show                    Knox         3
11JUL91 Mgrs. Meeting                 District 7   2
11JUL91 Planning Council              Group II     1
12JUL91 Seminar                       White        1
14JUL91 Co. Picnic                    All          1
15JUL91 Sales Drive                   District 7   5
16JUL91 Dentist                       JW           1
17JUL91 Bank Meeting                  1st Natl     1
18JUL91 NewsLetter Deadline           All          1
18JUL91 Planning Council              Group III    1
19JUL91 Seminar                       White        1
22JUL91 Inventors Show                Melvin       3
24JUL91 Birthday                      Mary         1
25JUL91 Planning Council              Group IV     1
25JUL91 Close Sale                    WYGIX Co.    2
;
proc calendar data=act;
  start date;
  dur long;
run;
title  'Summer Planning Calendar:  '
'Julia Q. Wydget, President';
title2  'Better Products Inc.';
title3  'Work and Home Schedule';
data act;
  input date:date7. happen $ 10-34 who $ 35-47 _CAL_ $ long;
  cards;
01JUL91  Dist. Mtg.               All          CAL1   1
02JUL91  Mgrs. Meeting            District 6   CAL1   2
03JUL91  Interview                JW           CAL1   1
05JUL91  VIP Banquet              JW           CAL1   1
06JUL91  Beach trip               family       CAL2   2
08JUL91  Sales Drive              District 6   CAL1   5
08JUL91  Trade Show               Knox         CAL1   3
09JUL91  Orthodontist             Meagan       CAL2   1
11JUL91  Mgrs. Meeting            District 7   CAL1   2
11JUL91  Planning Council         Group II     CAL1   1
12JUL91  Seminar                  White        CAL1   1
14JUL91  Co. Picnic               All          CAL1   1
14JUL91  Business trip            Fred         CAL2   2
15JUL91  Sales Drive              District 7   CAL1   5
16JUL91  Dentist                  JW           CAL1   1
17JUL91  Bank Meeting             1st Natl     CAL1   1
17JUL91  Real estate agent        Family       CAL2   1
18JUL91  NewsLetter Deadline      All          CAL1   1
18JUL91  Planning Council         Group III    CAL1   1
19JUL91  Seminar                  White        CAL1   1
22JUL91  Inventors Show           Melvin       CAL1   3
24JUL91  Birthday                 Mary         CAL1   1
25JUL91  Planning Council         Group IV     CAL1   1
25JUL91  Close Sale               WYGIX Co.    CAL1   2
27JUL91  Ballgame                 Family       CAL2   1
;
data vac;
   input hdate:date7.  holiday $ 11-25 _CAL_ $ ;
   cards;
04JUL91   Independence            CAL1
29JUL91   vacation                CAL2
;
proc calendar data=act holidata=vac;
   calid _CAL_ / output=combine;
   start date ;
   holistart hdate;
   holivar holiday;
   dur long;
 run;
data act;
input date:date7. happen $ 9-36 who $ 38-40 _CAL_ $ 50 -53 long;
cards;
03JUL86 project                      JW          CAL1   3
07JUL86 finish                       JW          CAL1   1
;
title 'The SAS System';
proc calendar data=act  interval=workday;
   sta date;
   dur long;
run;
data act;
input date:date7. happen $ 9-36 who $ 38-40 _CAL_ $ long;
cards;
03JUL86 project                      JW           CAL1   3
07JUL86 finish                       JW           CAL1   1
;
data vac;
  input date:date7.  holiday $ 11-25 _CAL_ $;
cards;
04jul86   Independence          CAL1
 ;
proc calendar data=act holidata=vac interval=workday;
   calid _CAL_  / output=mixed;
   sta date;
   dur long;
   holistart date;
   holivar  holiday;
run;
data act;
input date:date7. happen $ 9-36 who $ 38-40 _CAL_ $ long;
cards;
03JUL86 project                      JW           CAL1   3
07JUL86 finish                       JW           CAL1   1
;
data vac;
input date:date7.  holiday $ 11-25  dur _CAL_ $;
cards;
04jul86   Independence          2         CAL1
   ;
proc calendar data=act holidata=vac interval=workday;
   calid _CAL_  / output=mixed;
   sta date;
   dur long;
   holistart date;
   holivar  holiday;
   holidur dur;
run;
title 'Meals Served in Community Hospital Cafeteria';
data act;
   input date date. brkfst lunch dinner;
   cards;
01Dec91           123 234 123
02Dec91           123 234 238
03Dec91           188 188 198
04Dec91           123 183 176
05Dec91           200 267 243
06Dec91           176 165 177
07Dec91           156   . 167
08Dec91           198 143 167
09Dec91           178 198 187
10Dec91           165 176 187
11Dec91           187 176 231
12Dec91           176 187 222
13Dec91           187 187 123
14Dec91           164 187 231
15Dec91           187 165 167
16Dec91           187 198 156
17Dec91           198 187 156
18Dec91           187 165 178
19Dec91           187 176 156
20Dec91           156 211 199
21Dec91           176 156 143
22Dec91           165 167 211
23Dec91           187 176   .
24Dec91           185 167 167
25Dec91           187 178 187
26Dec91           167 156 198
27Dec91           167 239 267
28Dec91           267 287 256
29Dec91           276 243 234
30Dec91           267 287 256
31Dec91           243 231 243
;
data hol;
   input date: date7. name & $12.;
   cards;
25Dec91 Christmas
;
proc format;
   picture bfmt   other = '999 Brkfst';
   picture lfmt   other = '999 Lunch ';
   picture dfmt   other = '999 Dinner';
   run;
proc calendar data=act holidata=hol;
   start date;
   holistart date;
   holivar name;
   format brkfst bfmt.;
   format lunch  lfmt.;
   format dinner dfmt.;
   sum  brkfst lunch dinner / format=4.0;
   mean brkfst lunch dinner / format=6.2;
   label brkfst = 'Breakfasts Served'
         lunch  = '   Lunches Served'
         dinner = '   Dinners Served';
   run;
title1 'System Performance Summary';
title2 'First National Bank Computer Center';
data bankact;
   input date: date. jobs act cpu;
   cards;
02May88 873 22.1  7.6
03May88 881 23.8 11.7
04May88 940 24.0  7.7
05May88 194  5.3  1.5
06May88 154 17.4  7.1
09May88 807 24   10.5
10May88 829 23.4 10.5
11May88 915 24   10.6
12May88 388 21    6.9
13May88  .   .    .
16May88 806 24.0 10.0
17May88 848 23.6 10.5
18May88 906 23   10.1
19May88 103 23.4 18.7
20May88 103 20.1 20
23May88 729 24    4.9
24May88 652 21.3 12.2
25May88 809 23.8 12.3
26May88 168 15.8 10.7
27May88  85  7    5.6
31May88 100 11.1  1.8
;
proc format;
picture jfmt  . = '000 jobs' (noedit)
        other = '000 jobs';
picture afmt  . = '00.0 act' (noedit)
        other = '00.0 act';
picture cfmt  . = '00.0 cpu' (noedit)
        other = '00.0 cpu';
run;
title3 'Mean Usage per Business Day';
proc calendar data=bankact;
   start date;
   format jobs jfmt.
           act afmt.
           cpu cfmt.;
   sum  jobs act cpu / format = 7.0;
   mean jobs act cpu / format = 6.1;
   label jobs = 'Jobs Run'
          act = 'Active Hours'
          cpu = 'Cpu Hours';
   run;
proc format;
picture jfmt  . = '000 jobs' (noedit)
        other = '000 jobs';
picture afmt  . = '00.0 act' (noedit)
        other = '00.0 act';
picture cfmt  . = '00.0 cpu' (noedit)
        other = '00.0 cpu';
run;
title1 'System Performance Summary';
title2 'First National Bank Computer Center';
title3 'Mean Usage per Day';
proc calendar missing data=bankact meantype=ndays;
   start date;
   format jobs jfmt.
           act afmt.
           cpu cfmt.;
   sum  jobs act cpu / format = 7.0;
   mean jobs act cpu / format = 6.1;
   label jobs = 'Jobs Run Daily'
   act = 'Active Hours' cpu = 'Cpu Hours';
run;
data wellact;
input task $ 1-16 dur 21-30 date datetime. _cal_ $ cost;
cards;
Drill Well          3.50      01JUL85:12:00:00   CAL1   1000
Lay Power Line      3.00      04JUL85:12:00:00   CAL1   2000
Assemble Tank       4.00      05JUL85:08:00:00   CAL1   1000
Build Pump House    3.00      08JUL85:12:00:00   CAL1   2000
Pour Foundation     4.00      11JUL85:08:00:00   CAL1   1500
Install Pump        4.00      15JUL85:14:00:00   CAL1    500
Install Pipe        2.00      19JUL85:08:00:00   CAL1   1000
Erect Tower         6.00      20JUL85:08:00:00   CAL1   2500
Deliver Material    2.00      01JUL85:12:00:00   CAL2    500
Excavate            4.75      03JUL85:08:00:00   CAL2   3500
;
data wellhol;
input date date. holiday $ 11-25 _cal_ $;
cards;
04JUL85   Independence        CAL1
07JUL85   Vacation            CAL2
;
data wellcal;
input _sun_ $ _sat_ $ _cal_ $;
cards;
Holiday Holiday  CAL1
Holiday Halfday  CAL2
;
data wellwor;
input halfday time8.;
cards;
08:00
12:00
;
title 'Well Drilling Cost Summary:  Output=Separate';
proc sort data=wellact;
   by _cal_ date;
run;
proc calendar data=wellact
      holidata=wellhol  caledata=wellcal workdata=wellwor
           datetime legend;
   calid _cal_ / output=separate;
   start date;
   format cost dollar9.2;
   sum cost / format=dollar9.2;
   holistart date;
   holivar holiday;
   outstart Monday;
   outfin Saturday;
run;
title 'Well Drilling Cost Summary:  Output=Combine';
proc sort data=wellact;
   by date;
run;
proc calendar data=wellact
      holidata=wellhol caledata=wellcal workdata=wellwor
           datetime legend;
   calid _cal_ / output=combine;
   start date;
   format cost dollar9.2;
   sum cost / format=dollar9.2;
   holistart date;
   holivar holiday;
   outstart Monday;
   outfin Saturday;
run;
options pagesize=66 linesize=132 nodate ;
title 'Well Drilling Cost Summary:  Output=Mix';
proc sort data=wellact;
   by date;
run;
proc calendar data=wellact
     holidata=wellhol caledata=wellcal workdata=wellwor
          datetime legend;
   calid _cal_ / output=mix;
   start date;
   format cost dollar9.2;
   sum cost / format=dollar9.2;
   holistart date;
   holivar holiday;
   outstart Monday;
   outfin Saturday;
run;
title 'Summer Planning Calendar:  Julia Q. Wydget, President';
title2 'Better Products Inc.';
options pagesize=60 linesize=132 nodate;
data act;
   input date:date7. happen $ 9-36 who $ 37-48 long;
   cards;
01JUL91 Dist. Mtg.                  All          1
02JUL91 Mgrs. Meeting               District 6   2
03JUL91 Interview                   JW           1
05JUL91 VIP Banquet                 JW           1
08JUL91 Sales Drive                 District 6   5
08JUL91 Trade Show                  Knox         3
11JUL91 Mgrs. Meeting               District 7   2
11JUL91 Planning Council            Group II     1
12JUL91 Seminar                     White        1
15JUL91 Sales Drive                 District 7   5
16JUL91 Dentist                     JW           1
17JUL91 Bank Meeting                1st Natl     1
18JUL91 NewsLetter Deadline         All          1
18JUL91 Planning Council            Group III    1
19JUL91 Seminar                     White        1
19JUL91 Co. Picnic                  All          1
22JUL91 Inventors Show              Melvin       3
24JUL91 Birthday                    Mary         1
25JUL91 Planning Council            Group IV     1
25JUL91 Close Sale                  WYGIX Co.    2
;
data hol;
   input date: date7. dur name & $15.;
   cards;
04JUL91  1  Independence
29JUL91  3  Vacation
;
proc calendar data=act holidata=hol;
   start date;
   dur long;
   holistart date;
   holivar name;
   holidur dur;
   outstart Monday;
   outfin Friday;
run;
title 'Well Drilling Work Schedule:  Output=Separate';
proc sort data=wellact;
   by _cal_ date;
   run;
proc calendar data=wellact
      holidata=wellhol
      caledata=wellcal workdata=wellwor datetime;
   calid _cal_ / output=separate;
   start date;
   dur dur;
   format cost dollar9.2;
   holistart date;
   holivar holiday;
   outstart Monday;
   outfin Saturday;
run;
options pagesize=66 linesize=132 nodate ;
title 'Well Drilling Work Schedule:  Output=Combine';
proc sort data=wellact;
   by date;
   run;
proc calendar data=wellact
     holidata=wellhol caledata=wellcal workdata=wellwor datetime;
   calid _cal_ / output=combine;
   start date;
   dur dur;
   format cost dollar9.2;
   holistart date;
   holivar holiday;
   outstart Monday;
   outfin Saturday;
   run;
title 'Well Drilling Work Schedule:  Output=Mix';
proc sort data=wellact;
   by date;
run;
proc calendar data=wellact
     holidata=wellhol caledata=wellcal workdata=wellwor datetime;
   calid _cal_ / output=mix;
   start date;
   dur dur;
   format cost dollar9.2;
   holistart date;
   holivar holiday;
   outstart Monday;
   outfin Saturday;
run;
data acts;
   input sta:date7. act $ 11-30 dur;
   cards;
01JAN88   Start                 0
31DEC88   Finish                0
 ;
data holidays;
   input sta:date7. act $ 11-30 dur;
   cards;
01JAN88   New Year's            1
01APR88   Good Friday           1
30MAY88   Memorial Day          1
04JUL88   Independence Day      1
05SEP88   Labor Day             1
24NOV88   Thanksgiving          2
26DEC88   Christmas             3
 ;
options pagesize=30 linesize=132;
proc calendar data=acts holidata=holidays fill;
   start sta;
   dur dur;
   holistart sta;
   holidur dur;
   holivar act;
run;
♥♥♥♥♥
                                            Meals Served in Community Hospital Cafeteria                                           7

             ----------------------------------------------------------------------------------------------------------
             |                                                                                                        |
             |                                               12월  1991                                               |
             |                                                                                                        |
             |--------------------------------------------------------------------------------------------------------|
             |    일요일    |    월요일    |    화요일    |    수요일    |    목요일    |    금요일    |    토요일    |
             |--------------+--------------+--------------+--------------+--------------+--------------+--------------|
             |       1      |       2      |       3      |       4      |       5      |       6      |       7      |
             |              |              |              |              |              |              |              |
             |          123 |          123 |          188 |          123 |          200 |          176 |          156 |
             |          234 |          234 |          188 |          183 |          267 |          165 |            . |
             |          123 |          238 |          198 |          176 |          243 |          177 |          167 |
             |--------------+--------------+--------------+--------------+--------------+--------------+--------------|
             |       8      |       9      |      10      |      11      |      12      |      13      |      14      |
             |              |              |              |              |              |              |              |
             |          198 |          178 |          165 |          187 |          176 |          187 |          164 |
             |          143 |          198 |          176 |          176 |          187 |          187 |          187 |
             |          167 |          187 |          187 |          231 |          222 |          123 |          231 |
             |--------------+--------------+--------------+--------------+--------------+--------------+--------------|
             |      15      |      16      |      17      |      18      |      19      |      20      |      21      |
             |              |              |              |              |              |              |              |
             |          187 |          187 |          198 |          187 |          187 |          156 |          176 |
             |          165 |          198 |          187 |          165 |          176 |          211 |          156 |
             |          167 |          156 |          156 |          178 |          156 |          199 |          143 |
             |--------------+--------------+--------------+--------------+--------------+--------------+--------------|
             |      22      |      23      |      24      |      25      |      26      |      27      |      28      |
             |              |              |              |              |              |              |              |
             |          165 |          187 |          185 |          187 |          167 |          167 |          267 |
             |          167 |          176 |          167 |          178 |          156 |          239 |          287 |
             |          211 |            . |          167 |          187 |          198 |          267 |          256 |
             |--------------+--------------+--------------+--------------+--------------+--------------+--------------|
             |      29      |      30      |      31      |              |              |              |              |
             |              |              |              |              |              |              |              |
             |          276 |          267 |          243 |              |              |              |              |
             |          243 |          287 |          231 |              |              |              |              |
             |          234 |          256 |          243 |              |              |              |              |
             ----------------------------------------------------------------------------------------------------------

                                            --------------------------------------------
                                            |          |     합계      |     평균      |
                                            |          |               |               |
                                            | brkfst   |          5733 |       184.935 |
                                            | lunch    |          5914 |       197.133 |
                                            | dinner   |          5844 |       194.800 |
                                            --------------------------------------------






                                                       이것은 첫번째 줄입니다
                                                       이것은 두번째 줄입니다
                                                       이것은 세번째 줄입니다

                                       Summer Planning Calendar:  Julia Q. Wydget, President                                       8
                                                        Better Products Inc.

  -------------------------------------------------------------------------------------------------------------------------------
  |                                                                                                                             |
  |                                                          7월  1991                                                          |
  |                                                                                                                             |
  |-----------------------------------------------------------------------------------------------------------------------------|
  |     일요일      |     월요일      |     화요일      |     수요일      |     목요일      |     금요일      |     토요일      |
  |-----------------+-----------------+-----------------+-----------------+-----------------+-----------------+-----------------|
  |                 |        1        |        2        |        3        |        4        |        5        |        6        |
  |                 |                 |                 |                 |                 |                 |                 |
  |                 |                 |                 |                 |                 |                 |                 |
  |                 |                 |                 |                 |                 |                 |                 |
  |                 |                 |                 |+=Interview/JW==+|                 |                 |                 |
  |                 |+Dist. Mtg./All=+|+====Mgrs. Meeting/District 6=====+|                 |+VIP Banquet/JW=+|                 |
  |-----------------+-----------------+-----------------+-----------------+-----------------+-----------------+-----------------|
  |        7        |        8        |        9        |       10        |       11        |       12        |       13        |
  |                 |                 |                 |                 |                 |                 |                 |
  |                 |                 |                 |                 |                 |                 |                 |
  |                 |                 |                 |                 |+Planning Counci+|+=Seminar/White=+|                 |
  |                 |+==================Trade Show/Knox==================+|+====Mgrs. Meeting/District 7=====+|                 |
  |                 |+================================Sales Drive/District 6=================================+|                 |
  |-----------------+-----------------+-----------------+-----------------+-----------------+-----------------+-----------------|
  |       14        |       15        |       16        |       17        |       18        |       19        |       20        |
  |                 |                 |                 |                 |                 |                 |                 |
  |                 |                 |                 |                 |                 |                 |                 |
  |                 |                 |                 |                 |+Planning Counci+|                 |                 |
  |                 |                 |+==Dentist/JW===+|+Bank Meeting/1s+|+NewsLetter Dead+|+=Seminar/White=+|                 |
  |+Co. Picnic/All=+|+================================Sales Drive/District 7=================================+|                 |
  |-----------------+-----------------+-----------------+-----------------+-----------------+-----------------+-----------------|
  |       21        |       22        |       23        |       24        |       25        |       26        |       27        |
  |                 |                 |                 |                 |                 |                 |                 |
  |                 |                 |                 |                 |                 |                 |                 |
  |                 |                 |                 |                 |                 |                 |                 |
  |                 |                 |                 |+=Birthday/Mary=+|+======Close Sale/WYGIX Co.=======+|                 |
  |                 |+===============Inventors Show/Melvin===============+|+Planning Counci+|                 |                 |
  |-----------------+-----------------+-----------------+-----------------+-----------------+-----------------+-----------------|
  |       28        |       29        |       30        |       31        |                 |                 |                 |
  |                 |                 |                 |                 |                 |                 |                 |
  |                 |                 |                 |                 |                 |                 |                 |
  |                 |                 |                 |                 |                 |                 |                 |
  |                 |                 |                 |                 |                 |                 |                 |
  |                 |                 |                 |                 |                 |                 |                 |
  -------------------------------------------------------------------------------------------------------------------------------







                                                       이것은 첫번째 줄입니다
                                                       이것은 두번째 줄입니다
                                                       이것은 세번째 줄입니다

                                       Summer Planning Calendar:  Julia Q. Wydget, President                                       9
                                                        Better Products Inc.
                                                       Work and Home Schedule

           ------------------------------------------------------------------------------------------------------------------------
           |                                                                                                                      |
           |                                                      7월  1991                                                       |
           |                                                                                                                      |
           |----------------------------------------------------------------------------------------------------------------------|
           |     일요일     |     월요일     |     화요일     |     수요일     |     목요일     |     금요일     |     토요일     |
 ----------+----------------+----------------+----------------+----------------+----------------+----------------+----------------|
 |         |                |        1       |        2       |        3       |        4       |        5       |        6       |
 |.........|................|................|................|................|................|................|................|
 | CAL1    |                |                |                |+=Interview/JW=+|**Independence**|                |                |
 |         |                |+Dist. Mtg./All+|+===Mgrs. Meeting/District 6====+|                |+VIP Banquet/JW+|                |
 |.........|................|................|................|................|................|................|................|
 | CAL2    |                |                |                |                |                |                |+Beach trip/fam>|
 |---------+----------------+----------------+----------------+----------------+----------------+----------------+----------------|
 |         |        7       |        8       |        9       |       10       |       11       |       12       |       13       |
 |.........|................|................|................|................|................|................|................|
 | CAL1    |                |                |                |                |+Planning Counc+|+Seminar/White=+|                |
 |         |                |+================Trade Show/Knox=================+|+===Mgrs. Meeting/District 7====+|                |
 |         |                |+==============================Sales Drive/District 6==============================+|                |
 |.........|................|................|................|................|................|................|................|
 |---------+----------------+----------------+----------------+----------------+----------------+----------------+----------------|
 |         |       14       |       15       |       16       |       17       |       18       |       19       |       20       |
 |.........|................|................|................|................|................|................|................|
 | CAL1    |                |                |                |                |+Planning Counc+|                |                |
 |         |                |                |+==Dentist/JW==+|+Bank Meeting/1+|+NewsLetter Dea+|+Seminar/White=+|                |
 |         |+Co. Picnic/All+|+==============================Sales Drive/District 7==============================+|                |
 |.........|................|................|................|................|................|................|................|
 |---------+----------------+----------------+----------------+----------------+----------------+----------------+----------------|
 |         |       21       |       22       |       23       |       24       |       25       |       26       |       27       |
 |.........|................|................|................|................|................|................|................|
 | CAL1    |                |                |                |+Birthday/Mary=+|+=====Close Sale/WYGIX Co.======+|                |
 |         |                |+=============Inventors Show/Melvin==============+|+Planning Counc+|                |                |
 |.........|................|................|................|................|................|................|................|
 | CAL2    |                |                |                |                |                |                |+Ballgame/Famil+|
 |---------+----------------+----------------+----------------+----------------+----------------+----------------+----------------|
 |         |       28       |       29       |       30       |       31       |                |                |                |
 |.........|................|................|................|................|................|................|................|
 | CAL2    |                |****vacation****|                |                |                |                |                |
 |         |                |                |                |                |                |                |                |
 |         |                |                |                |                |                |                |                |
 |         |                |                |                |                |                |                |                |
 ----------------------------------------------------------------------------------------------------------------------------------






                                                       이것은 첫번째 줄입니다
                                                       이것은 두번째 줄입니다
                                                       이것은 세번째 줄입니다

                                                           The SAS System                                                         10

  -------------------------------------------------------------------------------------------------------------------------------
  |                                                                                                                             |
  |                                                          7월  1986                                                          |
  |                                                                                                                             |
  |-----------------------------------------------------------------------------------------------------------------------------|
  |     일요일      |     월요일      |     화요일      |     수요일      |     목요일      |     금요일      |     토요일      |
  |-----------------+-----------------+-----------------+-----------------+-----------------+-----------------+-----------------|
  |                 |                 |        1        |        2        |        3        |        4        |        5        |
  |                 |                 |                 |                 |                 |                 |                 |
  |                 |                 |                 |                 |                 |                 |                 |
  |                 |                 |                 |                 |                 |                 |                 |
  |                 |                 |                 |                 |                 |                 |                 |
  |                 |                 |                 |                 |+=========project/JW/CAL1=========>|                 |
  |-----------------+-----------------+-----------------+-----------------+-----------------+-----------------+-----------------|
  |        6        |        7        |        8        |        9        |       10        |       11        |       12        |
  |                 |                 |                 |                 |                 |                 |                 |
  |                 |                 |                 |                 |                 |                 |                 |
  |                 |                 |                 |                 |                 |                 |                 |
  |                 |+finish/JW/CAL1=+|                 |                 |                 |                 |                 |
  |                 |<project/JW/CAL1+|                 |                 |                 |                 |                 |
  |-----------------+-----------------+-----------------+-----------------+-----------------+-----------------+-----------------|
  |       13        |       14        |       15        |       16        |       17        |       18        |       19        |
  |                 |                 |                 |                 |                 |                 |                 |
  |                 |                 |                 |                 |                 |                 |                 |
  |                 |                 |                 |                 |                 |                 |                 |
  |                 |                 |                 |                 |                 |                 |                 |
  |                 |                 |                 |                 |                 |                 |                 |
  |-----------------+-----------------+-----------------+-----------------+-----------------+-----------------+-----------------|
  |       20        |       21        |       22        |       23        |       24        |       25        |       26        |
  |                 |                 |                 |                 |                 |                 |                 |
  |                 |                 |                 |                 |                 |                 |                 |
  |                 |                 |                 |                 |                 |                 |                 |
  |                 |                 |                 |                 |                 |                 |                 |
  |                 |                 |                 |                 |                 |                 |                 |
  |-----------------+-----------------+-----------------+-----------------+-----------------+-----------------+-----------------|
  |       27        |       28        |       29        |       30        |       31        |                 |                 |
  |                 |                 |                 |                 |                 |                 |                 |
  |                 |                 |                 |                 |                 |                 |                 |
  |                 |                 |                 |                 |                 |                 |                 |
  |                 |                 |                 |                 |                 |                 |                 |
  |                 |                 |                 |                 |                 |                 |                 |
  -------------------------------------------------------------------------------------------------------------------------------







                                                       이것은 첫번째 줄입니다
                                                       이것은 두번째 줄입니다
                                                       이것은 세번째 줄입니다

                                                           The SAS System                                                         11

  -------------------------------------------------------------------------------------------------------------------------------
  |                                                                                                                             |
  |                                                          7월  1986                                                          |
  |                                                                                                                             |
  |-----------------------------------------------------------------------------------------------------------------------------|
  |     일요일      |     월요일      |     화요일      |     수요일      |     목요일      |     금요일      |     토요일      |
  |-----------------+-----------------+-----------------+-----------------+-----------------+-----------------+-----------------|
  |                 |                 |        1        |        2        |        3        |        4        |        5        |
  |                 |                 |                 |                 |                 |                 |                 |
  |                 |                 |                 |                 |                 |                 |                 |
  |                 |                 |                 |                 |                 |                 |                 |
  |                 |                 |                 |                 |                 |                 |                 |
  |                 |                 |                 |                 |+==project/JW===>|**Independence***|                 |
  |-----------------+-----------------+-----------------+-----------------+-----------------+-----------------+-----------------|
  |        6        |        7        |        8        |        9        |       10        |       11        |       12        |
  |                 |                 |                 |                 |                 |                 |                 |
  |                 |                 |                 |                 |                 |                 |                 |
  |                 |                 |                 |                 |                 |                 |                 |
  |                 |+===finish/JW===+|                 |                 |                 |                 |                 |
  |                 |<===========project/JW============+|                 |                 |                 |                 |
  |-----------------+-----------------+-----------------+-----------------+-----------------+-----------------+-----------------|
  |       13        |       14        |       15        |       16        |       17        |       18        |       19        |
  |                 |                 |                 |                 |                 |                 |                 |
  |                 |                 |                 |                 |                 |                 |                 |
  |                 |                 |                 |                 |                 |                 |                 |
  |                 |                 |                 |                 |                 |                 |                 |
  |                 |                 |                 |                 |                 |                 |                 |
  |-----------------+-----------------+-----------------+-----------------+-----------------+-----------------+-----------------|
  |       20        |       21        |       22        |       23        |       24        |       25        |       26        |
  |                 |                 |                 |                 |                 |                 |                 |
  |                 |                 |                 |                 |                 |                 |                 |
  |                 |                 |                 |                 |                 |                 |                 |
  |                 |                 |                 |                 |                 |                 |                 |
  |                 |                 |                 |                 |                 |                 |                 |
  |-----------------+-----------------+-----------------+-----------------+-----------------+-----------------+-----------------|
  |       27        |       28        |       29        |       30        |       31        |                 |                 |
  |                 |                 |                 |                 |                 |                 |                 |
  |                 |                 |                 |                 |                 |                 |                 |
  |                 |                 |                 |                 |                 |                 |                 |
  |                 |                 |                 |                 |                 |                 |                 |
  |                 |                 |                 |                 |                 |                 |                 |
  -------------------------------------------------------------------------------------------------------------------------------







                                                       이것은 첫번째 줄입니다
                                                       이것은 두번째 줄입니다
                                                       이것은 세번째 줄입니다

                                                           The SAS System                                                         12

  -------------------------------------------------------------------------------------------------------------------------------
  |                                                                                                                             |
  |                                                          7월  1986                                                          |
  |                                                                                                                             |
  |-----------------------------------------------------------------------------------------------------------------------------|
  |     일요일      |     월요일      |     화요일      |     수요일      |     목요일      |     금요일      |     토요일      |
  |-----------------+-----------------+-----------------+-----------------+-----------------+-----------------+-----------------|
  |                 |                 |        1        |        2        |        3        |        4        |        5        |
  |                 |                 |                 |                 |                 |                 |                 |
  |                 |                 |                 |                 |                 |                 |                 |
  |                 |                 |                 |                 |                 |                 |                 |
  |                 |                 |                 |                 |                 |                 |                 |
  |                 |                 |                 |                 |+==project/JW===>|**Independence***|                 |
  |-----------------+-----------------+-----------------+-----------------+-----------------+-----------------+-----------------|
  |        6        |        7        |        8        |        9        |       10        |       11        |       12        |
  |                 |                 |                 |                 |                 |                 |                 |
  |                 |                 |                 |                 |                 |                 |                 |
  |                 |                 |                 |                 |                 |                 |                 |
  |                 |**Independence***|+===finish/JW===+|                 |                 |                 |                 |
  |                 |**Independence***|<===========project/JW============+|                 |                 |                 |
  |-----------------+-----------------+-----------------+-----------------+-----------------+-----------------+-----------------|
  |       13        |       14        |       15        |       16        |       17        |       18        |       19        |
  |                 |                 |                 |                 |                 |                 |                 |
  |                 |                 |                 |                 |                 |                 |                 |
  |                 |                 |                 |                 |                 |                 |                 |
  |                 |                 |                 |                 |                 |                 |                 |
  |                 |                 |                 |                 |                 |                 |                 |
  |-----------------+-----------------+-----------------+-----------------+-----------------+-----------------+-----------------|
  |       20        |       21        |       22        |       23        |       24        |       25        |       26        |
  |                 |                 |                 |                 |                 |                 |                 |
  |                 |                 |                 |                 |                 |                 |                 |
  |                 |                 |                 |                 |                 |                 |                 |
  |                 |                 |                 |                 |                 |                 |                 |
  |                 |                 |                 |                 |                 |                 |                 |
  |-----------------+-----------------+-----------------+-----------------+-----------------+-----------------+-----------------|
  |       27        |       28        |       29        |       30        |       31        |                 |                 |
  |                 |                 |                 |                 |                 |                 |                 |
  |                 |                 |                 |                 |                 |                 |                 |
  |                 |                 |                 |                 |                 |                 |                 |
  |                 |                 |                 |                 |                 |                 |                 |
  |                 |                 |                 |                 |                 |                 |                 |
  -------------------------------------------------------------------------------------------------------------------------------







                                                       이것은 첫번째 줄입니다
                                                       이것은 두번째 줄입니다
                                                       이것은 세번째 줄입니다

                                            Meals Served in Community Hospital Cafeteria                                          13

                    --------------------------------------------------------------------------------------------
                    |                                                                                          |
                    |                                        12월  1991                                        |
                    |                                                                                          |
                    |------------------------------------------------------------------------------------------|
                    |   일요일   |   월요일   |   화요일   |   수요일   |   목요일   |   금요일   |   토요일   |
                    |------------+------------+------------+------------+------------+------------+------------|
                    |      1     |      2     |      3     |      4     |      5     |      6     |      7     |
                    |            |            |            |            |            |            |            |
                    | 123 Brkfst | 123 Brkfst | 188 Brkfst | 123 Brkfst | 200 Brkfst | 176 Brkfst | 156 Brkfst |
                    | 234 Lunch  | 234 Lunch  | 188 Lunch  | 183 Lunch  | 267 Lunch  | 165 Lunch  |          . |
                    | 123 Dinner | 238 Dinner | 198 Dinner | 176 Dinner | 243 Dinner | 177 Dinner | 167 Dinner |
                    |------------+------------+------------+------------+------------+------------+------------|
                    |      8     |      9     |     10     |     11     |     12     |     13     |     14     |
                    |            |            |            |            |            |            |            |
                    | 198 Brkfst | 178 Brkfst | 165 Brkfst | 187 Brkfst | 176 Brkfst | 187 Brkfst | 164 Brkfst |
                    | 143 Lunch  | 198 Lunch  | 176 Lunch  | 176 Lunch  | 187 Lunch  | 187 Lunch  | 187 Lunch  |
                    | 167 Dinner | 187 Dinner | 187 Dinner | 231 Dinner | 222 Dinner | 123 Dinner | 231 Dinner |
                    |------------+------------+------------+------------+------------+------------+------------|
                    |     15     |     16     |     17     |     18     |     19     |     20     |     21     |
                    |            |            |            |            |            |            |            |
                    | 187 Brkfst | 187 Brkfst | 198 Brkfst | 187 Brkfst | 187 Brkfst | 156 Brkfst | 176 Brkfst |
                    | 165 Lunch  | 198 Lunch  | 187 Lunch  | 165 Lunch  | 176 Lunch  | 211 Lunch  | 156 Lunch  |
                    | 167 Dinner | 156 Dinner | 156 Dinner | 178 Dinner | 156 Dinner | 199 Dinner | 143 Dinner |
                    |------------+------------+------------+------------+------------+------------+------------|
                    |     22     |     23     |     24     |     25     |     26     |     27     |     28     |
                    |            |            |            |*Christmas**|            |            |            |
                    | 165 Brkfst | 187 Brkfst | 185 Brkfst | 187 Brkfst | 167 Brkfst | 167 Brkfst | 267 Brkfst |
                    | 167 Lunch  | 176 Lunch  | 167 Lunch  | 178 Lunch  | 156 Lunch  | 239 Lunch  | 287 Lunch  |
                    | 211 Dinner |          . | 167 Dinner | 187 Dinner | 198 Dinner | 267 Dinner | 256 Dinner |
                    |------------+------------+------------+------------+------------+------------+------------|
                    |     29     |     30     |     31     |            |            |            |            |
                    |            |            |            |            |            |            |            |
                    | 276 Brkfst | 267 Brkfst | 243 Brkfst |            |            |            |            |
                    | 243 Lunch  | 287 Lunch  | 231 Lunch  |            |            |            |            |
                    | 234 Dinner | 256 Dinner | 243 Dinner |            |            |            |            |
                    --------------------------------------------------------------------------------------------

                                               -------------------------------------
                                               |                   | 합계 |  평균  |
                                               |                   |      |        |
                                               | Breakfasts Served | 5733 | 184.94 |
                                               |    Lunches Served | 5914 | 197.13 |
                                               |    Dinners Served | 5844 | 194.80 |
                                               -------------------------------------






                                                       이것은 첫번째 줄입니다
                                                       이것은 두번째 줄입니다
                                                       이것은 세번째 줄입니다

                                                     System Performance Summary                                                   14
                                                First National Bank Computer Center
                                                    Mean Usage per Business Day

                           ------------------------------------------------------------------------------
                           |                                                                            |
                           |                                 5월  1988                                  |
                           |                                                                            |
                           |----------------------------------------------------------------------------|
                           |  일요일  |  월요일  |  화요일  |  수요일  |  목요일  |  금요일  |  토요일  |
                           |----------+----------+----------+----------+----------+----------+----------|
                           |     1    |     2    |     3    |     4    |     5    |     6    |     7    |
                           |          |          |          |          |          |          |          |
                           |          | 873 jobs | 881 jobs | 940 jobs | 194 jobs | 154 jobs |          |
                           |          | 22.1 act | 23.8 act | 24.0 act |  5.3 act | 17.4 act |          |
                           |          |  7.6 cpu | 11.7 cpu |  7.7 cpu |  1.5 cpu |  7.1 cpu |          |
                           |----------+----------+----------+----------+----------+----------+----------|
                           |     8    |     9    |    10    |    11    |    12    |    13    |    14    |
                           |          |          |          |          |          |          |          |
                           |          | 807 jobs | 829 jobs | 915 jobs | 388 jobs | 000 jobs |          |
                           |          | 24.0 act | 23.4 act | 24.0 act | 21.0 act | 00.0 act |          |
                           |          | 10.5 cpu | 10.5 cpu | 10.6 cpu |  6.9 cpu | 00.0 cpu |          |
                           |----------+----------+----------+----------+----------+----------+----------|
                           |    15    |    16    |    17    |    18    |    19    |    20    |    21    |
                           |          |          |          |          |          |          |          |
                           |          | 806 jobs | 848 jobs | 906 jobs | 103 jobs | 103 jobs |          |
                           |          | 24.0 act | 23.6 act | 23.0 act | 23.4 act | 20.1 act |          |
                           |          | 10.0 cpu | 10.5 cpu | 10.1 cpu | 18.7 cpu | 20.0 cpu |          |
                           |----------+----------+----------+----------+----------+----------+----------|
                           |    22    |    23    |    24    |    25    |    26    |    27    |    28    |
                           |          |          |          |          |          |          |          |
                           |          | 729 jobs | 652 jobs | 809 jobs | 168 jobs |  85 jobs |          |
                           |          | 24.0 act | 21.3 act | 23.8 act | 15.8 act |  7.0 act |          |
                           |          |  4.9 cpu | 12.2 cpu | 12.3 cpu | 10.7 cpu |  5.6 cpu |          |
                           |----------+----------+----------+----------+----------+----------+----------|
                           |    29    |    30    |    31    |          |          |          |          |
                           |          |          |          |          |          |          |          |
                           |          |          | 100 jobs |          |          |          |          |
                           |          |          | 11.1 act |          |          |          |          |
                           |          |          |  1.8 cpu |          |          |          |          |
                           ------------------------------------------------------------------------------

                                                -----------------------------------
                                                |              |  합계   |  평균  |
                                                |              |         |        |
                                                | Jobs Run     |   11290 |  564.5 |
                                                | Active Hours |     402 |   20.1 |
                                                | Cpu Hours    |     191 |    9.5 |
                                                -----------------------------------





                                                       이것은 첫번째 줄입니다
                                                       이것은 두번째 줄입니다
                                                       이것은 세번째 줄입니다

                                                     System Performance Summary                                                   15
                                                First National Bank Computer Center
                                                         Mean Usage per Day

                           ------------------------------------------------------------------------------
                           |                                                                            |
                           |                                 5월  1988                                  |
                           |                                                                            |
                           |----------------------------------------------------------------------------|
                           |  일요일  |  월요일  |  화요일  |  수요일  |  목요일  |  금요일  |  토요일  |
                           |----------+----------+----------+----------+----------+----------+----------|
                           |     1    |     2    |     3    |     4    |     5    |     6    |     7    |
                           |          |          |          |          |          |          |          |
                           | 000 jobs | 873 jobs | 881 jobs | 940 jobs | 194 jobs | 154 jobs | 000 jobs |
                           | 00.0 act | 22.1 act | 23.8 act | 24.0 act |  5.3 act | 17.4 act | 00.0 act |
                           | 00.0 cpu |  7.6 cpu | 11.7 cpu |  7.7 cpu |  1.5 cpu |  7.1 cpu | 00.0 cpu |
                           |----------+----------+----------+----------+----------+----------+----------|
                           |     8    |     9    |    10    |    11    |    12    |    13    |    14    |
                           |          |          |          |          |          |          |          |
                           | 000 jobs | 807 jobs | 829 jobs | 915 jobs | 388 jobs | 000 jobs | 000 jobs |
                           | 00.0 act | 24.0 act | 23.4 act | 24.0 act | 21.0 act | 00.0 act | 00.0 act |
                           | 00.0 cpu | 10.5 cpu | 10.5 cpu | 10.6 cpu |  6.9 cpu | 00.0 cpu | 00.0 cpu |
                           |----------+----------+----------+----------+----------+----------+----------|
                           |    15    |    16    |    17    |    18    |    19    |    20    |    21    |
                           |          |          |          |          |          |          |          |
                           | 000 jobs | 806 jobs | 848 jobs | 906 jobs | 103 jobs | 103 jobs | 000 jobs |
                           | 00.0 act | 24.0 act | 23.6 act | 23.0 act | 23.4 act | 20.1 act | 00.0 act |
                           | 00.0 cpu | 10.0 cpu | 10.5 cpu | 10.1 cpu | 18.7 cpu | 20.0 cpu | 00.0 cpu |
                           |----------+----------+----------+----------+----------+----------+----------|
                           |    22    |    23    |    24    |    25    |    26    |    27    |    28    |
                           |          |          |          |          |          |          |          |
                           | 000 jobs | 729 jobs | 652 jobs | 809 jobs | 168 jobs |  85 jobs | 000 jobs |
                           | 00.0 act | 24.0 act | 21.3 act | 23.8 act | 15.8 act |  7.0 act | 00.0 act |
                           | 00.0 cpu |  4.9 cpu | 12.2 cpu | 12.3 cpu | 10.7 cpu |  5.6 cpu | 00.0 cpu |
                           |----------+----------+----------+----------+----------+----------+----------|
                           |    29    |    30    |    31    |          |          |          |          |
                           |          |          |          |          |          |          |          |
                           | 000 jobs | 000 jobs | 100 jobs |          |          |          |          |
                           | 00.0 act | 00.0 act | 11.1 act |          |          |          |          |
                           | 00.0 cpu | 00.0 cpu |  1.8 cpu |          |          |          |          |
                           ------------------------------------------------------------------------------

                                               -------------------------------------
                                               |                |  합계   |  평균  |
                                               |                |         |        |
                                               | Jobs Run Daily |   11290 |  364.2 |
                                               | Active Hours   |     402 |   13.0 |
                                               | Cpu Hours      |     191 |    6.2 |
                                               -------------------------------------





                                                       이것은 첫번째 줄입니다
                                                       이것은 두번째 줄입니다
                                                       이것은 세번째 줄입니다

                                            Well Drilling Cost Summary:  Output=Separate                                          16

............................................................ _cal_=CAL1 ............................................................

        -------------------------------------------------------------------------------------------------------------------
        |                                                                                                                 |
        |                                                    7월  1985                                                    |
        |                                                                                                                 |
        |-----------------------------------------------------------------------------------------------------------------|
        |      월요일      |      화요일      |      수요일      |      목요일      |      금요일      |      토요일      |
        |------------------+------------------+------------------+------------------+------------------+------------------|
        |         1        |         2        |         3        |         4        |         5        |         6        |
        |                  |                  |                  |***Independence***|                  |                  |
        | Drill Well       |                  |                  | Lay Power Line   | Assemble Tank    |                  |
        |              3.5 |                  |                  |                3 |                4 |                  |
        |        $1,000.00 |                  |                  |        $2,000.00 |        $1,000.00 |                  |
        |------------------+------------------+------------------+------------------+------------------+------------------|
        |         8        |         9        |        10        |        11        |        12        |        13        |
        |                  |                  |                  |                  |                  |                  |
        | Build Pump House |                  |                  | Pour Foundation  |                  |                  |
        |                3 |                  |                  |                4 |                  |                  |
        |        $2,000.00 |                  |                  |        $1,500.00 |                  |                  |
        |------------------+------------------+------------------+------------------+------------------+------------------|
        |        15        |        16        |        17        |        18        |        19        |        20        |
        |                  |                  |                  |                  |                  |                  |
        | Install Pump     |                  |                  |                  | Install Pipe     | Erect Tower      |
        |                4 |                  |                  |                  |                2 |                6 |
        |          $500.00 |                  |                  |                  |        $1,000.00 |        $2,500.00 |
        |------------------+------------------+------------------+------------------+------------------+------------------|
        |        22        |        23        |        24        |        25        |        26        |        27        |
        |                  |                  |                  |                  |                  |                  |
        |                  |                  |                  |                  |                  |                  |
        |                  |                  |                  |                  |                  |                  |
        |                  |                  |                  |                  |                  |                  |
        |------------------+------------------+------------------+------------------+------------------+------------------|
        |        29        |        30        |        31        |                  |                  |                  |
        |                  |                  |                  |                  |                  |                  |
        |                  |                  |                  |                  |                  |                  |
        |                  |                  |                  |                  |                  |                  |
        |                  |                  |                  |                  |                  |                  |
        -------------------------------------------------------------------------------------------------------------------

                                                      ------------------------
                                                      |   범례   |   합계    |
                                                      |          |           |
                                                      | task     |           |
                                                      | dur      |           |
                                                      | cost     | $11500.00 |
                                                      ------------------------





                                                       이것은 첫번째 줄입니다
                                                       이것은 두번째 줄입니다
                                                       이것은 세번째 줄입니다

                                            Well Drilling Cost Summary:  Output=Separate                                          17

............................................................ _cal_=CAL2 ............................................................

        -------------------------------------------------------------------------------------------------------------------
        |                                                                                                                 |
        |                                                    7월  1985                                                    |
        |                                                                                                                 |
        |-----------------------------------------------------------------------------------------------------------------|
        |      월요일      |      화요일      |      수요일      |      목요일      |      금요일      |      토요일      |
        |------------------+------------------+------------------+------------------+------------------+------------------|
        |         1        |         2        |         3        |         4        |         5        |         6        |
        |                  |                  |                  |                  |                  |                  |
        | Deliver Material |                  | Excavate         |                  |                  |                  |
        |                2 |                  |             4.75 |                  |                  |                  |
        |          $500.00 |                  |        $3,500.00 |                  |                  |                  |
        |------------------+------------------+------------------+------------------+------------------+------------------|
        |         8        |         9        |        10        |        11        |        12        |        13        |
        |*****Vacation*****|                  |                  |                  |                  |                  |
        |                  |                  |                  |                  |                  |                  |
        |                  |                  |                  |                  |                  |                  |
        |                  |                  |                  |                  |                  |                  |
        |------------------+------------------+------------------+------------------+------------------+------------------|
        |        15        |        16        |        17        |        18        |        19        |        20        |
        |                  |                  |                  |                  |                  |                  |
        |                  |                  |                  |                  |                  |                  |
        |                  |                  |                  |                  |                  |                  |
        |                  |                  |                  |                  |                  |                  |
        |------------------+------------------+------------------+------------------+------------------+------------------|
        |        22        |        23        |        24        |        25        |        26        |        27        |
        |                  |                  |                  |                  |                  |                  |
        |                  |                  |                  |                  |                  |                  |
        |                  |                  |                  |                  |                  |                  |
        |                  |                  |                  |                  |                  |                  |
        |------------------+------------------+------------------+------------------+------------------+------------------|
        |        29        |        30        |        31        |                  |                  |                  |
        |                  |                  |                  |                  |                  |                  |
        |                  |                  |                  |                  |                  |                  |
        |                  |                  |                  |                  |                  |                  |
        |                  |                  |                  |                  |                  |                  |
        -------------------------------------------------------------------------------------------------------------------

                                                      ------------------------
                                                      |   범례   |   합계    |
                                                      |          |           |
                                                      | task     |           |
                                                      | dur      |           |
                                                      | cost     | $4,000.00 |
                                                      ------------------------





                                                       이것은 첫번째 줄입니다
                                                       이것은 두번째 줄입니다
                                                       이것은 세번째 줄입니다

                                            Well Drilling Cost Summary:  Output=Combine                                           18

             -------------------------------------------------------------------------------------------------------------------
             |                                                                                                                 |
             |                                                    7월  1985                                                    |
             |                                                                                                                 |
             |-----------------------------------------------------------------------------------------------------------------|
             |      월요일      |      화요일      |      수요일      |      목요일      |      금요일      |      토요일      |
   ----------+------------------+------------------+------------------+------------------+------------------+------------------|
   |         |         1        |         2        |         3        |         4        |         5        |         6        |
   |.........|..................|..................|..................|..................|..................|..................|
   | CAL1    | Drill Well       |                  |                  | Lay Power Line   | Assemble Tank    |                  |
   |         |              3.5 |                  |                  |                3 |                4 |                  |
   |         |        $1,000.00 |                  |                  |        $2,000.00 |        $1,000.00 |                  |
   |.........|..................|..................|..................|..................|..................|..................|
   |---------+------------------+------------------+------------------+------------------+------------------+------------------|
   |         |         8        |         9        |        10        |        11        |        12        |        13        |
   |.........|..................|..................|..................|..................|..................|..................|
   | CAL1    | Build Pump House |                  |                  | Pour Foundation  |                  |                  |
   |         |                3 |                  |                  |                4 |                  |                  |
   |         |        $2,000.00 |                  |                  |        $1,500.00 |                  |                  |
   |         |                  |                  |                  |                  |                  |                  |
   |---------+------------------+------------------+------------------+------------------+------------------+------------------|
   |         |        15        |        16        |        17        |        18        |        19        |        20        |
   |.........|..................|..................|..................|..................|..................|..................|
   | CAL1    | Install Pump     |                  |                  |                  | Install Pipe     | Erect Tower      |
   |         |                4 |                  |                  |                  |                2 |                6 |
   |         |          $500.00 |                  |                  |                  |        $1,000.00 |        $2,500.00 |
   |         |                  |                  |                  |                  |                  |                  |
   |---------+------------------+------------------+------------------+------------------+------------------+------------------|
   |         |        22        |        23        |        24        |        25        |        26        |        27        |
   |         |                  |                  |                  |                  |                  |                  |
   |         |                  |                  |                  |                  |                  |                  |
   |         |                  |                  |                  |                  |                  |                  |
   |         |                  |                  |                  |                  |                  |                  |
   |         |                  |                  |                  |                  |                  |                  |
   |---------+------------------+------------------+------------------+------------------+------------------+------------------|
   |         |        29        |        30        |        31        |                  |                  |                  |
   |         |                  |                  |                  |                  |                  |                  |
   |         |                  |                  |                  |                  |                  |                  |
   |         |                  |                  |                  |                  |                  |                  |
   |         |                  |                  |                  |                  |                  |                  |
   |         |                  |                  |                  |                  |                  |                  |
   -----------------------------------------------------------------------------------------------------------------------------







                                                       이것은 첫번째 줄입니다
                                                       이것은 두번째 줄입니다
                                                       이것은 세번째 줄입니다

                                            Well Drilling Cost Summary:  Output=Combine                                           19

                                                 ----------------------------------
                                                 |         |   범례   |   합계    |
                                                 |.........|..........|...........|
                                                 | DEFAULT | task     |           |
                                                 |         | dur      |           |
                                                 |         | cost     |     $0.00 |
                                                 |.........|..........|...........|
                                                 | CAL1    | task     |           |
                                                 |         | dur      |           |
                                                 |         | cost     | $11500.00 |
                                                 |.........|..........|...........|
                                                 | CAL2    | task     |           |
                                                 |         | dur      |           |
                                                 |         | cost     | $4,000.00 |
                                                 |=========|==========|===========|
                                                 |         | task     |           |
                                                 |         | dur      |           |
                                                 |         | cost     | $15500.00 |
                                                 ----------------------------------



















                                                       이것은 첫번째 줄입니다
                                                       이것은 두번째 줄입니다
                                                       이것은 세번째 줄입니다

                                              Well Drilling Cost Summary:  Output=Mix                                             20

        -------------------------------------------------------------------------------------------------------------------
        |                                                                                                                 |
        |                                                    7월  1985                                                    |
        |                                                                                                                 |
        |-----------------------------------------------------------------------------------------------------------------|
        |      월요일      |      화요일      |      수요일      |      목요일      |      금요일      |      토요일      |
        |------------------+------------------+------------------+------------------+------------------+------------------|
        |         1        |         2        |         3        |         4        |         5        |         6        |
        |                  |                  |                  |***Independence***|                  |                  |
        | Deliver Material |                  | Excavate         | Lay Power Line   | Assemble Tank    |                  |
        |                2 |                  |             4.75 |                3 |                4 |                  |
        |          $500.00 |                  |        $3,500.00 |        $2,000.00 |        $1,000.00 |                  |
        |------------------+------------------+------------------+------------------+------------------+------------------|
        |         8        |         9        |        10        |        11        |        12        |        13        |
        |                  |                  |                  |                  |                  |                  |
        | Build Pump House |                  |                  | Pour Foundation  |                  |                  |
        |                3 |                  |                  |                4 |                  |                  |
        |        $2,000.00 |                  |                  |        $1,500.00 |                  |                  |
        |------------------+------------------+------------------+------------------+------------------+------------------|
        |        15        |        16        |        17        |        18        |        19        |        20        |
        |                  |                  |                  |                  |                  |                  |
        | Install Pump     |                  |                  |                  | Install Pipe     | Erect Tower      |
        |                4 |                  |                  |                  |                2 |                6 |
        |          $500.00 |                  |                  |                  |        $1,000.00 |        $2,500.00 |
        |------------------+------------------+------------------+------------------+------------------+------------------|
        |        22        |        23        |        24        |        25        |        26        |        27        |
        |                  |                  |                  |                  |                  |                  |
        |                  |                  |                  |                  |                  |                  |
        |                  |                  |                  |                  |                  |                  |
        |                  |                  |                  |                  |                  |                  |
        |------------------+------------------+------------------+------------------+------------------+------------------|
        |        29        |        30        |        31        |                  |                  |                  |
        |                  |                  |                  |                  |                  |                  |
        |                  |                  |                  |                  |                  |                  |
        |                  |                  |                  |                  |                  |                  |
        |                  |                  |                  |                  |                  |                  |
        -------------------------------------------------------------------------------------------------------------------

                                                      ------------------------
                                                      |   범례   |   합계    |
                                                      |          |           |
                                                      | task     |           |
                                                      | dur      |           |
                                                      | cost     | $14500.00 |
                                                      ------------------------









                                                       이것은 첫번째 줄입니다
                                                       이것은 두번째 줄입니다
                                                       이것은 세번째 줄입니다

                                       Summer Planning Calendar:  Julia Q. Wydget, President                                      21
                                                        Better Products Inc.

-----------------------------------------------------------------------------------------------------------------------------------
|                                                                                                                                 |
|                                                            7월  1991                                                            |
|                                                                                                                                 |
|---------------------------------------------------------------------------------------------------------------------------------|
|         월요일          |         화요일          |         수요일          |         목요일          |         금요일          |
|-------------------------+-------------------------+-------------------------+-------------------------+-------------------------|
|            1            |            2            |            3            |            4            |            5            |
|                         |                         |                         |******Independence*******|                         |
|                         |                         |                         |                         |                         |
|                         |                         |                         |                         |                         |
|                         |                         |                         |                         |                         |
|                         |                         |                         |                         |                         |
|                         |                         |+=====Interview/JW======+|                         |                         |
|+====Dist. Mtg./All=====+|+============Mgrs. Meeting/District 6=============+|                         |+====VIP Banquet/JW=====+|
|-------------------------+-------------------------+-------------------------+-------------------------+-------------------------|
|            8            |            9            |           10            |           11            |           12            |
|                         |                         |                         |                         |                         |
|                         |                         |                         |                         |                         |
|                         |                         |                         |                         |                         |
|                         |                         |                         |                         |                         |
|                         |                         |                         |+Planning Council/Group +|+=====Seminar/White=====+|
|+==============================Trade Show/Knox==============================+|+============Mgrs. Meeting/District 7=============+|
|+====================================================Sales Drive/District 6=====================================================+|
|-------------------------+-------------------------+-------------------------+-------------------------+-------------------------|
|           15            |           16            |           17            |           18            |           19            |
|                         |                         |                         |                         |                         |
|                         |                         |                         |                         |                         |
|                         |                         |                         |                         |                         |
|                         |                         |                         |                         |                         |
|                         |                         |                         |+Planning Council/Group +|+====Co. Picnic/All=====+|
|                         |+======Dentist/JW=======+|+=Bank Meeting/1st Natl=+|+NewsLetter Deadline/All+|+=====Seminar/White=====+|
|+====================================================Sales Drive/District 7=====================================================+|
|-------------------------+-------------------------+-------------------------+-------------------------+-------------------------|
|           22            |           23            |           24            |           25            |           26            |
|                         |                         |                         |                         |                         |
|                         |                         |                         |                         |                         |
|                         |                         |                         |                         |                         |
|                         |                         |                         |                         |                         |
|                         |                         |                         |                         |                         |
|                         |                         |+=====Birthday/Mary=====+|+==============Close Sale/WYGIX Co.===============+|
|+===========================Inventors Show/Melvin===========================+|+Planning Council/Group +|                         |
|-------------------------+-------------------------+-------------------------+-------------------------+-------------------------|
|           29            |           30            |           31            |                         |                         |
|********Vacation*********|********Vacation*********|********Vacation*********|                         |                         |
|                         |                         |                         |                         |                         |
|                         |                         |                         |                         |                         |
|                         |                         |                         |                         |                         |
|                         |                         |                         |                         |                         |
|                         |                         |                         |                         |                         |
|                         |                         |                         |                         |                         |
-----------------------------------------------------------------------------------------------------------------------------------


                                                       이것은 첫번째 줄입니다
                                                       이것은 두번째 줄입니다
                                                       이것은 세번째 줄입니다

                                           Well Drilling Work Schedule:  Output=Separate                                          22

............................................................ _cal_=CAL1 ............................................................

  -------------------------------------------------------------------------------------------------------------------------------
  |                                                                                                                             |
  |                                                          7월  1985                                                          |
  |                                                                                                                             |
  |-----------------------------------------------------------------------------------------------------------------------------|
  |       월요일       |       화요일       |       수요일       |       목요일       |       금요일       |       토요일       |
  |--------------------+--------------------+--------------------+--------------------+--------------------+--------------------|
  |          1         |          2         |          3         |          4         |          5         |          6         |
  |                    |                    |                    |****Independence****|                    |                    |
  |                    |                    |                    |                    |                    |                    |
  |                    |                    |                    |                    |+Assemble Tank/$1,0>|                    |
  |                    |                    |                    |                    |+Lay Power Line/$2,>|                    |
  |+====================Drill Well/$1,000.00====================>|                    |<Drill Well/$1,000.+|                    |
  |--------------------+--------------------+--------------------+--------------------+--------------------+--------------------|
  |          8         |          9         |         10         |         11         |         12         |         13         |
  |                    |                    |                    |                    |                    |                    |
  |                    |                    |                    |                    |                    |                    |
  |+===========================Build Pump House/$2,000.00============================+|                    |                    |
  |<=============================Assemble Tank/$1,000.00=============================+|                    |                    |
  |<=======Lay Power Line/$2,000.00========+|                    |+=======Pour Foundation/$1,500.00=======>|                    |
  |--------------------+--------------------+--------------------+--------------------+--------------------+--------------------|
  |         15         |         16         |         17         |         18         |         19         |         20         |
  |                    |                    |                    |                    |                    |                    |
  |                    |                    |                    |                    |                    |                    |
  |                    |                    |                    |                    |                    |                    |
  |+=========================================Install Pump/$500.00=========================================+|                    |
  |<=================Pour Foundation/$1,500.00==================+|                    |+Install Pipe/$1,00>|                    |
  |--------------------+--------------------+--------------------+--------------------+--------------------+--------------------|
  |         22         |         23         |         24         |         25         |         26         |         27         |
  |                    |                    |                    |                    |                    |                    |
  |                    |                    |                    |                    |                    |                    |
  |                    |                    |                    |                    |                    |                    |
  |+========================================Erect Tower/$2,500.00=========================================>|                    |
  |<========Install Pipe/$1,000.00=========+|                    |                    |                    |                    |
  |--------------------+--------------------+--------------------+--------------------+--------------------+--------------------|
  |         29         |         30         |         31         |                    |                    |                    |
  |                    |                    |                    |                    |                    |                    |
  |                    |                    |                    |                    |                    |                    |
  |                    |                    |                    |                    |                    |                    |
  |                    |                    |                    |                    |                    |                    |
  |<Erect Tower/$2,500+|                    |                    |                    |                    |                    |
  -------------------------------------------------------------------------------------------------------------------------------






                                                       이것은 첫번째 줄입니다
                                                       이것은 두번째 줄입니다
                                                       이것은 세번째 줄입니다

                                           Well Drilling Work Schedule:  Output=Separate                                          23

............................................................ _cal_=CAL2 ............................................................

  -------------------------------------------------------------------------------------------------------------------------------
  |                                                                                                                             |
  |                                                          7월  1985                                                          |
  |                                                                                                                             |
  |-----------------------------------------------------------------------------------------------------------------------------|
  |       월요일       |       화요일       |       수요일       |       목요일       |       금요일       |       토요일       |
  |--------------------+--------------------+--------------------+--------------------+--------------------+--------------------|
  |          1         |          2         |          3         |          4         |          5         |          6         |
  |                    |                    |                    |                    |                    |                    |
  |                    |                    |                    |                    |                    |                    |
  |                    |                    |                    |                    |                    |                    |
  |                    |                    |+===============================Excavate/$3,500.00================================>|
  |+==================Deliver Material/$500.00==================+|                    |                    |                    |
  |--------------------+--------------------+--------------------+--------------------+--------------------+--------------------|
  |          8         |          9         |         10         |         11         |         12         |         13         |
  |******Vacation******|                    |                    |                    |                    |                    |
  |                    |                    |                    |                    |                    |                    |
  |                    |                    |                    |                    |                    |                    |
  |                    |                    |                    |                    |                    |                    |
  |                    |<==========Excavate/$3,500.00===========+|                    |                    |                    |
  |--------------------+--------------------+--------------------+--------------------+--------------------+--------------------|
  |         15         |         16         |         17         |         18         |         19         |         20         |
  |                    |                    |                    |                    |                    |                    |
  |                    |                    |                    |                    |                    |                    |
  |                    |                    |                    |                    |                    |                    |
  |                    |                    |                    |                    |                    |                    |
  |                    |                    |                    |                    |                    |                    |
  |--------------------+--------------------+--------------------+--------------------+--------------------+--------------------|
  |         22         |         23         |         24         |         25         |         26         |         27         |
  |                    |                    |                    |                    |                    |                    |
  |                    |                    |                    |                    |                    |                    |
  |                    |                    |                    |                    |                    |                    |
  |                    |                    |                    |                    |                    |                    |
  |                    |                    |                    |                    |                    |                    |
  |--------------------+--------------------+--------------------+--------------------+--------------------+--------------------|
  |         29         |         30         |         31         |                    |                    |                    |
  |                    |                    |                    |                    |                    |                    |
  |                    |                    |                    |                    |                    |                    |
  |                    |                    |                    |                    |                    |                    |
  |                    |                    |                    |                    |                    |                    |
  |                    |                    |                    |                    |                    |                    |
  -------------------------------------------------------------------------------------------------------------------------------






                                                       이것은 첫번째 줄입니다
                                                       이것은 두번째 줄입니다
                                                       이것은 세번째 줄입니다

                                            Well Drilling Work Schedule:  Output=Combine                                          24

          -------------------------------------------------------------------------------------------------------------------------
          |                                                                                                                       |
          |                                                       7월  1985                                                       |
          |                                                                                                                       |
          |-----------------------------------------------------------------------------------------------------------------------|
          |      월요일       |      화요일       |      수요일       |      목요일       |      금요일       |      토요일       |
----------+-------------------+-------------------+-------------------+-------------------+-------------------+-------------------|
|         |         1         |         2         |         3         |         4         |         5         |         6         |
|.........|...................|...................|...................|...................|...................|...................|
| CAL1    |                   |                   |                   |***Independence****|+Assemble Tank/$1,>|                   |
|         |                   |                   |                   |                   |+Lay Power Line/$2>|                   |
|         |+==================Drill Well/$1,000.00===================>|                   |<Drill Well/$1,000+|                   |
|.........|...................|...................|...................|...................|...................|...................|
| CAL2    |                   |                   |+=============================Excavate/$3,500.00==============================>|
|---------+-------------------+-------------------+-------------------+-------------------+-------------------+-------------------|
|         |         8         |         9         |        10         |        11         |        12         |        13         |
|.........|...................|...................|...................|...................|...................|...................|
| CAL1    |+=========================Build Pump House/$2,000.00==========================+|                   |                   |
|         |<===========================Assemble Tank/$1,000.00===========================+|                   |                   |
|         |<======Lay Power Line/$2,000.00=======+|                   |+======Pour Foundation/$1,500.00======>|                   |
|.........|...................|...................|...................|...................|...................|...................|
| CAL2    |*****Vacation******|<=========Excavate/$3,500.00==========+|                   |                   |                   |
|---------+-------------------+-------------------+-------------------+-------------------+-------------------+-------------------|
|         |        15         |        16         |        17         |        18         |        19         |        20         |
|.........|...................|...................|...................|...................|...................|...................|
| CAL1    |+======================================Install Pump/$500.00=======================================+|                   |
|         |<================Pour Foundation/$1,500.00================+|                   |+Install Pipe/$1,0>|                   |
|         |                   |                   |                   |                   |                   |                   |
|         |                   |                   |                   |                   |                   |                   |
|         |                   |                   |                   |                   |                   |                   |
|---------+-------------------+-------------------+-------------------+-------------------+-------------------+-------------------|
|         |        22         |        23         |        24         |        25         |        26         |        27         |
|.........|...................|...................|...................|...................|...................|...................|
| CAL1    |+======================================Erect Tower/$2,500.00======================================>|                   |
|         |<=======Install Pipe/$1,000.00========+|                   |                   |                   |                   |
|         |                   |                   |                   |                   |                   |                   |
|         |                   |                   |                   |                   |                   |                   |
|         |                   |                   |                   |                   |                   |                   |
|---------+-------------------+-------------------+-------------------+-------------------+-------------------+-------------------|
|         |        29         |        30         |        31         |                   |                   |                   |
|.........|...................|...................|...................|...................|...................|...................|
| CAL1    |<Erect Tower/$2,50+|                   |                   |                   |                   |                   |
|         |                   |                   |                   |                   |                   |                   |
|         |                   |                   |                   |                   |                   |                   |
|         |                   |                   |                   |                   |                   |                   |
|         |                   |                   |                   |                   |                   |                   |
-----------------------------------------------------------------------------------------------------------------------------------








                                                       이것은 첫번째 줄입니다
                                                       이것은 두번째 줄입니다
                                                       이것은 세번째 줄입니다

                                              Well Drilling Work Schedule:  Output=Mix                                            25

  -------------------------------------------------------------------------------------------------------------------------------
  |                                                                                                                             |
  |                                                          7월  1985                                                          |
  |                                                                                                                             |
  |-----------------------------------------------------------------------------------------------------------------------------|
  |       월요일       |       화요일       |       수요일       |       목요일       |       금요일       |       토요일       |
  |--------------------+--------------------+--------------------+--------------------+--------------------+--------------------|
  |          1         |          2         |          3         |          4         |          5         |          6         |
  |                    |                    |                    |                    |                    |                    |
  |                    |                    |                    |                    |                    |                    |
  |                    |                    |                    |                    |+Assemble Tank/$1,0>|                    |
  |                    |                    |+===============================Excavate/$3,500.00================================>|
  |+==================Deliver Material/$500.00==================+|****Independence****|+Lay Power Line/$2,>|                    |
  |+====================Drill Well/$1,000.00====================>|****Independence****|<Drill Well/$1,000.+|                    |
  |--------------------+--------------------+--------------------+--------------------+--------------------+--------------------|
  |          8         |          9         |         10         |         11         |         12         |         13         |
  |                    |                    |                    |                    |                    |                    |
  |                    |                    |                    |                    |                    |                    |
  |+===========================Build Pump House/$2,000.00============================+|                    |                    |
  |<=============================Assemble Tank/$1,000.00=============================+|                    |                    |
  |<=======Lay Power Line/$2,000.00========+|                    |                    |                    |                    |
  |******Vacation******|<==========Excavate/$3,500.00===========+|+=======Pour Foundation/$1,500.00=======>|                    |
  |--------------------+--------------------+--------------------+--------------------+--------------------+--------------------|
  |         15         |         16         |         17         |         18         |         19         |         20         |
  |                    |                    |                    |                    |                    |                    |
  |                    |                    |                    |                    |                    |                    |
  |                    |                    |                    |                    |                    |                    |
  |                    |                    |                    |                    |                    |                    |
  |+=========================================Install Pump/$500.00=========================================+|                    |
  |<=================Pour Foundation/$1,500.00==================+|                    |+Install Pipe/$1,00>|                    |
  |--------------------+--------------------+--------------------+--------------------+--------------------+--------------------|
  |         22         |         23         |         24         |         25         |         26         |         27         |
  |                    |                    |                    |                    |                    |                    |
  |                    |                    |                    |                    |                    |                    |
  |                    |                    |                    |                    |                    |                    |
  |                    |                    |                    |                    |                    |                    |
  |+========================================Erect Tower/$2,500.00=========================================>|                    |
  |<========Install Pipe/$1,000.00=========+|                    |                    |                    |                    |
  |--------------------+--------------------+--------------------+--------------------+--------------------+--------------------|
  |         29         |         30         |         31         |                    |                    |                    |
  |                    |                    |                    |                    |                    |                    |
  |                    |                    |                    |                    |                    |                    |
  |                    |                    |                    |                    |                    |                    |
  |                    |                    |                    |                    |                    |                    |
  |                    |                    |                    |                    |                    |                    |
  |<Erect Tower/$2,500+|                    |                    |                    |                    |                    |
  -------------------------------------------------------------------------------------------------------------------------------








                                                       이것은 첫번째 줄입니다
                                                       이것은 두번째 줄입니다
                                                       이것은 세번째 줄입니다

♥♥♥♥♥
음...대단하군.. title과 foot을 안지워서 이 무슨 간간히 테러의 흔적이 남는 것이더냐;;;
아무튼, 이런식으로 캘린더를 운용할 수 있다.
놀라지마라!! 내가 짠 거 아니다!! 그렇게 생각하면 나도 놀란다! ㅇ_ㅇ!!

아무튼 그래서 4장 끝이다.
...허무하다고?
...말했지 않는가. 별 것 없다고.
...좀 믿고 살자.

5장부터 실제 프로그래밍으로 들어간다. 그럼 지금까지는 뭐였냐고?
소개다..소개다...소개다....소개다......소개다...........소개다....................

by Joe & Soohy 2007. 2. 16. 21:20