utils/gradio_utils.py [362:372]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
            zipf_summary = (
                    "The optimal alpha based on this dataset is: **"
                    + str(round(z.alpha, 2))
                    + "**, with a KS distance of: **"
                    + str(round(z.ks_distance, 2))
            )
            zipf_summary += (
                    "**.  This was fit with a minimum rank value of: **"
                    + str(int(z.xmin))
                    + "**, which is the optimal rank *beyond which* the scaling regime of the power law fits best."
            )
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



widgets/zipf.py [60:70]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        zipf_summary = (
            "The optimal alpha based on this dataset is: **"
            + str(round(z.alpha, 2))
            + "**, with a KS distance of: **"
            + str(round(z.ks_distance, 2))
        )
        zipf_summary += (
            "**.  This was fit with a minimum rank value of: **"
            + str(int(z.xmin))
            + "**, which is the optimal rank *beyond which* the scaling regime of the power law fits best."
        )
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



