javascript.co.kr 통계프로그래밍 > javascript5 | javascript.co.kr report

통계프로그래밍 > javascript5

본문 바로가기

javascript5


[[ 이 포스팅은 제휴마케팅이 포함된 광고로 커미션을 지급 받습니다. ]


통계프로그래밍

페이지 정보

작성일 19-06-08 00:07

본문




Download : 통계프로그래밍.hwp




통계프로그래밍 , 통계프로그래밍공학기술레포트 , 통계프로그래밍

통계프로그래밍,공학기술,레포트


레포트/공학기술

통계프로그래밍




설명
순서

통계패키지

1)
filename mydata dde `excel|sheet1!r1c1:r154c3`
data Foodwaste;
infile mydata firstobs=3 dlm=`09`x notab missover dsd
input Date Charge Use_kg ;
informat Date yymmdd10.
informat Charge comma. ;
Amount=int(Use_kg73) ;
retain Balance 0 ;
if Charge=. then Charge=0 ;
if Use_kg=. then Use_kg=0 ;
if Amount=. then Amount=0 ;
Balance+Charge-Amount ;
yy= year(Date) ;
mm=month(Date) ;
proc print data=Foodwaste (obs= 5);
var Date Charge Use_Kg Amount Balance ;
format Date yymmdd10.
format Change comma.
format Balance comma.
run

proc print data=Foodwaste (firstobs= 148);
var Date Charge Use_Kg Amount Balance ;
format Date yymmdd10.
format Change comma.
format Balance comma.
run
proc means sum mean
class yy ;
var Use_kg Amount ;
WHERE yy=2014 or yy=2015 ;
run

proc means sum mean
class yy mm;
var Use_kg Amount ;
WHERE yy^=2013 or mm^=2015 ;
run;
-
(로그)
NOTE: Copyright (c) 2002-xxxx by SAS Institute Inc., Cary, NC, USA.…(drop)

Download : 통계프로그래밍.hwp( 14 )




통계프로그래밍
통계프로그래밍_hwp_01.gif 통계프로그래밍_hwp_02.gif 통계프로그래밍_hwp_03.gif 통계프로그래밍_hwp_04.gif 통계프로그래밍_hwp_05.gif 통계프로그래밍_hwp_06.gif






다.
REPORT 74(sv75)



해당자료의 저작권은 각 업로더에게 있습니다.

javascript.co.kr 은 통신판매중개자이며 통신판매의 당사자가 아닙니다.
따라서 상품·거래정보 및 거래에 대하여 책임을 지지 않습니다.
[[ 이 포스팅은 제휴마케팅이 포함된 광고로 커미션을 지급 받습니다 ]]

[저작권이나 명예훼손 또는 권리를 침해했다면 이메일 admin@hong.kr 로 연락주시면 확인후 바로 처리해 드리겠습니다.]
If you have violated copyright, defamation, of rights, please contact us by email at [ admin@hong.kr ] and we will take care of it immediately after confirmation.
Copyright © javascript.co.kr All rights reserved.