Thread Closed

Editing my data file

 
Share Thread Thread Tools
May6-09, 10:43 AM   #1
 

Editing my data file


Hello!

I am running ubuntu, I have a copy of open office excel, but I need to edit a tab space delimited text file with my data in it so I can use gnuplot to plot it.

The editing consists of subtracting one column of data from a file, from another column of data in another file. Each row corresponds to another row in another document... There are about 1000 rows so I cannot do this manually. My lab writeup is due in a few hours, this is the last step I need to complete for the analysis!

I know there is a way to write a quick and dirty program that will perform the operation, but my experience with such things is limited to date. So please! Help!
PhysOrg.com
PhysOrg
science news on PhysOrg.com

>> Bird's playlist could signal mental strengths and weaknesses
>> Minus environment, patterns still emerge: Computational study tracks E. coli cells' regulatory mechanisms
>> Bacterium uses natural 'thermometer' to trigger diarrheal disease, scientists find
May6-09, 11:11 AM   #2
 
Recognitions:
Homework Helper Homework Help
Science Advisor Science Advisor
Look at awk (eg http://student.northpark.edu/pemente/awk/awk1line.txt) it's a very simple language for text processing

Print column 1 - column 2 would be something like:
awk '{print $1-$2}' datafile.txt
Thread Closed

Tags
data editing, linux
Thread Tools


Similar Threads for: Editing my data file
Thread Forum Replies
MATLAB : how to get the data from a .fig file ??? Math & Science Software 2
MATLAB Data file question Math & Science Software 3
Help Scanning File Data In C! Engineering, Comp Sci, & Technology Homework 1
Generating data file in matlab Math & Science Software 4
Make a Pdf file into an ordinary web file (html file)? Computing & Technology 3