The goal of horoscoper is to provide detailed information about
zodiac signs and horoscopes.
This package uses webscrapping to get the horoscope information from
horoscope.com.
You can install the the development version from GitHub with:
# install.packages("devtools")
devtools::install_github("aibarra21/horoscoper")
#> Using GitHub PAT from the git credential store.
#> Skipping install of 'horoscoper' from a github remote, the SHA1 (cc5a2f87) has not changed since last install.
#> Use `force = TRUE` to force installationlibrary(horoscoper)You can use the function get_zodiac_sign() to determine what zodiac sign you are by entering your birthday. Enter the month, day, then year in any format.
get_zodiac_sign("april 24 2002")
#> [1] "Your zodiac sign is Taurus"You can use the function get_sign_traits() to determine traits and characteristics of your sign.
get_sign_traits("taurus")
#> Sign: Taurus
#> Symbol: Bull
#> Lucky Gem: Emerald
#> Flower: Rose, Poppy, & Foxglove
#> You are described as Dependable, Musical, Practical
#> You are most compatible with Cancer.
#> Motto: "Nothing worth having comes easy."You can use the function getdailyhoroscope() to get your daily horoscope for your zodiac. This function updates daily.
getdailyhoroscope("taurus")
#> Sign: Taurus
#> Daily Horoscope: May 29, 2024 - Your wacky personality will be appreciated today, Taurus, but don't take it too far. Leave room for seriousness to enter the picture. There's a dreamy, cloudy sensation to the day that might make it difficult for you to concentrate on any one thing. If you pretend to know the answer when you don't, you'll only confuse the people who rely on your knowledge or authority. Respect that everyone wants answers these days.You can use the function compatibility() to determine how compatible any two zodiac signs are.
compatibility("taurus","aries")
#> Romantic Compatibility between Taurus and Aries:
#> Compatibility Score: 4/10
#> Description: The Bull and the Ram are a hot-and-heavy couple from the start as each sign is sensual and passionate, which creates fireworks in bed. However, there isn’t much going for the pairing. The fiery temper of Aries clashes with the stubborn patience of Taurus, making fights a standoff. Aries seeks change while Taurus craves routine. Being one sign apart, they couldn’t be more different in terms of temperament and life views. Despite their glaring differences, the start of an Aries/Taurus paring is a beautiful thing: gushing compliments, gifts, vibrant conversation, and utter devotion. As ambitious people, Taurus can help keep Aries steady and grounded while Aries can push the Bull to dream bigger. Aries boldly seeks adventure and Taurus gives them a solid plan on how to get there—and a beautiful home to come back to.