diff --git a/README.md b/README.md index dd6d08f..59646cd 100644 --- a/README.md +++ b/README.md @@ -1,3 +1,2 @@ # copbird-sna -This project uses pandas - either run `pip install pandas` to install the needed package or run these files in a conda-enviroment. diff --git a/src/create_dataset.py b/src/create_dataset.py deleted file mode 100644 index 2c90e8b..0000000 --- a/src/create_dataset.py +++ /dev/null @@ -1,11 +0,0 @@ -import pandas as pd - -tweets_path = "../raw_data/tweets.csv" - -tweets = pd.read_csv(tweets_path) - -# TODO extract mentions from tweets - -# TODO generate cooccurence matrix - -# TODO save cooccurence matrix diff --git a/src/create_id_list.py b/src/create_id_list.py deleted file mode 100644 index 5e9bcd7..0000000 --- a/src/create_id_list.py +++ /dev/null @@ -1,8 +0,0 @@ -import pandas as pd - -tweets_path = "../raw_data/tweets.csv" - -tweets = pd.read_csv(tweets_path) - -for id in tweets.id: - print(id)