분류 전체보기(611)
-
Matplotlib 기본 사용법
1. Matplotlib 시작import matplotlib.pyplot as plthttps://matplotlib.org/stable/users/getting_started/ Getting started — Matplotlib 3.9.1 documentationCheck out Plot types to get an overview of the types of plots you can create with Matplotlib.matplotlib.org 2. 기본적인 그래프 그리기# 데이터 준비x = [1, 2, 3, 4]y = [10, 20, 25, 30]# 그래프 그리기plt.plot(x, y)# 그래프 표시plt.show()https://matplotlib.org/stable/tutorials/in..
2024.07.30 -
Namespaces (인라인 네임스페이스)
참고: https://en.cppreference.com/w/cpp/language/namespace Namespaces - cppreference.comNamespaces provide a method for preventing name conflicts in large projects. Entities declared inside a namespace block are placed in a namespace scope, which prevents them from being mistaken for identically-named entities in other scopes. Entities declaren.cppreference.com * inline namespace ns-name { declar..
2024.07.29 -
Namespaces (기본 네임스페이스)
참고: https://en.cppreference.com/w/cpp/language/namespace Namespaces - cppreference.comNamespaces provide a method for preventing name conflicts in large projects. Entities declared inside a namespace block are placed in a namespace scope, which prevents them from being mistaken for identically-named entities in other scopes. Entities declaren.cppreference.com 네임스페이스는 C++에서 식별자(변수, 함수, 클래스 등)의 이..
2024.07.29 -
NumPy 기본 사용법
NumPyNumPy 가져오기import numpy as np 배열 생성# 리스트로부터 생성arr = np.array([1, 2, 3, 4, 5])# 튜플로부터 생성arr = np.array((1, 2, 3, 4, 5))# 0으로 채워진 배열 생성arr = np.zeros((2, 3)) # 2x3 배열# 1로 채워진 배열 생성arr = np.ones((2, 3)) # 2x3 배열# 일정 범위의 값을 가지는 배열 생성arr = np.arange(0, 10, 2) # 0부터 10까지 2씩 증가하는 배열# 일정 간격으로 나눈 값을 가지는 배열 생성arr = np.linspace(0, 1, 5) # 0부터 1까지 5개의 값을 가지는 배열https://numpy.org/doc/stable/user/quickstar..
2024.07.29 -
Pandas 기본 기능
PandasImporting Pandasimport pandas as pdCreating DataFrames# From a dictionarydata = {'Column1': [1, 2, 3, 4], 'Column2': ['a', 'b', 'c', 'd']}df = pd.DataFrame(data)# From a CSV filedf = pd.read_csv('file_path.csv')# From an Excel filedf = pd.read_excel('file_path.xlsx', sheet_name='Sheet1')https://pandas.pydata.org/pandas-docs/stable/user_guide/dsintro.html Intro to data structures — pandas 2..
2024.07.29 -
딥러닝 용어사전 사이트
딥러닝 용어사전: https://pseudo-lab.github.io/deep-learning-glossary/ 딥러닝 용어사전딥러닝 영어문서를 한국어로 번역하는 과정에서 용어를 통일하여 사용하기 위한 오픈소스 용어 사전입니다.pseudo-lab.github.io 한국어 용어를 통일하고 설명해주는 사이트로 참고 하면 좋을 것 같다.
2024.07.23