Created
July 21, 2020 07:01
-
-
Save maskaravivek/d0b657e15adbc3e077abdb98be37bc75 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
HEALTHCARE_EXPENSES_MIN = df["HEALTHCARE_EXPENSES"].min() | |
HEALTHCARE_EXPENSES_MAX = df["HEALTHCARE_EXPENSES"].max() | |
print('Min and max healthcare expense', HEALTHCARE_EXPENSES_MIN, HEALTHCARE_EXPENSES_MAX) | |
HEALTHCARE_COVERAGE_MIN = df["HEALTHCARE_COVERAGE"].min() | |
HEALTHCARE_COVERAGE_MAX = df["HEALTHCARE_COVERAGE"].max() | |
print('Min and max healthcare coverage', HEALTHCARE_COVERAGE_MIN, HEALTHCARE_COVERAGE_MAX) | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment