블로그
- SAS dataset에서 자료 random 추출하기 일단 자료를 불러 들이고 나서 추출하는게 더 간편함. proc surveyselect data=a method=srs n=1000 out=a1; run; 내용은... a라는 데이터 셋에서 1000개의 자료를 추출해서 a1으로 저장해라라는 뜻임 만약 복원추출을 할 경우 proc surveyselect data=a method=urs n=1000 out=a1; run
- 중복 자료에 대한 serial number 넣기 본 방법은 중복되는 자료에 대해서 번호를 붙여 자료를 처리할 때 유용 합니다. a라는 data set을 가지고 있다고 가정하죠 ============================== ============= data a; input animal; cards; 1 1 1 1 1 1 2 2 2 ; run; =================================
- [ myNote ] Hadoop → Reducers merge mappers together Mapping and reducing tasks run on nodes where individual records of data are already present.
- [영진전문대학 컴퓨터정보계열] .*; class Buffer{ private int data; private boolean empty = true; public synchronized int get(){ while public synchronized void put(int data){ while(!
- [영진전문대학 컴퓨터정보계열] 스레드 - 생산자 / 소비자 class Buffer { private int data; private boolean empty = true; public synchronized int get() { while ; } public synchronized void put(int data) { while (!
- 숫자자료를 날짜로 바꾸기 data a; dd='20021207'; da=input(dd,yymmdd8.); yy=year(da); proc print;run; 매번 쓰는거지만 서도 쓸때마다 햇갈리는....
- 엑셀 파일 불러오기 option validvarname=any; /*본격적으로 엑셀 파일 불러오기*/ proc import datafile="파일경로 또는 파일명 설정" out=work.a replace"; run 전에는 data ... set ... infile .... 이렇게 불렀었는데... 걍 import로 하고 경로지정을 하면 work 라이브러리에 쏘옥~ 참 편함..
- plsql 커서 사용법 A REF CURSOR is basically a data type. A cursor variable can be associated with different queries at run-time.
- Data Type Constants #include #include Run-Time Library Reference Data Type Constants Data type constants are implementation-dependent ranges of values allowed for integral data types.
← 이전
3 페이지