前一篇已经介绍了房源的采集工作和整理,下面给出可视化分析报告
1.数据量多时
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;
2.数据量少时
=VLOOKUP(A2, $G$1:$H$6,2,1)
代码集:https://blog.csdn.net/zhusongziye/article/details/80057794