Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Use 2 decimal points for Cost, rounding up #36

Merged
merged 1 commit into from
May 1, 2024

Commits on May 1, 2024

  1. Use 2 decimal points for Cost, rounding up

    Switches the precision of Cost from 3 to 2. The value is rounded
    up as demontrated by the following block of code given the following
    csv file.
    
    ```csv
    Cost
    123.1234
    123.5678
    ```
    
    ```python
    >>> dataframe = pandas.read_csv("csv.csv", dtype={"Cost": pandas.ArrowDtype(pyarrow.decimal128(12, 2))})
    >>> dataframe
         Cost
    0  123.12
    1  123.57
    ```
    
    Related CCI-MOC#35
    knikolla committed May 1, 2024
    Configuration menu
    Copy the full SHA
    9f999e5 View commit details
    Browse the repository at this point in the history