Looking at different times
ggplot(squirrels, aes(x=lat, y=long))+
geom_point() +
facet_wrap(~shift)

From here, we can see the differences in where squirrels are seen in the morning and afternoon/evening. Overall, we can see more squirrel sightings in the evening. This makes sense because there are less hours in the morning when people are awake - on average, Americans wake up at 7:00 am and go to bed around 11:30 pm. This means there are generally 5 AM hours people are awake and could be in the park and 11 PM hours people could be awake in the park.
Colors of squirrels and danger
ggplot(squirrels, aes(x=lat, y=long))+
geom_point() +
facet_wrap(~primary_fur_color)

ggplot(squirrels, aes(x=lat, y=long, color=quaas))+
geom_point() +
facet_wrap(~runs_from)

Types of coloring and their proportion to activities
ggplot(squirrels, aes(x=primary_fur_color, fill=running))+
geom_bar(position="fill")

ggplot(squirrels, aes(x=primary_fur_color, fill=chasing))+
geom_bar(position="fill")

ggplot(squirrels, aes(x=primary_fur_color, fill=climbing))+
geom_bar(position="fill")

ggplot(squirrels, aes(x=primary_fur_color, fill=eating))+
geom_bar(position="fill")

ggplot(squirrels, aes(x=primary_fur_color, fill=foraging))+
geom_bar(position="fill")

ggplot(squirrels, aes(x=primary_fur_color, fill=kuks))+
geom_bar(position="fill")

ggplot(squirrels, aes(x=primary_fur_color, fill=quaas))+
geom_bar(position="fill")

ggplot(squirrels, aes(x=primary_fur_color, fill=moans))+
geom_bar(position="fill")

ggplot(squirrels, aes(x=primary_fur_color, fill=tail_flags))+
geom_bar(position="fill")

ggplot(squirrels, aes(x=primary_fur_color, fill=tail_twitches))+
geom_bar(position="fill")

ggplot(squirrels, aes(x=primary_fur_color, fill=approaches))+
geom_bar(position="fill")

ggplot(squirrels, aes(x=primary_fur_color, fill=indifferent))+
geom_bar(position="fill")
