1. File io
File_io (in out)¶
This brief example demonstrates how to read and write information from tapsap. Currently, the only supported file types for reading in data is from an Excel that was generated from tapsap and a tdms file. Files can be exported to an Excel file.
In [2]:
# reading a tdms
import tapsap
data = tapsap.read_tdms('../tapsap/data/argon_100C.tdms')
print(data.num_samples_per_pulse)
# reading an xlsx
data = tapsap.read_tdms('../tapsap/data/argon_100C.xlsx')
2500
In [ ]:
# Writing an excel
# this line is commented so that data won't be overwritten
# tapsap.write_xlsx(data,'test.xlsx')