diff --git a/contrib/numpy/datatypes.md b/contrib/numpy/datatypes.md new file mode 100644 index 0000000..768add1 --- /dev/null +++ b/contrib/numpy/datatypes.md @@ -0,0 +1,35 @@ +# Numpy Data Types +In NumPy, data types play a crcial role in representing and manipulating numerical data. + +Numpy supports the following data types: + +- `i` - integer +- `b` - boolean +- `u` - unsigned integer +- `f` - float +- `c` - complex float +- `m` - timedelta +- `M` - datetime +- `O` - object +- `S` - string +- `U` - unicode string + +## Example for integer type + +## Example for float type + +## Example for boolean type + +## Example for unsigned integer type + +## Example for complex type + +## Example for datetime type + +## Example for string type + +## Example for object type + +## Example for unicode string type + +## Example for timedelta type