回答編集履歴

3

Update

2021/11/27 07:55

投稿

melian
melian

スコア20655

test CHANGED
@@ -32,4 +32,12 @@
32
32
 
33
33
  10 30 0 2.9856 0.017362 0.037714
34
34
 
35
+
36
+
37
+ # 欠損値の有無をチェック
38
+
39
+ $ awk '{print NF}' output.txt | uniq
40
+
41
+ 6
42
+
35
43
  ```

2

Update

2021/11/27 07:55

投稿

melian
melian

スコア20655

test CHANGED
@@ -6,13 +6,9 @@
6
6
 
7
7
  $ tr -d '\r' < outputA.txt | column -t > output.txt
8
8
 
9
-
10
-
11
9
  $ wc -l output.txt
12
10
 
13
- 4841
11
+ 4841 output.txt
14
-
15
-
16
12
 
17
13
  $ head output.txt
18
14
 

1

Update

2021/11/27 07:50

投稿

melian
melian

スコア20655

test CHANGED
@@ -4,7 +4,7 @@
4
4
 
5
5
  ```bash
6
6
 
7
- $ sed -E -e 's/\r//g' outputA.txt | column -t > output.txt
7
+ $ tr -d '\r' < outputA.txt | column -t > output.txt
8
8
 
9
9
 
10
10