본문 바로가기

공부하며놀자79

[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.
[C#]Abstract class abstract function은 상속 받는 쪽에서 무조건 새로 구현해야 한다. virtual은 기존 내용이 괜찮으면 그대로 쓰고 아니면 새로 구현해야 한다. public abstract class BaseClass { public string nameBase = "Base"; public void BaseName() { Console.WriteLine($"Basename is {nameBase}"); } public abstract void ChildName(); } public class ChildA:BaseClass { public string childName = "ChildA"; public override void ChildName() { Console.WriteLine($"Child name.. 2022. 4. 27.
반응형