References: https://python-graph-gallery.com
Main References:
Seaborn
Zhihu
Tryolabs
Zhihu2
Colab Reference: https://colab.research.google.com/github/jakevdp/PythonDataScienceHandbook/blob/master/notebooks/04.14-Visualization-With-Seaborn.ipynb
Support References:
https://yanwei-liu.medium.com/python-資料視覺化筆記-二-使用seaborn繪圖-3adb03407a9
Installation( import )
import matplotlib.pyplot as plt
import seaborn as sns
sns.set()
Let's Start!!
Conclusion:
jointplot
sns.jointplot(x="x", y="y", data=train)
pairplot
sns.pairplot( train )
relplot
sns.relplot( x="x", y="y", data=train
)
regplot
sns.regplot( x="x", y="y", data=train
catplot
sns.catplot( x="x", y="y", data=train)
histplot
sns.histplot( x="x", hue="z", multiple="stack")
kedplot
sns.kdeplot( x="x", hue="z", multiple="stack")
rugplot
sns.rugplot( x )
FacetGrid
heatmap
imshow
size:
Invert_x/y axis
It's just like a C# window program for Python( linux/mac ) ?!
References: https://medium.com/bucketing/weekday-1-當qt-學會py-9472af78ccce
python3 -V
pip3 install PySide2
Introduction
Widget: Each component is called "Widget"
GUI Rendering
QUILoader
pyside2-uic
pyside2-uic mainwindow.ui > ui_mainwindow.py
ex.
Layout
Slot
from PySide2 import QtCore
sleep_btn.clicked.connect(self.exit)
Signal
from PySide2.QtCore import Signal
stop at https://medium.com/bucketing/pyside-6-基礎物件介紹-label-button-edit-e4efa9fb424d
2021/01/14
Label, Button, Edit
ComboBox, RadioButton, CheckButton, SpinBox
ListWidget, TableWidget, TreeWidget
DockWidget, ToolBox, StackWidget
QColor, QcolorDialog, QPalette
StyleSheet, QFont, QFontDialog
QSystemTrayIcon, Frameless, Window, MouseEvent
Qdialog, QMessageBox
QMenu, QAction, ToolTip, StatusTip
QTimer, QCalendar, QDateEdit
QTimeEdit, QLCDNumber, AnalogClock
Logging
Hello World!
VBox/HBox Layout
Questions?