├── .DS_Store ├── .gitignore ├── LICENSE ├── PPT ├── [Marketing_Science] Week01-OT.pdf ├── [Marketing_Science] Week02-Bayesian_Rethinking.pdf ├── [Marketing_Science] Week03-마케팅에서의 인과추론.pdf ├── [Marketing_Science] Week05-PyMC & TVC.pdf ├── [Marketing_Science] Week06-Multi Touch Digital Attribution.pdf ├── [Marketing_Science] Week07-준실험(Quasi-experiments).pdf ├── [Marketing_Science] Week08-Segmentation & RFM.pdf ├── [Marketing_Science] Week10-Customer Lifetime Value.pdf └── [가짜연구소 인과추론팀] 10기 프로젝트 OT.pdf ├── README.md └── [Marketing_Science] Template.pptx /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CausalInferenceLab/Marketing_Science/2d82c9645bdd6419a22c4ff90232084ec1068554/.DS_Store -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # Created by https://www.toptal.com/developers/gitignore/api/r,python,jupyternotebooks 2 | # Edit at https://www.toptal.com/developers/gitignore?templates=r,python,jupyternotebooks 3 | 4 | ### JupyterNotebooks ### 5 | # gitignore template for Jupyter Notebooks 6 | # website: http://jupyter.org/ 7 | 8 | .ipynb_checkpoints 9 | */.ipynb_checkpoints/* 10 | 11 | # IPython 12 | profile_default/ 13 | ipython_config.py 14 | 15 | # Remove previous ipynb_checkpoints 16 | # git rm -r .ipynb_checkpoints/ 17 | 18 | ### Python ### 19 | # Byte-compiled / optimized / DLL files 20 | __pycache__/ 21 | *.py[cod] 22 | *$py.class 23 | 24 | # C extensions 25 | *.so 26 | 27 | # Distribution / packaging 28 | .Python 29 | build/ 30 | develop-eggs/ 31 | dist/ 32 | downloads/ 33 | eggs/ 34 | .eggs/ 35 | lib/ 36 | lib64/ 37 | parts/ 38 | sdist/ 39 | var/ 40 | wheels/ 41 | share/python-wheels/ 42 | *.egg-info/ 43 | .installed.cfg 44 | *.egg 45 | MANIFEST 46 | 47 | # PyInstaller 48 | # Usually these files are written by a python script from a template 49 | # before PyInstaller builds the exe, so as to inject date/other infos into it. 50 | *.manifest 51 | *.spec 52 | 53 | # Installer logs 54 | pip-log.txt 55 | pip-delete-this-directory.txt 56 | 57 | # Unit test / coverage reports 58 | htmlcov/ 59 | .tox/ 60 | .nox/ 61 | .coverage 62 | .coverage.* 63 | .cache 64 | nosetests.xml 65 | coverage.xml 66 | *.cover 67 | *.py,cover 68 | .hypothesis/ 69 | .pytest_cache/ 70 | cover/ 71 | 72 | # Translations 73 | *.mo 74 | *.pot 75 | 76 | # Django stuff: 77 | *.log 78 | local_settings.py 79 | db.sqlite3 80 | db.sqlite3-journal 81 | 82 | # Flask stuff: 83 | instance/ 84 | .webassets-cache 85 | 86 | # Scrapy stuff: 87 | .scrapy 88 | 89 | # Sphinx documentation 90 | docs/_build/ 91 | 92 | # PyBuilder 93 | .pybuilder/ 94 | target/ 95 | 96 | # Jupyter Notebook 97 | 98 | # IPython 99 | 100 | # pyenv 101 | # For a library or package, you might want to ignore these files since the code is 102 | # intended to run in multiple environments; otherwise, check them in: 103 | # .python-version 104 | 105 | # pipenv 106 | # According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control. 107 | # However, in case of collaboration, if having platform-specific dependencies or dependencies 108 | # having no cross-platform support, pipenv may install dependencies that don't work, or not 109 | # install all needed dependencies. 110 | #Pipfile.lock 111 | 112 | # poetry 113 | # Similar to Pipfile.lock, it is generally recommended to include poetry.lock in version control. 114 | # This is especially recommended for binary packages to ensure reproducibility, and is more 115 | # commonly ignored for libraries. 116 | # https://python-poetry.org/docs/basic-usage/#commit-your-poetrylock-file-to-version-control 117 | #poetry.lock 118 | 119 | # pdm 120 | # Similar to Pipfile.lock, it is generally recommended to include pdm.lock in version control. 121 | #pdm.lock 122 | # pdm stores project-wide configurations in .pdm.toml, but it is recommended to not include it 123 | # in version control. 124 | # https://pdm.fming.dev/#use-with-ide 125 | .pdm.toml 126 | 127 | # PEP 582; used by e.g. github.com/David-OConnor/pyflow and github.com/pdm-project/pdm 128 | __pypackages__/ 129 | 130 | # Celery stuff 131 | celerybeat-schedule 132 | celerybeat.pid 133 | 134 | # SageMath parsed files 135 | *.sage.py 136 | 137 | # Environments 138 | .env 139 | .venv 140 | env/ 141 | venv/ 142 | ENV/ 143 | env.bak/ 144 | venv.bak/ 145 | 146 | # Spyder project settings 147 | .spyderproject 148 | .spyproject 149 | 150 | # Rope project settings 151 | .ropeproject 152 | 153 | # mkdocs documentation 154 | /site 155 | 156 | # mypy 157 | .mypy_cache/ 158 | .dmypy.json 159 | dmypy.json 160 | 161 | # Pyre type checker 162 | .pyre/ 163 | 164 | # pytype static type analyzer 165 | .pytype/ 166 | 167 | # Cython debug symbols 168 | cython_debug/ 169 | 170 | # PyCharm 171 | # JetBrains specific template is maintained in a separate JetBrains.gitignore that can 172 | # be found at https://github.com/github/gitignore/blob/main/Global/JetBrains.gitignore 173 | # and can be added to the global gitignore or merged into this file. For a more nuclear 174 | # option (not recommended) you can uncomment the following to ignore the entire idea folder. 175 | #.idea/ 176 | 177 | ### Python Patch ### 178 | # Poetry local configuration file - https://python-poetry.org/docs/configuration/#local-configuration 179 | poetry.toml 180 | 181 | # ruff 182 | .ruff_cache/ 183 | 184 | # LSP config files 185 | pyrightconfig.json 186 | 187 | ### R ### 188 | # History files 189 | .Rhistory 190 | .Rapp.history 191 | 192 | # Session Data files 193 | .RData 194 | .RDataTmp 195 | 196 | # User-specific files 197 | .Ruserdata 198 | 199 | # Example code in package build process 200 | *-Ex.R 201 | 202 | # Output files from R CMD build 203 | /*.tar.gz 204 | 205 | # Output files from R CMD check 206 | /*.Rcheck/ 207 | 208 | # RStudio files 209 | .Rproj.user/ 210 | 211 | # produced vignettes 212 | vignettes/*.html 213 | vignettes/*.pdf 214 | 215 | # OAuth2 token, see https://github.com/hadley/httr/releases/tag/v0.3 216 | .httr-oauth 217 | 218 | # knitr and R markdown default cache directories 219 | *_cache/ 220 | /cache/ 221 | 222 | # Temporary files created by R markdown 223 | *.utf8.md 224 | *.knit.md 225 | 226 | # R Environment Variables 227 | .Renviron 228 | 229 | # pkgdown site 230 | docs/ 231 | 232 | # translation temp files 233 | po/*~ 234 | 235 | # RStudio Connect folder 236 | rsconnect/ 237 | 238 | ### R.Bookdown Stack ### 239 | # R package: bookdown caching files 240 | /*_files/ 241 | 242 | # End of https://www.toptal.com/developers/gitignore/api/r,python,jupyternotebooks -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2025 가짜연구소 (Pseudo Lab) 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /PPT/[Marketing_Science] Week01-OT.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CausalInferenceLab/Marketing_Science/2d82c9645bdd6419a22c4ff90232084ec1068554/PPT/[Marketing_Science] Week01-OT.pdf -------------------------------------------------------------------------------- /PPT/[Marketing_Science] Week02-Bayesian_Rethinking.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CausalInferenceLab/Marketing_Science/2d82c9645bdd6419a22c4ff90232084ec1068554/PPT/[Marketing_Science] Week02-Bayesian_Rethinking.pdf -------------------------------------------------------------------------------- /PPT/[Marketing_Science] Week03-마케팅에서의 인과추론.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CausalInferenceLab/Marketing_Science/2d82c9645bdd6419a22c4ff90232084ec1068554/PPT/[Marketing_Science] Week03-마케팅에서의 인과추론.pdf -------------------------------------------------------------------------------- /PPT/[Marketing_Science] Week05-PyMC & TVC.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CausalInferenceLab/Marketing_Science/2d82c9645bdd6419a22c4ff90232084ec1068554/PPT/[Marketing_Science] Week05-PyMC & TVC.pdf -------------------------------------------------------------------------------- /PPT/[Marketing_Science] Week06-Multi Touch Digital Attribution.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CausalInferenceLab/Marketing_Science/2d82c9645bdd6419a22c4ff90232084ec1068554/PPT/[Marketing_Science] Week06-Multi Touch Digital Attribution.pdf -------------------------------------------------------------------------------- /PPT/[Marketing_Science] Week07-준실험(Quasi-experiments).pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CausalInferenceLab/Marketing_Science/2d82c9645bdd6419a22c4ff90232084ec1068554/PPT/[Marketing_Science] Week07-준실험(Quasi-experiments).pdf -------------------------------------------------------------------------------- /PPT/[Marketing_Science] Week08-Segmentation & RFM.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CausalInferenceLab/Marketing_Science/2d82c9645bdd6419a22c4ff90232084ec1068554/PPT/[Marketing_Science] Week08-Segmentation & RFM.pdf -------------------------------------------------------------------------------- /PPT/[Marketing_Science] Week10-Customer Lifetime Value.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CausalInferenceLab/Marketing_Science/2d82c9645bdd6419a22c4ff90232084ec1068554/PPT/[Marketing_Science] Week10-Customer Lifetime Value.pdf -------------------------------------------------------------------------------- /PPT/[가짜연구소 인과추론팀] 10기 프로젝트 OT.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CausalInferenceLab/Marketing_Science/2d82c9645bdd6419a22c4ff90232084ec1068554/PPT/[가짜연구소 인과추론팀] 10기 프로젝트 OT.pdf -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Marketing Science 2 | 3 |