Hi John,
First off, thanks again for your help with this. Much appreciated.

I've attached a file of the original data (yes, as you can see there are
header names). These hour long files are zipped together on a computer
(which is actually an analyzer) and sent each morning to a server. I
then run the function below which extracts the data files and binds them
into daily files. I then save these files in the .RData format (the
'stuff' file I sent you). I agree that the way I am saving these files
must be causing the problem. I'm very new to R and this was the only way
I found to save the files, that 'seemed' to work. Please tell me if you
know a better way (I'm sure you do)!

###########Function used to extract and save######################
# this function extracts 1 hour iso data from zip files and creates
daily files

#
path = "Y:\\Data\\"
pathout = "Y:\\Daily\\"
time=Sys.time()
tt<- as.numeric(format.Date(time, "%Y%m%d"))
#tt<-"20110523" #used to manually enter in date
end = ".zip"
ind = paste(path,tt,end,sep="")
xx=unzip(ind)

#merge all files to one and split by day
iso<- c();d<- c()
for (x in xx) {
u<-read.table(x, header=TRUE, sep="", dec=".")
   u$dataset = x
   iso = rbind(iso,u)
   udate<- unique(iso$DATE)
   d=split(iso,iso$DATE)
}

#create directories and load if files exist. Then merge data from same
day and save
fname<- c()
finame<- c()
old<- c()
udate=gsub("[^0-9]","",udate)
for (i in 1:length(udate)){
#fname[i]<-  paste(pathout,udate[i],sep="")
finame[i]=paste(pathout,udate[i],".RData", sep="")
deskdir<- dir.create(pathout,showWarnings=FALSE)
   if (file.exists(finame[i])){
   old=load(finame[i])
   e3<- new.env()
   old<- get('isot', e3)
   isot = merge(old,d[i],all = TRUE)

   save(isot, file=finame[i])
   }else {
    isot=d[i]
    save(isot, file=finame[i])
   }

}
rm(list = ls(all = TRUE))
#############End####################


Once I have these daily RData files (e.g. 20110520.RData) I'd like to be
able to grab any number of them and plot them all together. I'm trying
to get this process streamlines as much as possible so I can come into
work each day and plot the data from the last week with 'a click of a
button'.

Thanks again!

Mat


On 5/24/2011 7:15 PM, John Kane wrote:
 Whoa, more data than I needed.  I called the rdata file from your dput results 
'stuff' so any commands to stuff is to that file

 You say "The structure is kind of strange" and I have to agree with you.  As 
it stands I cannot get it to do anything  A str(stuff) command show that it is  
data.frame with 8258 obs. of  38 variables. However it also says a variable called 
X2011.05.20.TIME which is a Factor w/ 114230 level--and this is patently nonsense.

 It is almost a certainty that it is something about the code you are using to 
load the data or the orginal structure of the file  which is causing the problem

 Simple commands like:
 names(stuff)
 stuff[1,1]
 stuff[,1]dim(stuff)

 are not working or returning nonsense


 I took the file, wrote it back out of R as a csv file and read it bake in and 
I seem to have something I can work with but, of course, that does not mean it 
looks like your orginal data.  Se my code below

 Some quick questions

 1. What is the format of the original data files?

 2. What commands are you using to read the data into R?
 Please supply the code.

 3.  Do the files actually have header names? It looks to me as if the reading 
in command thinks you have variable names at the top of the column but you 
don't and so it's using the first row of data as the variable names

 Mysteps
 #===================================================================
 #I took the stuff file and did a write.table on it,
 # storing the file as a text (or csv) file called mystuff
 #===================================================
   write.table(stuff, file="c:/rdata/mystuff.csv",
      row.names = FALSE, sep=",",
         col.names=FALSE   )
 #====================================================

 # I, then, read the data back into a new file "new.data"
 #====================================================
 new.data<- read.csv("c:/rdata/mystuff.csv",
           sep=",", header=FALSE)
 #====================================================

 #now commands like
   names(new.data)
      new.data[,1]
      dim(new.data)

 # are working the way we would expect.
 #=========================================================





 names(new.data)
      new.data[,1]






 --- On Tue, 5/24/11, Mathew Brown<mathew.br...@forst.uni-goettingen.de>   
wrote but

 From: Mathew Brown<mathew.br...@forst.uni-goettingen.de>
 Subject: Re: [R] plotting single variables common to multiple data frames
 To: "John Kane"<jrkrid...@yahoo.ca>
 Cc: r-help@r-project.org
 Received: Tuesday, May 24, 2011, 10:38 AM
 Here is some data. Only one day as
 two days were too big. The structure
 is kind of strange and I'm not sure how to 'grab' a single
 variable from
 it to plot. I would be happy if someone could tell me how
 to do that.

 Cheers


 On 5/24/2011 3:55 PM, John Kane wrote:
 None of the files came through.  The R-help list
 routinely srips off all attachments to cut down on the
 change of viri .
 You could provide the data in the email by using
 dput.  Type ?dput in the R console to get the help
 page.
 It is not clear from what you write whether you want a
 line with one set of data consisting of all the data from
 the seven files or if you want 7 lines (dots whatever) one
 for each day.
 A brute force way for the first approach is to combine
 all the data.frames using rbind, and plot from there.
 Example
 =====================================================
 xx<- data.frame(aa=1:10, bb = letters[1:10])
 yy<- data.frame(aa=11:20,  bb =
 letters[11:20])
 zz<- data.frame(aa=21:30, bb= sample(letters[1:
 26], 10))
 df1<- rbind(xx,yy,zz)
 plot(df1$aa)



 ======================================================
 If you want 7 sets someone else probably has a simple
 solution. Without your sample data it's bit bit hard to
 guess.






 --- On Tue, 5/24/11, Mathew Brown<mathew.br...@forst.uni-goettingen.de>
 wrote:
 From: Mathew Brown<mathew.br...@forst.uni-goettingen.de>
 Subject: [R] plotting single variables common to
 multiple data frames
 To: r-help@r-project.org
 Received: Tuesday, May 24, 2011, 8:55 AM



 Hello all,

 I have files (see attached) which are created
 daily. I want
 to load
 about a weeks worth of them (7 daily files) and
 plot a
 weeks worth of
 one variable together. So one variable name is
 delta_D_H. I
 would like
 to plot this variable from all 7 days on one plot.
 I'm
 having trouble
 figure out how to do this.

 I've loaded them all up using this

 time=Sys.time()
 t1<- as.numeric(format.Date(time, "%Y%m%d"))
 #date range of data to load
 paluiso= c(); yy = c();
 t1=t1-1
 t0<-t1-7
 x = t0:t1
 for (i in seq( length(x) ) ) {

 y=load(paste(datalocation,x[i],".RData", sep=""))
          e3<- new.env()
       yy[[i]]<- get('isot',
 e3)
 }

 but I don't know how to grab single variables from
 these
 data frames and
 plot them.

 Any help is appreciated!

 M


DATE                      TIME                      FRAC_DAYS_SINCE_JAN1      
FRAC_HRS_SINCE_JAN1       EPOCH_TIME                ALARM_STATUS              
CavityPressure            CavityTemp                WarmBoxTemp               
DasTemp                   EtalonTemp                MPVPosition               
OutletValve               ValveMask                 h2o_ppmv                  
delta_18_16               delta_18_16_30s           delta_18_16_2min          
delta_18_16_5min          delta_D_H                 delta_D_H_30sec           
delta_D_H_2min            delta_D_H_5min            organic_82                
organic_MeOHampl          organic_base              organic_c2h6conc          
organic_ch4conc           organic_res               organic_shift             
organic_slope             organic_splinemax         organic_squish            
organic_y                 standard_base             standard_residuals        
n2_flag                   
2011-05-17                01:34:27.321              136.06559400              
3265.574256               1305567267.321            0                         
3.4994011415E+001         7.9998588562E+001         4.4999839783E+001         
4.3187500000E+001         4.4898307800E+001         0.0000000000E+000         
3.4561598659E+004         0.0000000000E+000         3.0125471992E+004         
-1.7932891358E+001        -2.6929847038E+001        -2.6988844476E+001        
-2.7122237714E+001        -1.1898324514E+002        0.0000000000E+000         
-9.1278413937E+001        -9.1515676700E+001        -4.7687974128E+001        
5.7852649051E-003         1.1419875394E+003         0.0000000000E+000         
6.5128789879E-003         1.5970082111E+001         -1.2269544002E-004        
1.2506772075E+002         4.0447118042E+003         9.8021656929E-003         
1.0963130479E+000         1.1556570748E+003         5.5155869286E+000         
1.0000000000E+000         
2011-05-17                01:34:29.459              136.06561874              
3265.574850               1305567269.459            0                         
3.4998333827E+001         7.9997752496E+001         4.4999966459E+001         
4.3187500000E+001         4.4898257130E+001         0.0000000000E+000         
3.4559066156E+004         0.0000000000E+000         3.0140752940E+004         
-1.8142934134E+001        -2.6916015322E+001        -2.6989126641E+001        
-2.7120723723E+001        -1.1673675813E+002        0.0000000000E+000         
-9.1244146831E+001        -9.1498479420E+001        -4.5567361812E+001        
7.4201777580E-003         1.1344892009E+003         0.0000000000E+000         
7.4163853131E-003         1.6595337062E+001         -1.1264939972E-004        
1.2102561381E+002         4.0431228697E+003         9.8106973557E-003         
1.0962798359E+000         1.1552014928E+003         5.4721522445E+000         
1.0000000000E+000         
2011-05-17                01:34:31.594              136.06564345              
3265.575443               1305567271.594            0                         
3.5001545773E+001         7.9997581482E+001         4.4999992371E+001         
4.3187500000E+001         4.4898246765E+001         0.0000000000E+000         
3.4569933063E+004         0.0000000000E+000         3.0123243802E+004         
-1.8075109666E+001        -2.6891585583E+001        -2.6982405020E+001        
-2.7122176246E+001        -1.2115190374E+002        0.0000000000E+000         
-9.1257328994E+001        -9.1498405425E+001        -4.7370132825E+001        
6.9873555638E-003         1.1377464661E+003         0.0000000000E+000         
6.9423293665E-003         1.6349894295E+001         -7.0434797459E-005        
1.3108873064E+002         4.0442276040E+003         1.4958611449E-002         
1.0962549332E+000         1.1563652134E+003         5.4244289714E+000         
1.0000000000E+000         
2011-05-17                01:34:33.691              136.06566773              
3265.576025               1305567273.692            0                         
3.4988399722E+001         7.9997474267E+001         4.5000114902E+001         
4.3187500000E+001         4.4898323347E+001         0.0000000000E+000         
3.4562190492E+004         0.0000000000E+000         3.0111321658E+004         
-1.8328000794E+001        -2.6908476646E+001        -2.6987694135E+001        
-2.7119671102E+001        -1.1799616041E+002        0.0000000000E+000         
-9.1234390937E+001        -9.1501238771E+001        -4.8076200967E+001        
5.9803793840E-003         1.1410809684E+003         0.0000000000E+000         
6.9588419986E-003         1.6534160930E+001         -4.1990140019E-005        
1.2866277801E+002         4.0423244502E+003         1.3555952563E-002         
1.0961559548E+000         1.1546189642E+003         5.6293294847E+000         
1.0000000000E+000         
2011-05-17                01:34:35.788              136.06569200              
3265.576608               1305567275.788            0                         
3.5015721591E+001         7.9997367859E+001         4.5000236511E+001         
4.3187500000E+001         4.4898399353E+001         0.0000000000E+000         
3.4579413502E+004         0.0000000000E+000         3.0100268662E+004         
-1.8129965957E+001        -2.6922180970E+001        -2.6984821814E+001        
-2.7116985001E+001        -1.1841869816E+002        0.0000000000E+000         
-9.1232925094E+001        -9.1487034782E+001        -4.6816174575E+001        
6.5477297003E-003         1.1381991034E+003         0.0000000000E+000         
6.8338030216E-003         1.5304743750E+001         -6.3646060631E-005        
1.2628631567E+002         4.0405079552E+003         1.4859085700E-002         
1.0962932820E+000         1.1551643245E+003         5.3532822986E+000         
1.0000000000E+000         
2011-05-17                01:34:37.933              136.06571682              
3265.577204               1305567277.933            0                         
3.4987136985E+001         7.9997303254E+001         4.5000230638E+001         
4.3187500000E+001         4.4898369987E+001         0.0000000000E+000         
3.4562424985E+004         0.0000000000E+000         3.0083243148E+004         
-1.8410094765E+001        -2.6950629078E+001        -2.6982006715E+001        
-2.7114923505E+001        -1.1938834980E+002        0.0000000000E+000         
-9.1251401331E+001        -9.1491096404E+001        -4.8295282519E+001        
5.8112067918E-003         1.1418906278E+003         0.0000000000E+000         
6.7183905437E-003         1.6693738108E+001         -5.1923568043E-005        
1.3724856204E+002         4.0420004536E+003         1.7390497978E-002         
1.0960717838E+000         1.1550905607E+003         5.6775584141E+000         
1.0000000000E+000         
2011-05-17                01:34:40.077              136.06574163              
3265.577799               1305567280.077            0                         
3.4996646435E+001         7.9997032166E+001         4.5000205994E+001         
4.3187500000E+001         4.4898246765E+001         0.0000000000E+000         
3.4560637839E+004         0.0000000000E+000         3.0085736373E+004         
-1.7980877415E+001        -2.6933099629E+001        -2.6980736661E+001        
-2.7110575162E+001        -1.1887136564E+002        0.0000000000E+000         
-9.1267416863E+001        -9.1481186453E+001        -4.9824001395E+001        
5.1490063739E-003         1.1458500939E+003         0.0000000000E+000         
6.2394159566E-003         1.5309342832E+001         -4.2871823428E-005        
1.3609187588E+002         4.0414026149E+003         2.0698617305E-002         
1.0962574854E+000         1.1548054607E+003         5.4096240649E+000         
1.0000000000E+000         
2011-05-17                01:34:42.212              136.06576635              
3265.578392               1305567282.212            0                         
3.5008256948E+001         7.9997032166E+001         4.5000205994E+001         
4.3187500000E+001         4.4898246765E+001         0.0000000000E+000         
3.4578054540E+004         0.0000000000E+000         3.0079247429E+004         
-1.8035041604E+001        -2.6918970650E+001        -2.6977826486E+001        
-2.7109008681E+001        -1.2038743849E+002        0.0000000000E+000         
-9.1286070322E+001        -9.1488956678E+001        -4.7119111290E+001        
6.7657226521E-003         1.1378952638E+003         0.0000000000E+000         
7.1816998135E-003         1.6193983128E+001         -8.3259632248E-005        
1.2965626746E+002         4.0382115556E+003         1.4980230291E-002         
1.0961577651E+000         1.1555779190E+003         5.7810221991E+000         
1.0000000000E+000         
2011-05-17                01:34:44.408              136.06579176              
3265.579002               1305567284.408            0                         
3.4989158299E+001         7.9996742421E+001         4.5000223037E+001         
4.3240801887E+001         4.4898297896E+001         0.0000000000E+000         
3.4567759581E+004         0.0000000000E+000         3.0076870706E+004         
-1.8656900190E+001        -2.6935803587E+001        -2.6984892388E+001        
-2.7108575363E+001        -1.2061060752E+002        0.0000000000E+000         
-9.1335153021E+001        -9.1482755627E+001        -4.6917766719E+001        
6.7821892124E-003         1.1375397821E+003         0.0000000000E+000         
6.9251243966E-003         1.6013673144E+001         -1.1707799622E-004        
1.2916627188E+002         4.0369293177E+003         1.8347371997E-002         
1.0961334841E+000         1.1548564359E+003         5.3268973179E+000         
1.0000000000E+000         
2011-05-17                01:34:46.582              136.06581692              
3265.579606               1305567286.582            0                         
3.4998081380E+001         7.9996513367E+001         4.5000236511E+001         
4.3210849057E+001         4.4898338318E+001         0.0000000000E+000         
3.4568948202E+004         0.0000000000E+000         3.0074686689E+004         
-1.8305602222E+001        -2.6943388429E+001        -2.6988358722E+001        
-2.7107061873E+001        -1.1807590458E+002        0.0000000000E+000         
-9.1326627236E+001        -9.1469958072E+001        -4.7448587814E+001        
6.4952674532E-003         1.1389106740E+003         0.0000000000E+000         
7.1335166015E-003         1.5848412214E+001         -7.1884409251E-005        
1.2889104794E+002         4.0371478225E+003         1.9991263407E-002         
1.0961749906E+000         1.1549021745E+003         5.5268142069E+000         
1.0000000000E+000         
2011-05-17                01:34:50.049              136.06585706              
3265.580569               1305567290.050            0                         
3.4981138856E+001         7.9997184753E+001         4.5000358582E+001         
4.3220283019E+001         4.4898551941E+001         0.0000000000E+000         
3.4549062883E+004         0.0000000000E+000         3.0090201914E+004         
-1.8466994870E+001        -2.6968511784E+001        -2.6995180526E+001        
-2.7103887498E+001        -1.1723235882E+002        0.0000000000E+000         
-9.1266647878E+001        -9.1459470569E+001        -4.7529942790E+001        
6.1801346237E-003         1.1399344263E+003         0.0000000000E+000         
7.3378126142E-003         1.5457488634E+001         -5.2468270825E-006        
1.2263592871E+002         4.0382533660E+003         1.4224791256E-002         
1.0963384305E+000         1.1549114873E+003         5.3755694720E+000         
1.0000000000E+000         
2011-05-17                01:34:52.116              136.06588098              
3265.581143               1305567292.116            0                         
3.4996893311E+001         7.9997184753E+001         4.5000358582E+001         
4.3187500000E+001         4.4898551941E+001         0.0000000000E+000         
3.4556205572E+004         0.0000000000E+000         3.0083205955E+004         
-1.7741758467E+001        -2.6943402634E+001        -2.6981986742E+001        
-2.7099269680E+001        -1.1687309731E+002        0.0000000000E+000         
-9.1270631940E+001        -9.1439420966E+001        -4.5630700660E+001        
7.1598487630E-003         1.1351585697E+003         0.0000000000E+000         
7.7336421448E-003         1.6147045737E+001         -5.4022339552E-005        
1.2523875729E+002         4.0370602763E+003         1.4671609483E-002         
1.0961432649E+000         1.1550905649E+003         5.7903215116E+000         
1.0000000000E+000         
2011-05-17                01:34:54.244              136.06590560              
3265.581734               1305567294.244            0                         
3.5017504077E+001         7.9996795395E+001         4.5000358582E+001         
4.3187500000E+001         4.4898477777E+001         0.0000000000E+000         
3.4580483328E+004         0.0000000000E+000         3.0064258452E+004         
-1.7643252424E+001        -2.6914707056E+001        -2.6976442155E+001        
-2.7092191732E+001        -1.2239201450E+002        0.0000000000E+000         
-9.1363418779E+001        -9.1454983690E+001        -4.6787524931E+001        
7.5606305129E-003         1.1355920496E+003         0.0000000000E+000         
7.0430672752E-003         1.7364225291E+001         -5.9717095800E-005        
1.2994685737E+002         4.0342383123E+003         8.9948049701E-003         
1.0959476013E+000         1.1559446868E+003         5.6505765444E+000         
1.0000000000E+000         
2011-05-17                01:34:56.371              136.06593023              
3265.582326               1305567296.372            0                         
3.5006213753E+001         7.9996543884E+001         4.5000358582E+001         
4.3187500000E+001         4.4898429871E+001         0.0000000000E+000         
3.4573534036E+004         0.0000000000E+000         3.0062084754E+004         
-1.8274025867E+001        -2.6924084565E+001        -2.6977462503E+001        
-2.7091294976E+001        -1.1758196828E+002        0.0000000000E+000         
-9.1336781802E+001        -9.1445243914E+001        -4.5430082428E+001        
7.0433126484E-003         1.1352122372E+003         0.0000000000E+000         
7.1642262007E-003         1.6749704182E+001         -3.4451856710E-005        
1.2898101696E+002         4.0350628203E+003         1.1469869161E-002         
1.0959797876E+000         1.1544257115E+003         5.5842626473E+000         
1.0000000000E+000         
2011-05-17                01:34:58.464              136.06595445              
3265.582907               1305567298.465            0                         
3.4989554020E+001         7.9996776969E+001         4.5000307911E+001         
4.3208254717E+001         4.4898450139E+001         0.0000000000E+000         
3.4558152211E+004         0.0000000000E+000         3.0041261762E+004         
-1.8539151873E+001        -2.6962478326E+001        -2.6984934064E+001        
-2.7092431371E+001        -1.2006648034E+002        0.0000000000E+000         
-9.1371534972E+001        -9.1451284131E+001        -4.7379685066E+001        
6.5018862188E-003         1.1391467399E+003         0.0000000000E+000         
6.8516239985E-003         1.5609921905E+001         -8.0288227396E-005        
1.3048041581E+002         4.0332772717E+003         1.6691944509E-002         
1.0961169730E+000         1.1553907386E+003         5.3939942247E+000         
1.0000000000E+000         
2011-05-17                01:35:00.669              136.06597998              
3265.583519               1305567300.670            0                         
3.5000254649E+001         7.9997245789E+001         4.5000205994E+001         
4.3203773585E+001         4.4898490906E+001         0.0000000000E+000         
3.4566589490E+004         0.0000000000E+000         3.0042505677E+004         
-1.8344974519E+001        -2.6975273304E+001        -2.6989994534E+001        
-2.7088150834E+001        -1.1912306740E+002        0.0000000000E+000         
-9.1403700658E+001        -9.1455261748E+001        -4.7280758242E+001        
6.6518483268E-003         1.1385851756E+003         0.0000000000E+000         
7.2370177380E-003         1.5911853440E+001         -9.2078461357E-005        
1.2255575158E+002         4.0308075949E+003         1.1494612299E-002         
1.0961039204E+000         1.1553632068E+003         5.5100314231E+000         
1.0000000000E+000         
2011-05-17                01:35:02.839              136.06600508              
3265.584122               1305567302.839            0                         
3.4993806544E+001         7.9997245789E+001         4.5000205994E+001         
4.3214150943E+001         4.4898490906E+001         0.0000000000E+000         
3.4561520239E+004         0.0000000000E+000         3.0028838976E+004         
-1.8239014075E+001        -2.6985653176E+001        -2.6989991123E+001        
-2.7084587307E+001        -1.2181506159E+002        0.0000000000E+000         
-9.1450388095E+001        -9.1472672966E+001        -4.8784665430E+001        
5.9737125553E-003         1.1421470128E+003         0.0000000000E+000         
7.2871764404E-003         1.6536891099E+001         -7.7370000510E-005        
1.3886278647E+002         4.0336209561E+003         1.5431258867E-002         
1.0959597184E+000         1.1554287506E+003         5.5583242975E+000         
1.0000000000E+000         
2011-05-17                01:35:04.953              136.06602955              
3265.584709               1305567304.953            0                         
3.5012459377E+001         7.9997891840E+001         4.5000411555E+001         
4.3189858491E+001         4.4898549638E+001         0.0000000000E+000         
3.4574997052E+004         0.0000000000E+000         3.0021261302E+004         
-1.8500418960E+001        -2.6996572214E+001        -2.6992142700E+001        
-2.7083970028E+001        -1.1733056502E+002        0.0000000000E+000         
-9.1444324967E+001        -9.1457457776E+001        -4.6219948502E+001        
6.6804894437E-003         1.1375126484E+003         0.0000000000E+000         
7.1776127085E-003         1.6453041857E+001         -4.2824073509E-005        
1.2800442988E+002         4.0301435818E+003         1.0677183622E-002         
1.0959389888E+000         1.1550785102E+003         5.5201513033E+000         
1.0000000000E+000         
2011-05-17                01:35:07.111              136.06605453              
3265.585309               1305567307.112            0                         
3.4983467534E+001         7.9997917175E+001         4.5000419617E+001         
4.3187500000E+001         4.4898551941E+001         0.0000000000E+000         
3.4556492246E+004         0.0000000000E+000         3.0006561026E+004         
-1.8744614817E+001        -2.7035497199E+001        -2.7004578233E+001        
-2.7088214031E+001        -1.1766083879E+002        0.0000000000E+000         
-9.1404857561E+001        -9.1438732839E+001        -4.6156959634E+001        
6.1694184353E-003         1.1383171182E+003         0.0000000000E+000         
8.0257639533E-003         1.6249209707E+001         -1.1716046466E-004        
1.2585445183E+002         4.0283686687E+003         1.3746796356E-002         
1.0959477123E+000         1.1544812601E+003         5.5985325377E+000         
1.0000000000E+000         
2011-05-17                01:35:09.341              136.06608034              
3265.585928               1305567309.342            0                         
3.5012183596E+001         7.9998327608E+001         4.5000419617E+001         
4.3187500000E+001         4.4898589253E+001         0.0000000000E+000         
3.4574668455E+004         0.0000000000E+000         2.9994448194E+004         
-1.8248885791E+001        -2.7025288025E+001        -2.7001456464E+001        
-2.7087640928E+001        -1.1888017480E+002        0.0000000000E+000         
-9.1366143924E+001        -9.1435555665E+001        -4.8767251902E+001        
5.6706387333E-003         1.1434775614E+003         0.0000000000E+000         
6.6586125810E-003         1.5861184019E+001         -3.2956687404E-005        
1.2645647230E+002         4.0260341608E+003         1.9418677294E-002         
1.0959534765E+000         1.1551979818E+003         5.6142402393E+000         
1.0000000000E+000         
2011-05-17                01:35:11.524              136.06610561              
3265.586535               1305567311.524            0                         
3.5004145813E+001         7.9998924255E+001         4.5000419617E+001         
4.3187500000E+001         4.4898643494E+001         0.0000000000E+000         
3.4569466907E+004         0.0000000000E+000         2.9984432647E+004         
-1.8453042108E+001        -2.7055189656E+001        -2.7007400744E+001        
-2.7088231847E+001        -1.1904626717E+002        0.0000000000E+000         
-9.1346630056E+001        -9.1432177692E+001        -4.8086686032E+001        
5.9271471893E-003         1.1417145811E+003         0.0000000000E+000         
7.3507877265E-003         1.6811984496E+001         -5.1464234706E-005        
1.3647710911E+002         4.0274134742E+003         1.7916817349E-002         
1.0958067325E+000         1.1551681950E+003         5.6321197285E+000         
1.0000000000E+000         
2011-05-17                01:35:13.650              136.06613022              
3265.587125               1305567313.651            0                         
3.5005564031E+001         7.9998811859E+001         4.5000421459E+001         
4.3187500000E+001         4.4898654549E+001         0.0000000000E+000         
3.4573691716E+004         0.0000000000E+000         2.9973356511E+004         
-1.8326087052E+001        -2.7073621220E+001        -2.7007492963E+001        
-2.7088710852E+001        -1.1999237715E+002        0.0000000000E+000         
-9.1385565138E+001        -9.1442759879E+001        -4.6577953342E+001        
6.8815447545E-003         1.1377816697E+003         0.0000000000E+000         
6.6657869084E-003         1.4848247886E+001         -7.4400773353E-005        
1.2419601598E+002         4.0217550826E+003         1.9604589116E-002         
1.0959846212E+000         1.1555273451E+003         5.4658286303E+000         
1.0000000000E+000         
2011-05-17                01:35:15.793              136.06615501              
3265.587720               1305567315.793            0                         
3.4978610474E+001         7.9997062683E+001         4.5000450134E+001         
4.3187500000E+001         4.4898826599E+001         0.0000000000E+000         
3.4554524867E+004         0.0000000000E+000         2.9972208746E+004         
-1.8506914174E+001        -2.7064122783E+001        -2.7014620989E+001        
-2.7088020144E+001        -1.1779373072E+002        0.0000000000E+000         
-9.1329982932E+001        -9.1433431853E+001        -4.2483034868E+001        
8.9641431508E-003         1.1270434347E+003         0.0000000000E+000         
7.3465716985E-003         1.7404209390E+001         -2.8927666704E-005        
1.2442723530E+002         4.0197047028E+003         1.0627529802E-002         
1.0956430691E+000         1.1551317298E+003         5.4290395655E+000         
1.0000000000E+000         
2011-05-17                01:35:17.930              136.06617975              
3265.588314               1305567317.931            0                         
3.4988608450E+001         7.9997062683E+001         4.5000450134E+001         
4.3212971698E+001         4.4898826599E+001         0.0000000000E+000         
3.4555716981E+004         0.0000000000E+000         2.9958125295E+004         
-1.8146604077E+001        -2.7054053619E+001        -2.7014299616E+001        
-2.7087428849E+001        -1.1801566750E+002        0.0000000000E+000         
-9.1314738939E+001        -9.1428924281E+001        -4.3142091150E+001        
8.6939881801E-003         1.1290025003E+003         0.0000000000E+000         
6.9787157720E-003         1.7848028159E+001         -9.3729172320E-005        
1.2247571457E+002         4.0176349395E+003         1.3721901215E-002         
1.0955950427E+000         1.1554813813E+003         5.5466921999E+000         
1.0000000000E+000         
2011-05-17                01:35:20.120              136.06620510              
3265.588922               1305567320.120            0                         
3.5023267019E+001         7.9997022607E+001         4.5000349944E+001         
4.3208962264E+001         4.4898746447E+001         0.0000000000E+000         
3.4573766583E+004         0.0000000000E+000         2.9949919158E+004         
-1.7816943301E+001        -2.7012886623E+001        -2.7010091764E+001        
-2.7081272453E+001        -1.1792570573E+002        0.0000000000E+000         
-9.1285886833E+001        -9.1429148689E+001        -4.7412100816E+001        
6.5212636896E-003         1.1399811169E+003         0.0000000000E+000         
6.8029776526E-003         1.5777786328E+001         -3.2788257091E-005        
1.2691005187E+002         4.0196058812E+003         1.2983071093E-002         
1.0958169587E+000         1.1557718705E+003         5.4069734734E+000         
1.0000000000E+000         
2011-05-17                01:35:22.337              136.06623076              
3265.589538               1305567322.337            0                         
3.4987380233E+001         7.9997001648E+001         4.5000297546E+001         
4.3187500000E+001         4.4898704529E+001         0.0000000000E+000         
3.4561476725E+004         0.0000000000E+000         2.9932881789E+004         
-1.8423326972E+001        -2.7056049549E+001        -2.7009141469E+001        
-2.7078108005E+001        -1.2006187666E+002        0.0000000000E+000         
-9.1272639968E+001        -9.1425012077E+001        -4.6232974120E+001        
7.7702255318E-003         1.1349173164E+003         0.0000000000E+000         
6.9433337264E-003         1.6478754922E+001         -8.9791001476E-005        
1.3007096494E+002         4.0163278833E+003         1.6437585592E-002         
1.0956787578E+000         1.1558115422E+003         5.3791200466E+000         
1.0000000000E+000         
2011-05-17                01:35:24.507              136.06625587              
3265.590141               1305567324.507            0                         
3.5001361487E+001         7.9997223447E+001         4.5000235935E+001         
4.3187500000E+001         4.4898716851E+001         0.0000000000E+000         
3.4559235598E+004         0.0000000000E+000         2.9930332641E+004         
-1.8329642808E+001        -2.7099517839E+001        -2.7009059826E+001        
-2.7076922105E+001        -1.2052219663E+002        0.0000000000E+000         
-9.1269847744E+001        -9.1430845343E+001        -4.8224121752E+001        
6.1189557499E-003         1.1419315515E+003         0.0000000000E+000         
6.7567416740E-003         1.4996065489E+001         -1.0256491602E-004        
1.3046928488E+002         4.0179859676E+003         1.9483499606E-002         
1.0958597471E+000         1.1557075071E+003         5.4072421755E+000         
1.0000000000E+000         

______________________________________________
R-help@r-project.org mailing list
https://stat.ethz.ch/mailman/listinfo/r-help
PLEASE do read the posting guide http://www.R-project.org/posting-guide.html
and provide commented, minimal, self-contained, reproducible code.

Reply via email to