Going to the gym is a hobby of mine because it provides me a good way
to stay active and maintain my health. Whether it’s lifting
weights or running on the treadmill, each workout helps me feel a bit
more accomplished. Seeing progress over time, both in
strength and endurance, is a nice bonus that keeps me
motivated. I also enjoy the sense of community that the gym gives me
with the many new faces I have met.
My favorite movie is Birdman. I have watched this movie many times and everytime I find myself realizing something new about it. It is a philosophical movie that follows the life of an upcoming theater star that is struggling to recover from his famous appearance in the movie “Bird Man 4.” This movie is incredible because it is filmed entirely on one tape with zero cuts, completely relying on music to fill the empty scenes.
| Good | Okay | Bad |
|---|---|---|
| Chipotle | McDonalds | Wendy’s |
| Five Guys | Panera | Burger King |
| Shake Shack | Chikfila | Jimmy John’s |
| Starbucks | Crumbl | Dunkin Donuts |
This is my opinon on popular fast food spots.
##Below, I have defined two vectors and applied them in multiple operations. These operations will be performed on each individual value.
vector_1<-c(1,2,3,4,5)
vector_2<-c(5,4,3,2,1)
vector_1 * vector_2
## [1] 5 8 9 8 5
vector_1 / vector_2
## [1] 0.2 0.5 1.0 2.0 5.0
vector_1 + vector_2
## [1] 6 6 6 6 6
##This time because I set eval to false, it will not solve them for me.
vector_1 * vector_2
vector_1 / vector_2
vector_1 + vector_2
##This time because I set echo to false, it will only solve it for me.
## [1] 5 8 9 8 5
## [1] 0.2 0.5 1.0 2.0 5.0
## [1] 6 6 6 6 6