n****o 发帖数: 1167 | 1 用infile,但不知道input哪些variable,求教 |
a******n 发帖数: 11246 | 2 先转成sas data file,然后用proc contents
【在 n****o 的大作中提到】 : 用infile,但不知道input哪些variable,求教
|
c*****1 发帖数: 131 | 3 You need to get the layout of the text file before reading.
【在 n****o 的大作中提到】 : 用infile,但不知道input哪些variable,求教
|
D******n 发帖数: 2836 | 4 delimited? fixed length or complicated style(those what to read next depends
on the current field)?
【在 n****o 的大作中提到】 : 用infile,但不知道input哪些variable,求教
|
k*******a 发帖数: 772 | 5 看你file啥结构的
你可以试试 proc import 啊 |
S******y 发帖数: 1123 | 6 You might want to use Python to read the first line of text for viewing.
f = open('myfile,txt', 'r')
ctr = 0
for line in f:
print line
ctr += 1
if ctr == 1: break |
a****u 发帖数: 95 | 7 可以试试 R的readLines
fid=open(fname,"r")
firstline<-readLines(fid,n=1)
close(fid) |
p***r 发帖数: 920 | 8 excel
【在 n****o 的大作中提到】 : 用infile,但不知道input哪些variable,求教
|
g**a 发帖数: 2129 | 9 varlist<-scan(file,what=character(),n=1) |