Cats in the USA
An Interactive Dashboard for Detecting Patterns and Outliers in Animal Tracking Data
Dataset
The dataset used is “Pet Cats United States” from the Movebank Data Repository. This dataset contains GPS tracking data for pet cats in the United States and includes variables such as timestamps, animals IDs, sex, age, location coordinates, and movement attributes. The main dataset “pet-cats-usa.csv” has 659770 rows and 15 columns. The reference dataset “pet-cats-usa-reference-data.csv” has 154 rows and 21 columns. This datasets is ideal for spatial and temporal analysis and its size is well suited for data mining and interactive data visualization. I chose this dataset because it allows for movement pattern detection as well as outlier detections which is ideal for discovering interesting behavioral insights into the ecological impact of pet cats in the United States.
Questions
What movement patterns do pet cats in the United States exhibit?
Can we identify potential outliers or unusual behaviors in cat movement data?
Analysis plan
- For Question 1 I can:
- Visualize cat movement paths on a map using
location-lat
,location-long
, andtimestamp
. - Group movement patterns by
animal-sex
andanimal-life-stage
. - Summarize key statistics such as average daily travel distance
- Visualize cat movement paths on a map using
- For Question 2 I can:
- Identify outliers using
ground-speed
,algorithm-marked-outlier
, andmanually-marked-outlier
. - Highlight unusual behaviors
- Create filters for users to view specific subsets of cats
- Identify outliers using
Timeline
- Week 5: Perform basic exploratory analysis and explore static visualizations that could be used for the dashboard.
- Week 6: Develop dashboard components with outliers and filtering features.
- Week 7: Finalize dashboard and submit project write-up.
Project Organization
final-project-nessapantfoerder/
│
├── data/
│ ├── pet-cats-usa.csv
│ ├── pet-cats-usa-reference-data.csv
│ └── README.md # Description of the data files
│
├── _extra/
│ └── analysis.ipynb # Initial exploratory analysis
│ └── README.md # Purpose of the folder
│
├── images/ # Any images needed for the presentation or website
│
├── about.qmd
├── index.qmd
├── presentation.qmd
├── proposal.qmd
├── _quarto.yml
├── README.md
└── requirements.txt