Wisconsin Housing Predictor

Search Homes

Properties From Database

{% if page > 1 %} {% endif %} Page {{ page }}
{% for house in properties %} {% endfor %}
Price Living Area Bedrooms Bathrooms Year Built City
{% if house.price is defined and house.price not in [none, ''] %} ${{ "{:,.0f}".format(house.price|float) }} {% else %} N/A {% endif %} {% if house.livingArea is defined and house.livingArea not in [none, ''] %} {{ "{:,.0f}".format(house.livingArea|float) }} sqft {% else %} N/A {% endif %} {% if house.bedrooms is defined and house.bedrooms not in [none, ''] %} {{ "{:,.0f}".format(house.bedrooms|float) }} {% else %} N/A {% endif %} {% if house.bathrooms is defined and house.bathrooms not in [none, ''] %} {{ "{:,.0f}".format(house.bathrooms|float) }} {% else %} N/A {% endif %} {% if house.yearBuilt is defined and house.yearBuilt not in [none, ''] %} {{ "{:.0f}".format(house.yearBuilt|float) }} {% else %} N/A {% endif %} {% if house.city is defined and house.city not in [none, ''] %} {{ house.city }} {% else %} N/A {% endif %}

Predict Home Price


{% if prediction is defined and prediction is not none%}

Predicted Price

${{ "{:,.0f}".format(prediction|float) }}

{% endif %}