목록2024/11 (45)
rubus0304 님의 블로그
96. Monthly Transactions Ihttps://leetcode.com/problems/monthly-transactions-i/description/ Write an SQL query to find for each month and country, the number of transactions and their total amount, the number of approved transactions and their total amount.Return the result table in any order. (시도) 월별, 국가별로 뽑고, 거래횟수는 count로 뽑았는데, group by를 1로 해도 2로 해도 3개가 나오지 않는다. 그리고 나머지는 서브쿼리로 해야하는건가select d..
95. Queries Quality and Percentagehttps://leetcode.com/problems/queries-quality-and-percentage/ We define query quality as:The average of the ratio between query rating and its position.We also define poor query percentage as:The percentage of all queries with rating less than 3.Write a solution to find each query_name, the quality and poor_query_percentage.Both quality and poor_query_percentage..
1. 설치, 불러오고, 저장하기문법내용기본 설치 pip install pandas numpy matplotlibterminal 로 pandas 불러오기Shift + Ctrl + ~ 동시에 누르고 pip install pandas 설치 / pip install seaborn 동일하게 설치단축Ctrl + Enter 실행 A - above (위) 이동B - below (아래) 이동Enter - 입력Esc - 빠져나오기dd - deleteX - 잘라내기C - 복사V - 붙여넣기Pandas 불러오기 import pandas as pd import seaborn as sns 데이터 불러오기data = sns.load_dataset('tips') -> sns 에서 'tips'라는 데이터셋 가져왔음 data..
(+ 추가 데이터도 가능.) // 데이터 처리, 시각화 // 기술적으로 성장위주담백하게월- 화- PPT 들어갈 내용정리수- PPT완료목요일까지 제출.이후 인사이트 도출 등 해도됨 함수, 라이브러리/ 이상치, 결측치/ 1. 주제선정/ 프로젝트 계획서 - 명/ 목표/ 핵심내용2. 프로젝트 수행 - O 목표/ N 필요데이터/ A 분석/ I 해석/ R 보고 (시각화, 결론)3. 프로젝트 평가 항목 - 데이터 EDA 및 전처리 / 결과 해석 및 보고 pygwalker 라이브러리 (6강) 프로젝트 노션 활용 11/7 목요일 9시까지 (담백하게)11/8 금요일 2시까지 발표 (발표시간 10분) (DailyScrum 이후 오전 발표 리허설)발표자 - 사다리로 X 11/1 (금) 기초프로젝트 주제 및 개요 정..
https://leetcode.com/problems/percentage-of-users-attended-a-contest/description/ 94. Percentage of Users Attended a ContestWrite a solution to find the percentage of the users registered in each contest rounded to two decimals.Return the result table ordered by percentage in descending order. In case of a tie, order it by contest_id in ascending order.The result format is in the following examp..