Value Yourself(293)
-
MMM (Marketing Mixed Modeling)
보호되어 있는 글입니다.
2024.08.23 -
[서평] 데이터분석가의 숫자유감
보호되어 있는 글입니다.
2024.08.09 -
Complete Guide to A/B Testing Design, Implementation and Pitfalls
https://news.lunartech.ai/simple-and-complet-guide-to-a-b-testing-c34154d0ce5a Simple and Complete Guide to A/B TestingEnd-to-end A/B testing for your Data Science experiments for non-technical and technical specialists with examples and Python…news.lunartech.ai A/B 테스팅 설계, 구현과 함정에 대한 완벽 가이드 예제와 python 구현과 함께, 비 기술직군 과 기술직군 전문가를 위한 데이터 과학 실험에 대한 A/B 테스팅의 End-to-end A/B 테스팅은 통계학자들 사이에서 무작위 통제 실험으..
2024.07.05 -
프로처럼 A/B 테스팅: 통계적 검정 선택 기법 마스터하기
https://towardsdatascience.com/a-b-testing-like-a-pro-master-the-art-of-statistical-test-selection-603eb5803586 A/B Testing Like a Pro: Master the Art of Statistical Test SelectionReal-world data can be tricky! Guide to choosing and applying the Right Statistical Test (using Python)towardsdatascience.com https://www.kaggle.com/code/tammyrotem/ab-tests-with-python/notebook AB_Tests_with_PythonExp..
2024.07.02 -
How To Deploy Streamlit Application on AWS EC2 Instance | Docker
https://www.youtube.com/watch?v=DflWqmppOAg 1. gitlab 에 commit 후 push 를 한다. ctrl + P : Git commit All commit 메세지 작성 ctrl + P : Git push 메인 브랜치에 push 2. EC2 접속 3. 어플리케이션 폴더로 이동 cd ds-portfolio4. gitlab 서버의 마스터 브랜치에 있는 수정된 코드를 업데이트한다. git pull 5. EC2 서버에 업데이트 된 코드를 도커 서버에 빌드한다. docker build -t udy1376/dsportfolio:latest .6. 빌드된 이미지를 확인할 수 있다. docker images -a7. 도커 서버에 패키징된 어플리케이션을 푸시한다. docker ..
2024.05.14 -
[Regression and Prediction] 판매에서 광고의 효과
지도학습 (Supervised Learning) 에 대한 소개 : Regression문제판매에 대한 광고 효과를 정량화 하는것은 흥미로운 응용 회귀문제이다. 광고의 다양한 채널은 신문, TV, 라디오 등등이 있다.이 케이스에서 한 회사의 광고 데이터를 살펴보고 광고의 효과를 고려해볼것이다.또한 광고의 다양한 파라미터를 고려해 보면서 판매액을 예측해 볼 것이다.데이터 정보광고 소비 관련 3가지 피쳐가 있고, 타겟 변수는 순판매액이다. 속성들은 다음과 같다.TV - TV 광고 예산을 수치화한 독립변수Radio - Radio 광고 예산을 수치화한 독립변수News - news 광고를 수치화한 독립변수Sales - 종속 변수import pandas as pdimport numpy as npimport numpy ..
2024.05.07