Something went wrong!
Hang in there while we get back on track
Examples for Data Type Validator & Fixer
Explore real-world examples showing how this skill works with different inputs and outputs.
European Number Format Conversion
Demonstrates handling of European number formats where periods are thousands separators and commas are decimal separators (1.234,56 = 1234.56). Also shows ID column detection and preservation logic for columns containing 'ID' in the name.
Sales Data with Currency and Dates
Validates a simple sales dataset with date strings in MM/DD/YYYY format, currency values with dollar signs, and Yes/No boolean text. Demonstrates core type conversions: dates to datetime, currency to numeric, and text booleans to proper bool type.
Survey Data with Mixed Missing Values
Handles survey response data with multiple missing value representations (N/A, n/a), percentage strings, and mixed date formats (YYYY-MM-DD and MM/DD/YYYY). Shows how the skill standardizes missing values to NaN and converts percentages to decimals.