Automatically Searching Github Repos by Topic - Chemometrics & Spectroscopy using R

No Clocks
Plumber + Shiny + Docker
How to dockerize a Shiny app that calls a Plumber API
mischelper/misc.R at master · jimsforks/mischelper
Best practices for API packages
Where to place DB connections within plumber APIs? - R Admins / RStudio Connect - RStudio Community
Isochrone - OpenStreetMap Wiki
Using Plumber to create APIs for R programs
Learn how to use the open-source tool Plumber to create RESTful APIs for R programs.
REST API with R - Ger Inberg
Learn how to create a REST API in R using the plumber package.
Plumber and the Slack API - RStudio :: Solutions
Functions Similar to VLOOKUP in Excel • lookup
Simple functions to lookup items in key-value pairs. See Mehta (2021) .
Structured Errors in Plumber APIs
If you’ve used the Plumber package to make R models
or other code accessible to others via an API, sooner or later you will need to
decide how to handle and report errors.
By default, Plumber will catch R-level errors (like calls to stop()) and
report them to users of your API as a JSON-encoded error message with HTTP
status code 500 – also known as Internal Server Error. This might look
something like the following from the command line:
$ curl -v localhost:8000/
> GET /status HTTP/1.1
> Host: localhost:8000
> User-Agent: curl/7.64.0
> Accept: */*
>
< HTTP/1.1 500 Internal Server Error
< Date: Sun, 24 Mar 2019 22:56:27 GMT
< Content-Type: application/json
< Date: Sun, 24 Mar 2019 10:56:27 PM GMT
< Connection: close
< Content-Length: 97
<
* Closing connection 0
{"error":["500 - Internal server error"],"message":["Error: Missing required 'id' parameter.\n"]}
There are two problems with this approach: first, it gives you almost zero
control over how errors are reported to real users, and second, it’s badly
behaved at the protocol level – HTTP status codes provide for much more
granular and semantically meaningful error reporting.
In my view, the key to overcoming these problems is treating errors as more than
simply a message and adding additional context when they are emitted. This is
sometimes called structured error handling, and although it has not been
used much historically in R, this may be changing.
As you’ll see, we can take advantage of R’s powerful condition system to
implement rich error handling and reporting for Plumber APIs with relative ease.
html - Set the table column width constant regardless of the amount of text in its cells? - Stack Overflow
In my table I set the width of the first cell in a column to be 100px. However, when the text in one of the cell in this column is too long, the width of the column becomes more than 100px. How cou...
css - Rshiny Table collapse text overflow - Stack Overflow
How do we pass CSS arguments text-overflow: ellipsis or other arguments to renderDataTable in R shiny ? I have uneven text description in columns, by Autowidth the rows and columns are expanded bas...
Experiment, Fail, Learn, Repeat
How To Reinstall Built-in App removed with Remove-AppxProvisionedPackage ?
Shiny app deployment and integration into a custom website gallery
feddelegrand7/shinysnip: 👽 👽 👽 VSCode Extension for Generating Shiny Code Snippets.
feddelegrand7/rintimg: View an image in full screen by clicking on it
View an image in full screen by clicking on it. Contribute to feddelegrand7/rintimg development by creating an account on GitHub.
feddelegrand7/mailtoR: 🐹🐹🐹 Creates a Friendly User Interface for Emails Sending in Shiny and RMarkdown
🐹🐹🐹 Creates a Friendly User Interface for Emails Sending in Shiny and RMarkdown - feddelegrand7/mailtoR
feddelegrand7/scrollrevealR: Animate shiny elements when they scroll into view 🍁 🍁 🍁
Animate shiny elements when they scroll into view 🍁 🍁 🍁 - feddelegrand7/scrollrevealR
feddelegrand7/pivta: Create an Interactive Pivot Table with Data Analysis Tools
Create an Interactive Pivot Table with Data Analysis Tools - feddelegrand7/pivta
feddelegrand7/algo: Implement the Algolia Places Address Search Auto Completion Menu on Shiny Text Inputs
Implement the Algolia Places Address Search Auto Completion Menu on Shiny Text Inputs - feddelegrand7/algo
ThinkR-open/shinysnippets: A series of shiny related RStudio Snippets
A series of shiny related RStudio Snippets . Contribute to ThinkR-open/shinysnippets development by creating an account on GitHub.
Basic Data Exploration App
nanxstats/awesome-shiny-extensions: 🐝 Awesome R packages that offer extended UI or server components for the R web framework Shiny
🐝 Awesome R packages that offer extended UI or server components for the R web framework Shiny - nanxstats/awesome-shiny-extensions
5 Signs It's Time To Refactor Your Shiny Dashboard - Appsilon | End to End Data Science Solutions
RinteRface
HTML Static Template
gyang274/ygdashboard: A modified shinydashboard to incorporate more functionality from adminLTE
A modified shinydashboard to incorporate more functionality from adminLTE - gyang274/ygdashboard
DivadNojnarg/outstanding-shiny-ui-code: Standalone code for the "Outstanding Shiny UI" Book
Standalone code for the "Outstanding Shiny UI" Book - DivadNojnarg/outstanding-shiny-ui-code
dreamRs/shinyapps: Some Shiny applications
Some Shiny applications. Contribute to dreamRs/shinyapps development by creating an account on GitHub.