What are the available numpy.loadtxt or numpy.genfromtxt for importing table data with varying datatypes, and what are the available abbreviations for the use (e.g.
Generic info about dtypes
: http://docs.scipy.org/doc/numpy/reference/arrays.dtypes.html
From http://docs.scipy.org/doc/numpy/reference/arrays.scalars.html#arrays-scalars-built-in
In NumPy, there are 24 new fundamental Python types to describe different types of scalars. These type descriptors are mostly based on the types available in the C language that CPython is written in, with several additional types compatible with Python’s types.
And what I didn't realise, is:
The C-like names are associated with character codes, which are shown in the table. Use of the character codes, however, is discouraged.
I doubt the numpy
code/doc base is going anyway anytime soon, so that says it all I guess!