- iOS/Objective-C 元类和类别
- objective-c - -1001 错误,当 NSURLSession 通过 httpproxy 和/etc/hosts
- java - 使用网络类获取 url 地址
- ios - 推送通知中不播放声音
我有一些记录的两个文件
rec10|rec11|rec12|....|abcd1234|rec19|rec110|rec111|name1|xyz|.......|rec1n rec20|rec21|rec22|....|abcd1234|rec29|rec210|rec211|name1|xyz|.......|rec2n rec30|rec31|rec32|....|xyzw1234|rec39|rec310|rec311|name1|uvw|.......|rec3n ........................................................................... ...........................................................................
Some columns are key columns which i can cut and put in another file (say keyFile)
cat recordFile|cut -d"|", -f1,5,7 >keyFile
现在对于 keyFile 中的每个键 K,我必须过滤以 K 为键的行并获得按列求和
我需要为 recordFile2 做同样的事情
我想要键和列的区别
假设文件 1 是
x,y,z,5,6,7
a,y,z,3,5,8
a,x,t,1,1,1
文件2是
x,y,s,1,2,3
p,y,z,3,5,8
a,y,z,1,1,1
假设第 2 列和第 3 列是键列,如果我剪切这些列,则不同的键是 (y,z) (x,t) (y,s)对于每个键,我需要找出列式总和的差异
说(y,z) 我可以加起来得到 8,11,15同样对于文件 2 得到 4,6,9和差异是 4,5,6所以输出是 (y,z) 4 5 6
其他键也类似
while read line //read one key each time from inKeyFile
IFS=', ' read -a array <<< "$line"
for element in "${array[@]}"
do
// filter rows which matched whole key array .**How to put the filter condition in awk for complete key value in array**
<code>
IFS=' ' read -a arrayA<<< awk -F"|" -v k="$num1" -v n="$num2" '$col1=array[0] && $col2=array[1]&& so on.. {for(i=k;i<=n;i++)s[i]+=$i} END{for(x in s)printf " %f ",s[x]}' recordFile1
//read the awk output into an array A of size num2-num1+1
//same for Recordsfile2 to read in an array B
IFS=' ' read -a arrayB<<< awk .....
print line-->(the key)
for(i=num1 to num2) print $A[i] -$B[i]
<<inKeyFile
我如何将过滤器放入 awk 中,假设我将其作为 ./Myscript.sh inFile 2:x,3:y,5:z 10 15 运行具有第 10 列到第 15 列的列总和,其中键列具有指定值第 2、3、5 列是关键列(我可以将它们剪切并放入 KeyFile 中),第 2 列应为 x,第 3 列应为 y,第 5 列应为 z。如何在 awk 中应用此过滤器?
如何避免处理 inKeyFile 中已经打印差异的键(类似于 Java 中的 Set)?编辑:我想我可以对 inKeyFile 进行排序,如果上次读取的 key 与当前 key 相同,那么我可以跳过
最佳答案
求差 file1 - file2
作为按选定列分组的行总和的差,例如,1
、2
(零-基于):
$ ./columnwise-sum-diff 1,2 file1 file
{"y|z": [4, 5, 6]}
其中 columnwise-sum-diff
是:
#!/usr/bin/env python
import json
import sys
from operator import itemgetter
def columnwise_sum(a, b):
return tuple(x+y for x, y in zip(a, b)) # map(sum, zip(*args))
def columnwise_diff(a, b):
return tuple(y-x for x, y in zip(a, b)) # b - a
def sum_file(filename, get_key, get_numbers):
filesum = {}
with open(filename) as file:
for line in file:
row = line.split(',')
key = get_key(row)
numbers = get_numbers(row)
total = filesum.get(key)
filesum[key] = columnwise_sum(total, numbers) if total else numbers
return filesum
if len(sys.argv) != 4:
sys.exit('Usage: columnwise-sum-diff <keycol1,keycol2> <file1> <file2>')
key_columns = sorted(map(int, sys.argv[1].split(',')))
get_key = itemgetter(*key_columns)
n = max(key_columns) + 1 # to the right of the key columns
def get_numbers(row, getcols=itemgetter(*range(n, n + 3))):
return tuple(map(int, getcols(row)))
file1sum = sum_file(sys.argv[2], get_key, get_numbers)
file2sum = sum_file(sys.argv[3], get_key, get_numbers)
diff = {'|'.join(k): columnwise_diff(file2sum[k], file1sum[k])
for k in file1sum.viewkeys() & file2sum.viewkeys()}
json.dump(diff, sys.stdout)
它生成 json 以简化结构化数据交换。
关于linux - 用于查找两个文件的列之和的差异的脚本,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27650496/
我有 powershell 脚本。通过调度程序,我运行 bat 文件,该文件运行 PS1 文件。 BAT文件 Powershell.exe -executionpolicy remotesigned
什么更快? 或者 $.getScript('../js/SOME.js', function (){ ... // with $.ajaxSetup({ cache: true });
需要bash脚本来显示文件 #!/bin/bash my_ls() { # save current directory then cd to "$1" pushd "$1" >/dev/nu
我有一个输入 csv 文件,实际上我需要在输入文件中选择第 2 列和第 3 列值,并且需要转换两个值的时区(从 PT 到 CT),转换后我需要替换转换后的时区值到文件。 注意: 所有输入日期值都在太平
我正在使用/etc/init.d/httpd 作为 init.d 脚本的模板。我了解文件中发生的所有内容,但以下行除外: LANG=$HTTPD_LANG daemon --pidfile=${pid
我有以下选择: python runscript.py -O start -a "-a "\"-o \\\"-f/dev/sda1 -b256k -Q8\\\" -l test -p maim\""
我对 shell 脚本完全陌生,但我需要编写一个 shell 脚本来检查文件是否存在,然后移动到另一个位置 这是我写的: 一旦设备崩溃,我就会在/storage/sdcard1/1 中收集日志 #!/
我正在使用 bash 脚本从文本文件中读取数据。 数据: 04:31 Alex M.O.R.P.H. & Natalie Gioia - My Heaven http://goo.gl/rMOa2q
这是单击按钮时运行的 javascript 的结尾 xmlObj.open ('GET', /ajax.php, true); xmlObj.send (''); } 所以这会执行根目录中的php脚本
关闭。这个问题需要debugging details .它目前不接受答案。 编辑问题以包含 desired behavior, a specific problem or error, and th
我需要将文件转换为可读流以通过 api 上传,有一个使用 fs.createReadStream 的 Node js 示例。任何人都可以告诉我上述声明的 python 等价物是什么? 例子 const
我有一个 shell 脚本 cron,它从同一目录调用 python 脚本,但是当这个 cron 执行时,我没有从我的 python 脚本中获得预期的输出,当我手动执行它时,我的 python 脚本的
如何使 XMLHttpRequest (ajax) 调用的 php 脚本安全。 我的意思是,不让 PHP 文件通过直接 url 运行,只能通过脚本从我的页面调用(我不想向未登录的用户显示数据库结果,并
我正在尝试添加以下内容 我正在使用经典的 asp。但我不断收到的错误是“一个脚本 block 不能放在另一个脚本 block 内。”我尝试了此处的 document.write 技术:Javasc
如何从另一个 PHP 脚本(如批处理文件)中运行多个 PHP 脚本?如果我了解 include 在做什么,我认为 include 不会起作用;因为我正在运行的每个文件都会重新声明一些相同的函数等。我想
我想创建具有动态内容的网页。我有一个 HTML 页面,我想从中调用一个 lua 脚本 如何调用 lua 脚本? ? ? 从中检索数据?我可以做类似的事情吗: int xx = 0; xx
我删除了我的第一个问题,并重新编写了更多细节和附加 jSfiddle domos。 我有一个脚本,它运行查询并返回数据,然后填充表。表中的行自动循环滚动。所有这些工作正常,并通过使用以下代码完成。然而
我尝试使用 amp 脚本,但收到此错误: “[amp-script] 脚本哈希未找到。amp-script[script="hello-world"].js 必须在元[name="amp-script
我有一个读取输入的 Shell 脚本 #!/bin/bash echo "Type the year that you want to check (4 digits), followed by [E
我正在从 nodejs 调用 Lua 脚本。我想传递一个数组作为参数。我在 Lua 中解析该数组时遇到问题。 下面是一个例子: var script = 'local actorlist = ARGV
我是一名优秀的程序员,十分优秀!