목록2024/10/18 (4)
rubus0304 님의 블로그
정량적 데이터 비율DAU (Daily Active User) 일일 활성 사용자수 Retention 재방문 비율 추천지수 (NPS Net Promoter Score) 북극성 지표 MECE 하게 나눈게 KPI 무엇을 그것이 왜 중요한가?
77. Recyclable and Low Fat Products https://leetcode.com/problems/recyclable-and-low-fat-products/description/ 문제 주석 잘 봐야함! 1, 3만 찍는게 아니라 값을 보고 나오게끔 유도하는 식..^_ㅠselect product_idfrom productswhere low_fats = "Y" and recyclable ="Y" 78. Find Customer Referee https://leetcode.com/problems/find-customer-referee/description/ Output이 나와야함! select namefrom customerwhere referee_id != 2 or referee_..
https://teamsparta.notion.site/SCC-9d011497cc1545628651f0bf95c9008a [SCC] 알면 유용한 파이썬 문법들! | Notion수업 목표teamsparta.notion.site 목차 1,2,3 필수 알기 포맷팅 f-string 사용 (colab 파이썬 최신버전, Python 3.6 이상) 리스트 캄프리헨션 lambdadef x lambda한 줄로 표현이름없으므로 임시로 사용/ glob데이터 파일 가져올 때 어떤 경로 가지고 있는지, 이 경로에 어떤 파일이 있는지 쭉 보고싶을 때 씀 OS 운영체제랑 관련된 라이브러리 (우리 컴터랑 관련된 일을 할 때, ex) 폴더 생성, 삭제colab에선 구글 클라우드를 건듦생성/ 폴더,파일이름 변경/ 파일삭제 ..
https://teamsparta.notion.site/SCC-e71a79753e3e4e31a2048f74946542df [SCC] 파이썬의 몸통 : 함수 | Notion수업 목표teamsparta.notion.site print()def greet (name): message = "Hello, " + name + "!" return messagegreeting = greet("Alice")print(greeting) 평균계산하기def calculate_mean(numbers): total=sum(numbers) mean=total/len(numbers) return meandata = [10,20,30,40,50]average = calculate_mean(data)pr..