diff --git a/data_analysis/README.md b/data_analysis/README.md new file mode 100644 index 0000000..82d0f4c --- /dev/null +++ b/data_analysis/README.md @@ -0,0 +1,13 @@ +# Analysis + +this folder contains several scripts & notebooks to document the analysis + +### Content Analysis + +- Step 1: Download the files in this folder (or clone but note this will download the entire survey app!) +- Step 2: Create notebook environment using Conda with environment.yml +`conda env create -f environment.yml` +`conda activate myenv` +- Step 3: Move data file into data_analysis folder +- Step 4: Run notebook +`jupyter notebook` diff --git a/data_analysis/content_environment.yml b/data_analysis/content_environment.yml new file mode 100644 index 0000000..70dc920 --- /dev/null +++ b/data_analysis/content_environment.yml @@ -0,0 +1,14 @@ +name: tea_content +channels: + - defaults + - conda-forge +dependencies: + - python=3.12.2 + - pandas=2.2.1 + - numpy=1.26.4 + - matplotlib=3.8.3 + - jupyter + - ipython + - pip + - pip: + - fuzzywuzzy==0.18.0