{% extends "base.html" %} {% block css %} {% endblock %} {% block content %}
Width px | Height px |
Statistic | Value |
---|---|
Number | {{jsdata.num_overlap}} |
Slope | {{ jsdata.slope_string }} |
Intercept | {{'%0.3f' % jsdata.intercept}} |
r value | {{'%0.3f' % jsdata.r_value}} |
P value | {% if jsdata.p_value < 0.001 %}{{'%0.3e' % jsdata.p_value}}{% else %}{{'%0.3f' % jsdata.p_value}}{% endif %} |
Regression Line
y = {{ jsdata.slope_string }} * x {% if jsdata.intercept < 0 %}- {{'%0.3f' % (jsdata.intercept * -1)}}{% else %}+ {{'%0.3f' % jsdata.intercept}}{% endif %} |
Statistic | Value |
---|---|
Number | {{jsdata.num_overlap}} |
Slope | {{ jsdata.srslope_string }} |
Intercept | {{'%0.3f' % jsdata.srintercept}} |
r value | {{'%0.3f' % jsdata.srr_value}} |
P value | {% if jsdata.srp_value < 0.001 %}{{'%0.3e' % jsdata.srp_value}}{% else %}{{'%0.3f' % jsdata.srp_value}}{% endif %} |
Regression Line
y = {{ jsdata.srslope_string }} * x {% if jsdata.srintercept < 0 %}- {{'%0.3f' % (jsdata.srintercept * -1)}}{% else %}+ {{'%0.3f' % jsdata.srintercept}}{% endif %} |