| vangogh_cvd_scores | R Documentation |
Pre-computed CVD accessibility scores for all Van Gogh palettes. This data is generated by running check_all_vangogh_cvd() and is included for quick reference without requiring the colorspace package.
vangogh_cvd_scores
A data frame with CVD accessibility metrics:
Name of the Van Gogh palette
Type of colour vision deficiency
Minimum CIELAB distance between colours (higher = more distinguishable)
Rating: Poor, Fair, Good, or Excellent
Average accessibility across all CVD types
Distance interpretation:
< 10: Poor - colours may be indistinguishable
10-20: Fair - some difficulty distinguishing
20-40: Good - generally distinguishable
> 40: Excellent - highly distinguishable
## Not run:
# View CVD scores
data(vangogh_cvd_scores)
# Find most accessible palettes
palette_summary <- aggregate(
min_distance ~ palette,
data = vangogh_cvd_scores,
FUN = mean
)
palette_summary[order(-palette_summary$min_distance), ]
# Filter by CVD type
deutan_scores <- vangogh_cvd_scores[
vangogh_cvd_scores$cvd_type == "Deuteranopia (red-green)",
]
deutan_scores[order(-deutan_scores$min_distance), ]
## End(Not run)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.