I have a large dataset (see example format below) and I need to do the follow thinks:
- identify the repeated values that appear on columns 1,2,5 - if the all repeated then I need to remove redundant rows and average the value in column 8 (this is successful with the code I will post -
- after step one, I want to round the values on columns 1,2 to whole number (no decimals)
- I want to reintroduce columns 3, 4, 6 and 7 -
columns 3, 6, and 7 need to have a specific value I will dictate (e.g. 3 should be all 0, 6 all 1, and column 7 all 1) (similar to input file) column 4 needs to increase by one, based on number of different values on column 4) (similar to input file
here is a sample input file: data (name of the file)
564991.15 7371277.89 0 1 1530 1 1 16.0225
564991.15 7371277.89 0 1 8250 1 1 14.4405
564991.15 7371277.89 0 2 1530 1 1 14.8637
564991.15 7371277.89 0 2 8250 1 1 14.8918
564991.17 7371277.89 0 3 1530 1 1 16.0002
564991.17 7371277.89 0 3 8250 1 1 15.4333
564991.04 7371276.76 0 4 1530 1 1 14.73
564991.04 7371276.76 0 4 8250 1 1 15.6138
564991.04 7371276.76 0 5 1530 1 1 16.2453
564991.04 7371276.76 0 5 8250 1 1 15.6138
and here is the code I have up to know (currently I supplement in calc)
import os
import numpy as np
import pandas as pd
datadirectory = '/media/data'
os.chdir = 'datadirectory'
df = pd.read_csv('/media/data/data.dat')
sorted_data = df.groupby(["X.1","X.2","X.5"])["X.8"].mean().reset_index()
tuple_data = [tuple(x) for x in sorted_data.values]
datas = np.asarray(tuple_data)
np.savetxt('sorted_data_rounded.dat', datas, fmt='%s', delimiter='\t')
but his gives me only the 4 columns, and no rounded data....