카페검색 본문
카페글 본문
-
해당카페글 미리보기
-
Topic for July 8 (Mon) 2024.07.02해당카페글 미리보기
South Korea's consumer prices slowed to an 11-month low in June, staying below 3 percent for the third month in a row, data showed Tuesday. Consumer prices, a key gauge of inflation, rose 2.4 percent on-year last month, compared with a...
-
Re: 오늘의 마지막 문제. 와인 데이터(wine2.csv) 를 이용해서 와인의 종류를 분류하는... 2024.07.15해당카페글 미리보기
N / Table Total | |-------------------------| Total Observations in Table: 34 | test_result3 test_data[, 1] | t1 | t2 | t3 | Row Total | ---------------|-----------|-----------|-----------|-----------| t1 | 11 | 0 | 0 | 11 | | 15.559...
-
어제와오늘 2024.06.22해당카페글 미리보기
python def evaluate_strategy(data, strategy): # 전략에 따른 포지션 평가 win_count = 0 for index, row in data.iterrows(): if row['strategy'] == strategy: win_count += 1 if row['result'] == 'win' else 0 return win_count / len(data...
-
보고 혁명 : 현직 팀장들이 검증하는 실무 보고서 작성법 파이썬 코딩 2024.07.07해당카페글 미리보기
0].cells hdr_cells[0].text = 'Category' hdr_cells[1].text = 'Average Value' for index, row in grouped_data.iterrows(): row_cells = table.add_row().cells row_cells[0].text = row['Category'] row_cells[1].text = str(row['Value']) # 보고서...