由买买提看人间百态

boards

本页内容为未名空间相应帖子的节选和存档,一周内的贴子最多显示50字,超过一周显示500字 访问原贴
Statistics版 - 笨人sas/excel 问题
相关主题
Proc import 读excel文件,怎么略去前面几行?reading data into sas 问题
@@请教用SAS import CSV 文件时遇到的状况帮我看看如何导入.dat file into sas吧
questions about SAS import Excel dataHelp:import excel file into sas
SAS proc import excel file 紧急求助[合集] excel data
How to search all data files in a folder?再看SAS in stock market 这本书 有啥数据库可以拿来联系的吗
求帮助:excel数据转csv和sas的读取SAS的一个小问题
请问SAS BASE考试中12题的正确答案是什么?[请教]SAS 9.2 import excel变量名长度
SAS 转 Excelhelp on importing csv file to SAS
相关话题的讨论汇总
话题: getnames话题: datarow话题: sas话题: when话题: excel
进入Statistics版参与讨论
1 (共1页)
r*****n
发帖数: 92
1
用sas/access 读excel 文档, 文档第一行是内容提要, 第二行才是virable names
怎么让SAS默认第二行是headers? 网上没找到合适的答案。 谢谢!
s*r
发帖数: 2757
2
give me 100 if this works
DATAROW=n;
starts reading data from row number n in the external file.
Default: 1 when GETNAMES=NO
2 when GETNAMES=YES (default for GETNAMES=)
Interaction: When GETNAMES=YES, DATAROW= must be equal to or greater than 2. When GETNAMES=NO, DATAROW must be equal to or greater than 1.
c*******o
发帖数: 8869
3
delete the first line, hehe

【在 r*****n 的大作中提到】
: 用sas/access 读excel 文档, 文档第一行是内容提要, 第二行才是virable names
: 怎么让SAS默认第二行是headers? 网上没找到合适的答案。 谢谢!

p********a
发帖数: 5352
4
datarow is good, or use range option
proc import ...;
sheet="xxx";
range="a2:c65536";
getnames=yes;
run;
r*****n
发帖数: 92
5
Thanks for all the answers.but I was thinking of
using 'libname aaa excel ....' instead of proc import.
wondering if there's any options for reading from the
second row as header.
Thanks
1 (共1页)
进入Statistics版参与讨论
相关主题
help on importing csv file to SASHow to search all data files in a folder?
请教如何同时用sas打开多个excel文件?多谢!求帮助:excel数据转csv和sas的读取
SAS 数据读入的问题 (proc import)请问SAS BASE考试中12题的正确答案是什么?
SAS 怎么加上表头SAS 转 Excel
Proc import 读excel文件,怎么略去前面几行?reading data into sas 问题
@@请教用SAS import CSV 文件时遇到的状况帮我看看如何导入.dat file into sas吧
questions about SAS import Excel dataHelp:import excel file into sas
SAS proc import excel file 紧急求助[合集] excel data
相关话题的讨论汇总
话题: getnames话题: datarow话题: sas话题: when话题: excel