show_solutions

site.SiteSolutionSet.show_solutions(rounding=2)

Return the solution DataFrame with rounded values.

Parameters

Name Type Description Default
rounding int Number of decimal places to round numeric columns to. 2

Returns

Name Type Description
pandas.DataFrame The solution DataFrame with numeric values rounded to the specified precision.

Notes

This method does not modify the underlying DataFrame; it returns a rounded copy.

Back to top