Python(2)
-
Matplot 라이브러리로 간단한 그래프 그리기
동생이 과제로 파이썬을 한다고 하길래 뭔가 하고 봤더니 그래프를 그리는 과제였다. 파이썬으로 그래프 그리는 건 개발 맨~~ 처음에 배울 때 잠깐 발에 물 닿을 정도로만 해 본 적이 있어서 내가 도움을 줄 수 있을 것 같았다. Matplot은 txt 파일의 데이터를 간단하게 그래프로 나타낼 수 있다. 엄청 짧게 코드를 짤 것 같아서 colab을 사용했다. from google.colab import drive drive.mount('/content/drive') txt 파일을 굳이 로컬에 저장 안해도 구글드라이브에 마운트 하면 다 갖다 쓸 수 있음 ㅋ import matplotlib.pyplot as plt import numpy as np ecg = np.loadtxt("/content/drive/MyD..
2021.04.01 -
Django에서 custom management commands 만들기
https://docs.djangoproject.com/en/3.1/howto/custom-management-commands/ Writing custom django-admin commands | Django documentation | Django Django The web framework for perfectionists with deadlines. Overview Download Documentation News Community Code Issues About ♥ Donate docs.djangoproject.com python에서 manage.py 뒤에 입력할 명령어를 직접 만들 수 있다. cumstom command를 만들면 python manage.py 명령어 이렇게 터미널에 입력하면 촤..
2020.11.10