由买买提看人间百态

boards

本页内容为未名空间相应帖子的节选和存档,一周内的贴子最多显示50字,超过一周显示500字 访问原贴
Statistics版 - 怎么样用SAS把这样两个excel spreadsheet合并
相关主题
[提问]如何用SAS在同一个ExcelBook里create several spreadsheets?新手请SAS合并数据集问题
VBA在统计编程中的市场大不大?问题:多个Excel的一个column 怎么能合并到一个里面?
重新安排变量的问题[合集] a small question on SAS data import
Need helps in extracting data from 2 Excel TablesIs there a way to convert data in pdf file into Excel or SAS table?
问一个SAS format的问题,看似简单紧急求助,如何快速掌握SAS
工作机会,请站内联系[合集] 问一个SAS 从excel import数据的问题
很弱的SAS合并数据问题[合集] how to combine ATE files using R
一个关于R的小问题Import excel file to sas (the first 8 or more observations
相关话题的讨论汇总
话题: 2009话题: 地块话题: corn话题: excel
进入Statistics版参与讨论
1 (共1页)
l*****o
发帖数: 61
1
有两个Excel spreadsheet,一个有地块信息,结构如下:
year id crop source timing
2009 1 corn NH3 spring
2009 2 corn urea spring
2009 3 corn uan fall
...
2011 1 soy uan fall
2011 2 corn urea spring
2011 3 wheat urea fall
2011 4 corn NH3 starter
......
另一个有每个地块的施肥量试验,结构如下:
Year id strip treatment yield
2009 1 1 100 180
2009 1 2 150 183
2009 1 3 200 190
2009 1 4 250 220
2009 1 5 100 185
2009 1 6 150 189
2009 1 7 200 200
2009 1 8 250 218
......
我想把这两个excel spreadsheet合并,这两个spreadsheet共同的变量是year and id
,但是第一个一个地块只有一行关于地块本身的信息, 而第二个 spreadsheet有每个
地块的试验,所以每个地块都有8-20行。怎么把这两个spreadsheet 用SAS合并呢?
谢谢!
f*****y
发帖数: 822
2
data C;
merge A B;
by year id;
run;
1 (共1页)
进入Statistics版参与讨论
相关主题
Import excel file to sas (the first 8 or more observations问一个SAS format的问题,看似简单
How to search all data files in a folder?工作机会,请站内联系
Need urgent helps: How to use DDE to import password-protected excel file into SAS?很弱的SAS合并数据问题
请教:marketing analysis中EXCEL都用哪些功能啊?一个关于R的小问题
[提问]如何用SAS在同一个ExcelBook里create several spreadsheets?新手请SAS合并数据集问题
VBA在统计编程中的市场大不大?问题:多个Excel的一个column 怎么能合并到一个里面?
重新安排变量的问题[合集] a small question on SAS data import
Need helps in extracting data from 2 Excel TablesIs there a way to convert data in pdf file into Excel or SAS table?
相关话题的讨论汇总
话题: 2009话题: 地块话题: corn话题: excel