Sweet Summer Child Score (SSCS) is a scoring mechanism for latent risk. It will help you quickly and efficiently scan for the possibility of harm to people and communities by a socio-technical system. This package is an R version of Python code found at: https://github.com/summerscope/summerchildpy
How it looks like when you run it.

Install and load the R package
if(!require(devtools,quietly = TRUE))
install.packages("devtools")
devtools::install_github("summerscope/summerchildr")
library(summerchildr)
Run the app
shiny::runApp(runSummerChildApp())
Run the following code in a terminal window - Requires R (>= 2.10) to be installed
R -e "devtools::install_github('summerscope/summer-child-r', force = TRUE); library(summerchildr); runSummerChildApp()"
Then simply copy and paste the http link that appears in the terminal
into a browser.
Installation through GitHub repo.
Clone the repository
git clone git@github.com:summerscope/summerchildr.git
cd summerchildr
R -e "renv::restore(); library(summerchildr); shiny::runApp(runSummerChildApp())"
The same commands in the chunk above can be run in R Studio to restore the environment before running the app.
If 1 doesn't work (ouch!) and you're getting HTTP error 401 OR Bad credentials, please try following steps.
Open an R session on terminal, simply by typing R and Unset GitHUB's PAT environment variable (for context https://github.com/r-lib/devtools/issues/1566)
Sys.unsetenv("GITHUB_PAT")
# you can confirm the above command has worked if the following command returns an empty string (i.e. `""`)
Sys.getenv("GITHUB_PAT")
devtools::install_github('summerscope/summer-child-r', force = TRUE); library(summerchildr); runSummerChildApp()"
You're all set to dive deeper 🙌🏼
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.