sas導(dǎo)入excel數(shù)據(jù)的教程
sas導(dǎo)入excel數(shù)據(jù)的教程
在Excel中錄入好數(shù)據(jù)以后經(jīng)常需要把整個(gè)數(shù)據(jù)給導(dǎo)入到sas中,具體該怎么導(dǎo)入excel數(shù)據(jù)呢?下面是由學(xué)習(xí)啦小編分享的sas導(dǎo)入excel數(shù)據(jù)的教程,以供大家閱讀和學(xué)習(xí)。
sas導(dǎo)入excel數(shù)據(jù)的教程:
sas導(dǎo)入excel數(shù)據(jù)步驟1:?jiǎn)?dòng)SAS,關(guān)閉想要導(dǎo)入數(shù)據(jù)的excel文件
sas導(dǎo)入excel數(shù)據(jù)步驟2:輸入以下代碼:
sas導(dǎo)入excel數(shù)據(jù)步驟3:*通過(guò) import 過(guò)程讀取外部excel文件建立數(shù)據(jù)集;libname paper1 'e:\paper';proc import out=paper1.paper1 /*輸出的數(shù)據(jù)集名*/ datafile="E:\paperyong\paperdata.xlsx";/*要導(dǎo)入的excel文件的完整路徑和數(shù)據(jù)名,要寫(xiě)清楚擴(kuò)展名*/ sheet="sheet2";/*指出電子表格中的那一個(gè)表單,就是表單名字*/ getnames=yes;/*指出第一行是否有字段名*/ run;
sas導(dǎo)入excel數(shù)據(jù)步驟4:點(diǎn)sas右上方 奔跑的小人圖案運(yùn)行
sas導(dǎo)入excel數(shù)據(jù)步驟5:得到結(jié)果如圖,數(shù)據(jù)導(dǎo)入成功
sas導(dǎo)入excel數(shù)據(jù)步驟6:打開(kāi)左邊SAS資源管理管理器查看數(shù)據(jù)
1.數(shù)據(jù)怎么導(dǎo)入excel的教程
3.excel2010導(dǎo)入外部數(shù)據(jù)的教程
4.excel表格導(dǎo)入網(wǎng)頁(yè)數(shù)據(jù)的教程