본문 바로가기

공부하며놀자80

[python][matplotlib] 파이썬에서 그래프 그리기 plot graph #2 x축 동기화 싱크 맞추기 지금 파이썬으로 하려고 하는것은 여러 데이터를 그래프로 시각화시켜줘야 한다. 무엇보다 서로 다른곳에서 가지고 온 정보 싱크를 맞춰줘야 한다. data1은 초당 5000개의 데이터를 가지고 오고, data2는 초당 10개 남짓 가지고 온다고 했을 때, 듬성 듬성 잘 맞춰줘야 비교할 수가 있다. x축을 시간으로 보고 아래와 같이 sharex 를 통해 x축을 share(공유)하겠다고 하면 나머지는 matplotlib가 다 한다. x_1과 x_2가 실제 x축 데이터이다. 측정된 시간도 다르고 무엇보다 개수도 다르다. #reference link ##https://stackoverflow.com/questions/62783909/matplotlib-set-data-not-showing-a-line import n.. 2022. 10. 17.
[python][matplotlib] 파이썬에서 그래프 그리기 plot graph #reference link ##https://stackoverflow.com/questions/62783909/matplotlib-set-data-not-showing-a-line import numpy as np import matplotlib.pyplot as plt import matplotlib.patches as patches import matplotlib.gridspec as gridspec #initial grid size with 3rows and 1 column gs = gridspec.GridSpec(3, 1) plt.close('all') plt.ion() fig = plt.figure(figsize=(10, 12)) fig.suptitle(f'Overall plot name', .. 2022. 10. 17.
RF 관련 기초 영상 - 네트워크 분석 기초 https://www.youtube.com/watch?v=gy2PFffWREI&ab_channel=%EB%A7%88%EB%A1%9C%EC%8A%A4 2022. 9. 26.
[Python] logging logger 관련 내용 아주 이해하기 쉽게 잘 설명하고 있다. 링크: https://stackoverflow.com/questions/67269916/how-to-avoid-root-handler-being-called-from-the-custom-logger-in-python Some basics about the logging module logger: a person who receives the log string, sorts it by a predefined level, then uses his own handler if any to process the log and, by default passes the log to his superior. root logger: the superior of superiors, .. 2022. 9. 8.
반응형