[코드] matplotlib에서 marker 마커로 scatter plot하기 / 성능 그래프 피겨 figure
1. 가장 간단한 matplotlib with scatter plot import matplotlib.pyplot as plt# Example Datax = [10, 20, 30, 40, 50, 60]y = [10, 30, 20, 50, 70, 80]labels = ['Method A', 'Method B', 'Method C', 'Method D', 'Method E', 'Method F']categories = ['Classic', 'Machine Learning', 'Self-Supervised', 'Externally Guided', 'Externally Guided', 'Machine Learning']colors = ['green', 'blue', 'orange', ..