Topics277 [Data] A/B 테스트 개념 다지기 https://taksw222.tistory.com/229 이 글을 통해 A/B 테스트의 실제 예시를 다룬 적이 있습니다. 이 글에서는 조금 더 이론적인 부분이나 생각할 부분에 집중하여 A/B 테스트를 한번 더 알아보겠습니다. 들어가기 우리가 A/B 테스트를 진행할 때 단순히 A안과 B안을 비교해서 어디가 더 낫네, 그래서 뭘 하네 이렇게 단순히 끝내고 싶지는 않을 것입니다. 자, 데이터 분석가가 아닌 그냥 결과를 보는 사람 입장에서 생길 수 있는 다양한 의문점들을 봅시다. - 겨우 1% 차이인데, 이거 의미 있는거 맞아? - 이거 정말 A를 B로 바꾸면 개선되는거 맞지? 우연은 아니지? - 다른 고객들에게 적용해도 되는 이야기지? 등등, 다양한 합리적인 의심(?!)을 할 수 있습니다. 우리는 이것에 대.. 2024. 1. 31. [LeetCode] Friend Requests II https://leetcode.com/problems/friend-requests-ii-who-has-the-most-friends/ LeetCode - The World's Leading Online Programming Learning Platform Level up your coding skills and quickly land a job. This is the best place to expand your knowledge and get prepared for your next interview. leetcode.com 처음의 실수는 join으로 잡았는데, 한 쪽 테이블에 정보가 없을 거라는 생각을 하지 못했다. join으로 풀 수야 있긴 한데, 효율적인 풀이는 아닐 것이다. Union all로 .. 2024. 1. 31. [Leetcode] Confirmation Rate https://leetcode.com/problems/confirmation-rate/ LeetCode - The World's Leading Online Programming Learning Platform Level up your coding skills and quickly land a job. This is the best place to expand your knowledge and get prepared for your next interview. leetcode.com Left join을 "현명하게" 활용해야 하는 문제, 그 이유는 없는 케이스를 만들어야 하니까. Confirmation이 1, 아니면 0을 평균으로 계산하는 아이디어는 덤. 이러면 NULL은 0만 줄거고, 0의 평균은 0이다... 2024. 1. 30. [LeetCode] Department Top Three Salaries https://leetcode.com/problems/department-top-three-salaries/ LeetCode - The World's Leading Online Programming Learning Platform Level up your coding skills and quickly land a job. This is the best place to expand your knowledge and get prepared for your next interview. leetcode.com 각 부서별로 동률을 고려하여 부서별 top3 연봉에 해당하는 부서, 직원, 급여을 출력하는 문제이다. DENSE_RANK를 알면 끝. SELECT DEPARTMENT, EMPLOYEE, SALARY FRO.. 2024. 1. 30. [LeetCode] Second Highest Salary Problem : https://leetcode.com/problems/second-highest-salary/ LeetCode - The World's Leading Online Programming Learning Platform Level up your coding skills and quickly land a job. This is the best place to expand your knowledge and get prepared for your next interview. leetcode.com MAX가 아닌, 두번째로 높은 거를 찾는 건데, 그렇게 만만한 문제는 아니다! Sol 1) Dense_Rank를 이용한 풀이법 이게 동률일 경우도 고려해야 하므로, Rank를 매겨 2등을 찾고, 2등도.. 2024. 1. 30. [Data] 업리프트 모델링이란? - 예제편 아직, 개념편을 보지 않으셨다면 https://taksw222.tistory.com/237 데이터 출처는 https://www.kaggle.com/code/kriyeneekutbay/marketing-uplift 간단한 예제를 통해, 업리프트 모델링을 실제로 하는 법을 알아봅시다. 변수 설명입니다. recency : 가장 마지막 구매일로부터 지난 달 수 history : 현재까지 총 구매액 user_discount : 할인을 받은 적이 있는가? 있으면 1, 없으면 0 user_bogo : 1+1을 받은 적이 있는가? (one get one 이 1+1) zip_code : 우편 번호 구분(지역 구분) is_referral : 추천 채널로부터 고객을 유입받은 것인지 channel : 고객이 사용하는 채널 o.. 2024. 1. 29. 이전 1 ··· 6 7 8 9 10 11 12 ··· 47 다음