You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+35-18Lines changed: 35 additions & 18 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -47,36 +47,58 @@ Provides a set of exploratory data analysis (EDA) focused on numeric columns. Th
47
47
48
48
49
49
**Numeric value checks**
50
+
50
51
Numeric value checks ensure that numerical columns contain valid and meaningful values. These checks help detect outliers, impossible values, and violations of constraints that should logically apply to the data.
- Verifys that numeric values fall within an expected range.
53
54
- Detects negative values where they are not allowed
54
55
- Identifies values that violate domain-specific boundaries.
55
56
56
-
**Column-level checks**
57
-
Column-level checks inspect each column individually to understand data quality and readiness for cleaning or modeling. These checks evaluate the composition, completeness, and consistency of columns.
58
-
-` summarize_column_quality(df,target_column)`
59
-
- Confirms the required columns (e.g., the target column) are present.
60
-
- Checks data type consistency across each column
61
-
- Calculates the number and percentage of missing values
62
-
- Reports the number of unique values to identify high-cardinality or low-variance columns
63
-
64
57
While standard libraries like Pandas provide tools to transform data, **Datacure** provides the rules to validate it. By focusing on data cleaning - structural integrity, column consistency, and value range constraints - it allows developers to build more resilient data pipelines with less boilerplate code.
65
58
66
-
## Get started
59
+
## Setting up the Development Environment
60
+
1. Clone the repository to your local machine by opening your terminal and run the following commands:
0 commit comments