Introduction to superset deployment, installation and use
Introduction to superset deployment, installation and use
Superset overview
Apache Superset is an open source, modern and lightweight BI analysis tool. It can connect with a variety of data sources, has rich icon display forms, supports custom dashboards, and has a friendly user interface, which is very easy to use.
Superset application scen ...
Added by EPCtech on Tue, 01 Feb 2022 16:46:34 +0200
RFM analysis of e-commerce users (average value calculation center point)
Raw data set
python code
Edit with Jupiter notebook
import pandas as pd
import matplotlib.pyplot as plt
plt.rcParams['font.sans-serif']=['SimHei']
data = pd.read_excel(r'E:\a business\Data center station\E-commerce cases\Download source data\order.xlsx')
data.info()
data.sample(10)
Operation results:
It can be seen from the observation ...
Added by djbuddhi on Sat, 22 Jan 2022 16:15:02 +0200