UNPKG

enhancedmath

Version:

This package contains some enhanced mathematical operations

8 lines (7 loc) 224 B
/** * Transforms data into a stem and leaf plot. * @param data The data to show in the plot * @returns A string containing the plot */ declare const stemleafplot: (data: number[]) => string; export default stemleafplot;