Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

update text #16

Merged
merged 1 commit into from
Aug 14, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
# packagerevieweR

This is an R shiny app for reviewing R packages. The app is very simple to use. Viewing the reviews does not require any login however, if you want to post a review you need to sign up with your email address.

R has more than 20k packages now. Some packages like `dplyr`, `data.table`, `ggplot2` etc are very well known and are reliable. Most R developers know and trust them. However, there are some packages which are very specific, they do a very specific thing. Sometimes there are also multiple packages which do the same thing.

It can be difficult to choose one package which suits your needs perfectly when you have not heard about that package before. You don’t know which one to choose. There’s no way to compare them or get some feedback. Do I trust this package? Is it reliable? Are there any security issues with the package? What is the opinion of other developers who have used this package before? What do they think?

I am trying to answer all these questions with this project called Package Reviewer.

Goal of package reviewer is to be a review site where people can review the packages that they have used. They can assign 0.5-5 stars to the package and add reviews in text form. It is Google reviews for packages.

Application is deployed at https://shahronak.shinyapps.io/packagerevieweR/
6 changes: 3 additions & 3 deletions global.R
Original file line number Diff line number Diff line change
Expand Up @@ -67,14 +67,14 @@ about_text <- function() {
tagList(
p("R has more than 20k packages now. Some packages like dplyr, data.table, ggplot2 etc are very well known and are reliable. Most R developers know and trust them."),
p("However, there are some packages which are very specific, they do a very specific thing.
Sometimes there are also multiple packages who do the same thing.
Sometimes there are also multiple packages which do the same thing.
It can be difficult to choose one package which suits your needs perfectly when you have not heard about that package before.
You don’t know which one to choose. There’s no way to compare them or get some feedback.
Do I trust this package? Is it reliable? Are there any security issues with the package?
What is the opinion of other developers who have used this package before? What do they think?
I am trying to answer all these questions with my project called Package Reviewer."),
p("Goal of package reviewer is to be a review site where people can review the packages that they have used.
They can assign 0.5-5 stars to the package and add reviews in text form. It is google reviews for packages.
They can assign 0.5-5 stars to the package and add reviews in text form. It is Google reviews for packages.
Viewing reviews does not need an account. However, if you want to post a review then you need to create an account by sharing your email address.")
)
}
Expand All @@ -91,7 +91,7 @@ next_text <- function() {
</ul>
</p>
"),
p("If you think there is something else that can be useful here, feel free to email me at shahronak47[at]yahoo[dot]in")
shiny::HTML("<p>If you think there is something else that can be useful here, feel free to <a href = 'https://github.com/shahronak47/packagerevieweR/issues/new'>create an issue on the GitHub repo.</a></p>")
)
}