https://github.com/intake/pandas-decimal
decimal extension for pandas
https://github.com/intake/pandas-decimal
Last synced: 9 months ago
JSON representation
decimal extension for pandas
- Host: GitHub
- URL: https://github.com/intake/pandas-decimal
- Owner: intake
- License: bsd-3-clause
- Created: 2022-11-09T16:03:19.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2022-12-19T14:39:57.000Z (over 3 years ago)
- Last Synced: 2024-05-08T20:04:06.746Z (about 2 years ago)
- Language: Python
- Size: 27.3 KB
- Stars: 7
- Watchers: 3
- Forks: 3
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# pandas-decimal
Extension array for pandas implementing fixed-precision decimal numbers.
Data is stored internally as integers and a dtype encoding the number of decimal
places. Operations are mostly implemented as integer arithmetic (i.e., fast!)
and always rounded to the required precision, meaning no floating point
quirks.
### Install
```bash
pip install pandas-decimal
```