【问题标题】:Printing Coordinates to a csv File将坐标打印到 csv 文件
【发布时间】:2020-10-18 00:37:37
【问题描述】:

我想将坐标提取到带有括号和逗号分隔符格式 (x,y) 的 .csv 文件中。

我有一个写成列表 (network1) 的 4x4 矩阵,需要识别出现 1 的坐标,然后将这些坐标导出到 .csv 文件。

下面的代码是由另一位用户建议的,它适用于不同的数据集,但我需要进一步调整以适应这种格式。

我希望在下面的现有代码中只需要稍作修改。

import numpy as np
import pandas as pd

network1 = [0,1,0,0,0,0,1,0,0,0,1,1,0,0,1,1]
network1_matrix = np.array(network1).reshape(4, 4)

coordinates = np.transpose(np.where(network1_matrix == 1))

result_df = pd.DataFrame({'1': coordinates[:, 0] + 1, '2': coordinates[:, 1] + 1})
result_df = result_df.append({'1': ';', '2': ''}, ignore_index=True)
result_df.columns = ['set A :=', '']

result_df.to_csv('result.csv', sep=' ', index=False)

这会产生如下输出(为了更清晰,我已包含来自文本文件的结果):

对于这个特定的输出,我需要以下格式:

非常感谢您根据第二张图片完成以下内容的帮助:

  1. 打印集 A := 到 .csv 文件,不带引号 (" ")。
  2. 用括号打印坐标,并且只用逗号分隔。

非常感谢您的帮助!

【问题讨论】:

标签: python pandas numpy coordinates export-to-csv


【解决方案1】:

在这里使用 Pandas 太过分了。

这是一个简化版的程序,可以正确输出 CSV:

import csv

import numpy as np

arr = [0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 1, 1, 0, 0, 1, 1]
arr = np.array(arr).reshape(4, 4)
print(arr)

coords = np.where(arr == 1)
print(coords)

with open("resources/test.csv", "w") as file_out:
    writer = csv.writer(file_out)
    writer.writerow(('x', 'y'))
    writer.writerows(zip(*coords))

输出文件的内容:

x,y
0,1
1,2
2,2
2,3
3,2
3,3

如果要输出元组,请将上面的上下文管理器替换为以下内容:

with open("resources/text.txt", "w") as file_out:
    for curr_coords in zip(*coords):
        file_out.write(str(curr_coords) + '\n')

输出文件的内容:

(0, 1)
(1, 2)
(2, 2)
(2, 3)
(3, 2)
(3, 3)

【讨论】:

  • 感谢您的帮助和解释 - 做了一些补充,它似乎按预期工作。非常感谢!
【解决方案2】:

我看到了你的问题。现在解决这个问题..

df.to_csv(quotechar='"')
      

默认quotechar 是字符串。想一想。

所以试试这个……

import numpy as np
import pandas as pd

network1 = [0,1,0,0,0,0,1,0,0,0,1,1,0,0,1,1]
network1_matrix = np.array(network1).reshape(4, 4)
"""
array([[0, 1, 0, 0],
       [0, 0, 1, 0],
       [0, 0, 1, 1],
       [0, 0, 1, 1]])
"""

coordinates = np.transpose(np.where(network1_matrix == 1))
"""
array([[0, 1],
       [1, 2],
       [2, 2],
       [2, 3],
       [3, 2],
       [3, 3]])
"""
result_df = pd.DataFrame({'1': coordinates[:, 0] + 1, '2': coordinates[:, 1] + 1})
result_df.columns = ['set', '']

result_df['set A :='] = result_df[['set', '']].apply(tuple, axis=1)
result_df = result_df.append({'set A :=': ';'}, ignore_index=True)

#result_df
result_df = result_df['set A :=']
result_df.to_csv('result.csv', sep=' ', float_format = True, index = False, quotechar= '\r')

!head result.csv

输出:

set A :=
(1, 2)
(2, 3)
(3, 3)
(3, 4)
(4, 3)
(4, 4)
;

【讨论】:

    猜你喜欢
    • 2021-01-27
    • 1970-01-01
    • 1970-01-01
    • 2015-06-22
    • 1970-01-01
    • 1970-01-01
    • 2011-03-14
    • 1970-01-01
    • 1970-01-01
    相关资源
    最近更新 更多