분류 전체보기259 Feature : 머신러닝 https://stackoverflow.com/questions/10665889/how-to-take-column-slices-of-dataframe-in-pandas How to take column-slices of dataframe in pandas I load some machine learning data from a CSV file. The first 2 columns are observations and the remaining columns are features. Currently, I do the following: data = pandas.read_csv('mydata.csv') stackoverflow.com Feature 뜻: https://coding-grandpa.tistory.. 2022. 6. 17. Pandas df.copy() 복사에도 두 종류가 있다. https://mizykk.tistory.com/63 [Python] df.copy() :: 복사본 만들기 / 얕은복사 & 깊은 복사 판다스에는 데이터프레임의 복사본을 만들어주는 pandas.DataFrame.copy가 있다. 이는 a = b와는 다른 방식의 복사이다. a = b는 원본 데이터가 변하면 똑같이 변하는 얕은 복사인 반면, pandas.DataFrame.copy mizykk.tistory.com 여기서는 얇은복사 / 깊은복사라고 한다. 깊게 들어가지 않고 간단하게 개념만 설명해주는 거라 좋다. 기존 데이터프레임을 df just_copy = df pandas_copy = df.copy() 여기서 just_copy는 df가 바뀌는거에따라 영향을 받는데(같이 바뀜), p.. 2022. 6. 17. DataFrame만들기, T(Transpose),histogram 2022. 6. 16. 에러처리 try : 실행할것 except : 에러발생시 어떻게 처리할지 pass: 무시하고 지나가기 except를 좀 더 디테일하게 지정할 수 있다. '0으로 나누기 문제가 생겼을시' 결과는 이렇게 나온다 None은 왜나올까? 10.0 5.0 3.3333333333333335 2.5 2.0 1.6666666666666667 1.4285714285714286 1.25 1.1111111111111112 None 2022. 6. 15. list comprehension 파이썬 for문과 if문은 정말 자주쓰게된다. 오늘 강의에서 짧고 간단하게 쓰면서 처리속도까지 빠른 문법을 알게됐다. 홀수 list 출력 -기존방식- def odd(number): new_list = [] for x in range(number): if (x % 2) == 1: new_list.append(x) print(new_list) odd(30) list comprehension def list_comprehension(number): new_list = [x for x in range(number) if (x % 2) == 1] print(new_list) list_comprehension(30) 리스트형 = [변수 for 변수 in [변수1, 변수2, 변수3...] if 조건] 2022. 6. 15. seaborn palette, matplotlib heatmap 색 seaborn 공식사이트 https://seaborn.pydata.org/tutorial/color_palettes.html Choosing color palettes — seaborn 0.11.2 documentation Components of color Because of the way our eyes work, a particular color can be defined using three components. We usually program colors in a computer by specifying their RGB values, which set the intensity of the red, green, and blue channels in a displa seaborn.pydata.o.. 2022. 6. 14. to_excel : dataframe 을 excel로 내보내기 tips.to_excel('C:/Users/Pang rim/Desktop/Python/Python_practice/data9.xlsx', sheet_name='Sheet2') sheet_name 변수는없어도됨 tips는 dataframe이름임. 절대경로를 따오면 \으로 안나오고 원화표시가 나오는데 이러면 에러나와서 하나하나 역슬래시(\)로 바꿔줘야된다. 2022. 6. 14. matplotlib inline 왜 쓸까? matplotlib inline은 딱히 import하는것도아니고 한번 저 코드를 뺴고 실행해봤는데 문제가 없어서 왜 있는지 궁금해서 검색해봄. 대답: https://www.codeit.kr/community/threads/13983 코딩이 처음이라면, 코드잇 월 3만원대로 Python, JavaScript, HTML/CSS, Java 등 2,600개 이상 프로그래밍 강의를 무제한 수강하세요 www.codeit.kr 2022. 6. 14. 이전 1 ··· 28 29 30 31 32 33 다음