跳过genfromtxt中的行

时间:2013-06-01 15:56:27

标签: numpy genfromtxt

我有下表:

 2M00251602+5422547            7.180          9.000          2.200
#2M00255540+5749320            4.420          5.200          1.600
 2M00274401+5330504            4.400          6.800          2.700
 2M00331747+6327504            4.540          5.900          0.400
#2M00333033+7054422            4.350          6.700          0.700
 2M00350487+5953079            5.310          7.400          1.100

我想跳过带有主题标签的行。怎么请genfromtxt跳过有标签符号的行?

注意:标签不需要在那里。我只需要跳过用户指定的行。

我知道在READLOL下的IDL中,可以做SKIPSTRING ='#'。 genfromtxt中有类似的东西吗?如果没有,我可以用什么程序/包来读取这样的表并跳过用户指定的行?

提前致谢!

1 个答案:

答案 0 :(得分:5)

使用np.genfromtxtcomments='#'参数。

来自文档:

comments : str, optional
    The character used to indicate the start of a comment.
    All the characters occurring on a line after a comment are discarded