-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
- update the README - don't cache quarto docs for now
- Loading branch information
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,22 +1,21 @@ | ||
# unjournaldata | ||
Unjournal evaluations, meta-analysis, and meta-science: data analysis and presentation | ||
|
||
This is the repository for | ||
[Unjournal](https://www.unjournal.org) evaluations, meta-analysis, and meta-science. | ||
|
||
Some goals below | ||
Our current reports are available at <https://unjournal.github.io>. | ||
|
||
## Todo: Evaluation and prediction metrics | ||
# How it works | ||
This comment has been minimized.
Sorry, something went wrong. |
||
|
||
Some things to do: | ||
Data is currently imported manually from airtable. We hope to automate this soon. | ||
|
||
- DONE: Import evaluation rating/predictions data | ||
The github site is created as a [Quarto](https://quarto.org) book. There is also | ||
a [Shiny](https://shiny.posit.co) app at | ||
<https://unjournal.shinyapps.io/DataExplorer/>. | ||
|
||
- DONE for now: Clean and reconcile missing data, different metrics | ||
- [ ] Aggregations of ratings under stated uncertainty | ||
- [ ] Assess inter-rater reliability, etc. | ||
|
||
## Later: Track and benchmark against later outcomes | ||
|
||
## Possible: 'Claim extraction', link with predictions and replication work | ||
|
||
## House, support, link: Data and code from papers, evaluators calculations and investigations | ||
The site can be re-rendered by running `quarto render` from the command line, | ||
or `quarto::quarto_render()` from within R, and pushing changes to the `main` branch. | ||
|
||
The shiny app can be deployed by running | ||
`rsconnect::deployApp("shinyapp/DataExplorer")`, or from within RStudio by | ||
opening `shinyapp/DataExplorer/app.R` and clicking the 'publish' button. |
This file was deleted.
This file was deleted.
This file was deleted.
Large diffs are not rendered by default.
Large diffs are not rendered by default.
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
@layer htmltools { | ||
.html-fill-container { | ||
display: flex; | ||
flex-direction: column; | ||
/* Prevent the container from expanding vertically or horizontally beyond its | ||
parent's constraints. */ | ||
min-height: 0; | ||
min-width: 0; | ||
} | ||
.html-fill-container > .html-fill-item { | ||
/* Fill items can grow and shrink freely within | ||
available vertical space in fillable container */ | ||
flex: 1 1 auto; | ||
min-height: 0; | ||
min-width: 0; | ||
} | ||
.html-fill-container > :not(.html-fill-item) { | ||
/* Prevent shrinking or growing of non-fill items */ | ||
flex: 0 0 auto; | ||
} | ||
} |
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -18,20 +18,21 @@ book: | |
date: today | ||
|
||
execute: | ||
freeze: auto # re-render only when source changes | ||
freeze: false # re-render only when source changes | ||
warning: false | ||
message: false | ||
error: true | ||
echo: false | ||
|
||
comments: | ||
hypothesis: true | ||
#bibliography: references.bib | ||
|
||
format: | ||
html: | ||
code-fold: true | ||
code-link: true #note: this isn't working for me | ||
code-tools: true | ||
code-fold: false | ||
This comment has been minimized.
Sorry, something went wrong.
daaronr
Collaborator
|
||
code-link: false #note: this isn't working for me | ||
code-tools: false | ||
theme: cosmo | ||
citations-hover: true | ||
footnotes-hover: true | ||
|
@hughjonesd Cool, thanks for rephrasing this