일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
- pandas
- SPL
- install
- Lotto
- 삼성소프트웨어멤버십
- dataframe
- Button
- Python
- CNN
- Splunk
- keras
- synology
- javascript
- 알고리즘
- RNN
- imread
- pycharm
- SciPy
- index
- pip
- GT-S80
- LSTM
- ipad
- mean
- Numpy
- DFS
- mariadb
- E-P1
- GitHub
- Series
- Today
- Total
목록공부 (287)
잠토의 잠망경
github set 기본기능 set의 특징 무질서 중복제거 code github #region::sample s1 = set([1,2,3,4]) print(s1) print(len(s1)) print(type(s1)) s2 = set('hello') print(s2) print(len(s2)) s3 = set() print(s3) print(len(s3)) #endregion 결과 {1, 2, 3, 4} 4 {'e', 'h', 'l', 'o'} 4 set() 0set에서 교집합, 차집합, 합집합 code github # region::union,difference,intersection s1 = set([1,2,3,4,5,6,7,8]..
기본 활용 클래스 같은 tuple형태이다. tuple은 한번 적용하면 변경 불가한 const 같은 것으로 가독성을 위하여 namedtuple을 사용하는 것이다. github code from collections import namedtuple CTest = namedtuple("CTest", "row col num num1") test01 = CTest(1,2,3,4) print('row: {0}, col: {1}, num: {2}, num1: {3}'.format(test01.row, test01.col, test01.num, test01.num1)) # tuple 이기때문에 변경은 안된다. test01.row = 10 print('row: {0}, col: {1}, num: {..
group 하고 그 안에서 가장 큰 것을 찾기 github var temp1 = (from t in temp group t by new {t.kind01} into g select new { g.Key, GList = g.OrderByDescending(z => z.num).First() }).Select(z => z.GList).ToList(); var temp2 = (from t in temp group t by new {t.kind01} into g select new { GList = g.OrderByDescending(z => z.num).First() }).ToList();
brief category tag 주요 내용 html lang lang="ko" head title 아래 참고 제목 head meta meta charset="UTF-8" 인코딩 방식 body h1 제목, 크기 설정됨 body h1 제목, 크기 설정됨 body p 문장 body br 줄바꿈 body strong 강조, bold body b 강조, bold body em, i 이태릭체 body hr split body span 문장 그룹 color body ul, li unordered list, 순서 없는 목록 body ol, li ordered list, 순서 없는 목록 body ol, li start="5" 시작 순서 주기 body dl, dt, dd 특정 항목과 설명을 한 set으로 묶어서 표시 b..
one dark pro 를 설치해보자 도구(tools) → 옵션(option) → 환경 → 색 테마 one dark pro (별로임) 함수가 보이지 않아서 실망 어둡게(그나마)
문자열 바꾸기 방법 github 기초 data datas = pd.DataFrame({'col1': [' ab_c_d_e_', 'b: cd', 'cde_ '], 'col2': ['a', 'a', 'c'], 'col3': [1, 2, 3], 'mydate': [pd.to_datetime('20200402'), pd.to_datetime('20200501')-pd.DateOffset(days=5), pd.to_datetime('20200502')] }, index=[0, 1, 2]) Replace 방식 def f_pandas_replace(datas:DataFrame): print(datas.info()) print(datas['col1'].str) print(datas['col1'].str.replace(..
mariadb를 사용하다 보면 timestamp 오류가 발생할 경우가 있다. AttributeError: 'Timestamp' object has no attribute 'translate' 해당 오류가 발생할 경우 해결책 datas = pd.DataFrame({'col1': [' ab_c', 'b: cd', 'cde_ '], 'col2': ['a', 'a', 'c'], 'col3': [1, 2, 3], 'mydate': [pd.to_datetime('20200402'), pd.to_datetime('20200501')-pd.DateOffset(days=5), pd.to_datetime('20200502')] }, index=[0, 1, 2]) print(datas.info()) 다음과 datetime6..