-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.py
More file actions
48 lines (33 loc) · 1002 Bytes
/
main.py
File metadata and controls
48 lines (33 loc) · 1002 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
# This is a sample Python script.
# Press Shift+F10 to execute it or replace it with your code.
# Press Double Shift to search everywhere for classes, files, tool windows, actions, and settings.
import fibonacci
import histogram
import normal_data_distribution
import linregress
import polynomial_regression
import multiple_regression
import scale_features
import train_test
import decision_tree
# Press the green button in the gutter to run the script.
if __name__ == '__main__':
# 菲波那契数列
# fibonacci.demo()
# 直方图
# histogram.demo()
# 正态数据分布
# normal_data_distribution.demo()
# 线性回归
# linregress.linregress_demo()
# 多项式回归
# polynomial_regression.demo()
# 多元回归
# multiple_regression.demo()
# 特征缩放
# scale_features.demo()
# 训练测试
# train_test.demo()
# 决策树
decision_tree.demo()
# See PyCharm help at https://www.jetbrains.com/help/pycharm/