前一篇已经介绍了房源的采集工作和整理,下面给出可视化分析报告
select *,(case when area >=120 then '120平以上'
when area >=80 then '80-120平之间'
when area >=60 then '60-80平之间'
when area >=40 then '40-60平之间'
else '40平以下' end) areas
from house_copy2;
前一篇已经介绍了房源的采集工作和整理,下面给出可视化分析报告
select *,(case when area >=120 then '120平以上'
when area >=80 then '80-120平之间'
when area >=60 then '60-80平之间'
when area >=40 then '40-60平之间'
else '40平以下' end) areas
from house_copy2;
相关文章: