Documentation for `IntensityDataIOFactory` unclear how to get data as numpy array
I would like to read in my data from a file and plot it quickly before starting my analysis (to check I have read in the correct file). I load the data in as follows,
my_data = ba.IntensityDataIOFactory.readIntensityData(filepath)
When I return the python __repr__
for the my_data
object I get
<libBornAgainDevice.IHistogram; proxy of <Swig Object of type 'IHistogram *' at 0x112b01870> >
Which is rather opaque. I have consulted the relevant API documentation which is also uninformative.
From running dir(my_data)
, I have identified array
as potentially the object that I desire. I would anticipate this to be a python property of my_data
(i.e. I can access it with just my_data.array
no brackets). However this in fact a method so I need to use my_data.array()
to return a numpy array.
The my_data
object appears to be of type libBornAgainDevice.IHistogram
the documentation for which I assumed to be in this page. However, this makes no mention of the .array()
method.
Personally, I would like to see a much simplified user documentation, that was something like
class ba.IntensityDataIOFactory.readIntensityData(filepath)
Arguments
---------
filepath (str): Data file to be read in
Methods
-------
array(): Returns numpy array of the data
Though really, I think having a Python __repr__
(https://www.programiz.com/python-programming/methods/built-in/repr) that returns the .array()
result would be most understandable.