❯ Do superhosts get better review scores than other hosts?
plannerneed avg review scores for superhost=true vs false; check stat significance.
sqlSELECT is_superhost, AVG(review_scores_rating) AS avg_rating,
COUNT(*) AS n FROM listings
WHERE review_scores_rating IS NOT NULL
GROUP BY is_superhost; dbreturned 2 rows · n(true)=18,402 · n(false)=26,117
validatornull audit OK · sample size healthy · running Welch’s t-test …
sql-- significance check via python stats
t, p = ttest_ind(super_scores, other_scores,
equal_var=False) chartrendered: bar chart, superhost=4.89 vs other=4.61 (0–5)
narratorYes. Superhosts average 4.89 vs 4.61 (Δ=0.28, p<0.001). Source: listings.review_scores_rating × host.is_superhost.