TIL
-
TIL*2 - 05.17,9TIL 2024. 5. 20. 00:47
전처리에 시간이 많이 든다 = 이거 파고 들려면 어디까지 들어가야 할지 모르겠다. dtype('O') : Object더보기'b' boolean 'i' (signed) integer 'u' unsigned integer 'f' floating-point 'c' complex-floating point 'O' (Python) objects 'S', 'a' (byte-)string 'U' Unicode 'V' raw data (void) DataFrame List더보기to.DFL = ['Thanks You', 'Its fine no problem', 'Are you sure']#create new df df = pd.Da..
-
TIL - 05.15TIL 2024. 5. 15. 15:10
Pandas 숙제편iris.sort_values('Petal Length',ascending=False)iris.groupby('Species')[['Species']].count()iris.groupby('Species', as_index=False)['Species'].count()DF로 만드는 index = False=> 정확한 기능은? concat - dataframe 간의 합dfSLmn = df[['Sepal Length']].mean()dfPLmn = df[['Petal Length']].mean()df3 = pd.concat([dfSLmn,dfPLmn]) #axis =0 기본일 떄는 dtype = float64wru = pd.DataFrame(df3, columns=['Mean']).T #..
-
TIL - 05.14TIL 2024. 5. 15. 14:35
pd.query더보기pandas.quary()① 비교 연산자( ==, >, >=, ② in 연산자( in, ==, not in, != )③ 논리 연산자(and, or, not)④ 외부 변수(또는 함수) 참조 연산⑤ 인덱스 검색⑥ 문자열 부분검색( str.contains, str.startswith, str.endswith )열추가df['Sepal Sum'] = df['Sepal Length']*df['Sepal Width'] Groupby iris.groupby('Species')[['Species']].count()df대상으로 정렬한다시리즈엔 작동하지 않는다.된다. 다만 결과값이 as_index 사용하지 않으면 series일 뿐 SQLfirst_ last_ valueover (partion by,..
-
TIL - 05.13TIL 2024. 5. 13. 23:49
코드를 버려라!너무나도 멀리가버린 쓰레기는 쓰레기통에 버려라!runtime dictionary size changed 찾기는 어려우리라 내장함수, method 란 무엇인가?연산 하는것만 포함하는가? 아니다df.column 또한 method인가?attribute 을 가져오는 method인것인가? DataFrameSeriesColumnDataframe Attributes in Python Pandas - GeeksforGeeks Dataframe Attributes in Python Pandas - GeeksforGeeksA Computer Science portal for geeks. It contains well written, well thought and well explained compute..
-