extract and rename like `/home/user/src/mymodule/myplotlib`
extract and rename like `/home/user/src/mymodule/myplotlib`
...
@@ -81,8 +81,8 @@ This data are of two type:
...
@@ -81,8 +81,8 @@ This data are of two type:
In python (this is a general remark) it exists two powerful objects for
In python (this is a general remark) it exists two powerful objects for
storing and accessing these types of data.
storing and accessing these types of data.
- for **structured datasets** the python **dictionaries** are suitable [doc](https://docs.python.org/2/tutorial/datastructures.html#dictionaries)
- for **structured datasets** the python **dictionaries** are suitable (see [doc](https://docs.python.org/2/tutorial/datastructures.html#dictionaries))
- for **database-like datasets** the **numpy.recarray** are the perfect tool [doc](https://docs.scipy.org/doc/numpy/reference/generated/numpy.recarray.html)
- for **database-like datasets** the **numpy.recarray** are the perfect tool (see [doc](https://docs.scipy.org/doc/numpy/reference/generated/numpy.recarray.html))
In `mymodule/myIOs` are two files containing the functions `readRun`, and `readSeries`
In `mymodule/myIOs` are two files containing the functions `readRun`, and `readSeries`
- the function `readRun` reads a run-text-file (structured data set) and stores the information into a python dictionary.
- the function `readRun` reads a run-text-file (structured data set) and stores the information into a python dictionary.