可视化与BI
数据可视化工具
- • Tableau:拖拽式分析
- • Apache Superset:开源BI平台
BI平台集成
# Superset连接Hive superset db upgrade superset fab create-admin superset run -p 8088 --with-threads
可视化代码示例(Python)
import matplotlib.pyplot as plt plt.plot([1,2,3],[4,5,6]) plt.show()
# Superset连接Hive superset db upgrade superset fab create-admin superset run -p 8088 --with-threads
import matplotlib.pyplot as plt plt.plot([1,2,3],[4,5,6]) plt.show()