개발 유용한 사이트 모음
-정규표현식
https://regexlib.com/Search.aspx?k=phone
Regular Expression Library
Displaying page of pages; Items to Title Test Details Pattern Title Expression ^[2-9]\d{2}-\d{3}-\d{4}$ Description This expression matches a hyphen separated US phone number, of the form ANN-NNN-NNNN, where A is between 2 and 9 and N is between 0 and
regexlib.com
-책 추천
손에 잡히는 10분 정규표현식
벤 포터 저
-도미, 빙어 데이터
https://gist.github.com/rickiepark
rickiepark’s gists
GitHub Gist: star and fork rickiepark's gists by creating an account on GitHub.
gist.github.com
머신러닝에 사용되는 도미와 빙어 데이터
-수식 안내사이트
https://www.overleaf.com/learn/latex/List_of_Greek_letters_and_math_symbols
List of Greek letters and math symbols - Overleaf, Online LaTeX Editor
An online LaTeX editor that’s easy to use. No installation, real-time collaboration, version control, hundreds of LaTeX templates, and more.
www.overleaf.com
복잡한 수식 만들때 파이썬에서 어떻게 해야하는지 알려주는 사이트
-유방암 머신러닝 샘플데이터
sklearn.datasets.load_breast_cancer
Examples using sklearn.datasets.load_breast_cancer: Post pruning decision trees with cost complexity pruning Post pruning decision trees with cost complexity pruning, Permutation Importance with Mu...
scikit-learn.org
from sklearn.datasets import load_breast_cancer
#차원:30
obj = load_breast_cancer()
obj.data
#데이터 정보 확인
obj = load_breast_cancer()
print(f'feature_name:{obj.feature_names.shape}\n{obj.feature_names}',end='\n\n')
print(f'data:{obj.data.shape}\n{obj.data}',end='\n\n')
print(f'target_names:{obj.target_names.shape}\n{obj.target_names}',end='\n\n')
print(f'target:{obj.target.shape}\n{obj.target}',end='\n\n')