When using genfromtext() numpy seems to remove the '.' character from the header name. Is there a way to turn this feature off?
file.csv header
column1,column.2
cmd
a = np.genfromtxt(open('file.csv'), delimiter=',', names=True, dtype=None, autostrip=True)
results
> a['column.2']
field named column.2 not found
a['column2'] is however found.