(require 'url-http) | |
(defun insert-bibtex-from-doi () | |
(interactive) | |
(let* ((doi (string-trim (gui-get-primary-selection))) | |
(url (if (string-prefix-p "https://doi.org/" doi) | |
doi | |
(concat "https://doi.org/" doi))) | |
(url-request-method "GET") | |
(url-mime-accept-string "application/x-bibtex")) |
set.seed(1) | |
mu <- 0 | |
sigma <- 1 | |
N.trials <- 20 | |
N.sims <- 50 | |
rnorm(N.trials*N.sims, mu, sigma) |> | |
matrix(nrow=N.sims) -> Y | |
d <- apply(Y, 1, \(y) c(mean(y), sd(y)/sqrt(length(y)))) |
library(ggplot2) | |
library(dplyr) | |
options(scipen=999) | |
N <- 100000 # Number of simulations | |
# Data: |
import nltk | |
from statistics import mean, stdev, median, mode | |
nltk.download('brown') | |
tokens = nltk.corpus.brown.tagged_words(tagset="universal") | |
types = list(dict.fromkeys(tokens)) | |
# Lengths of tokens / types but ignoring punctuation, numbers, and X | |
# which is mostly foreign words (German, French, Latin) but strangely | |
# also a small number of common English words: |
<?xml version="1.0"?> | |
<opml version="1.0"> | |
<head> | |
<title>(Psycho)linguistics journals</title> | |
</head> | |
<body> | |
<outline title="Annual Rev Ling" xmlUrl="https://www.annualreviews.org/action/showFeed?ui=45mu4&mi=3fndc3&ai=6690&jc=linguistics&type=etoc&feed=atom"/> | |
<outline title="Brain & Language" xmlUrl="https://rss.sciencedirect.com/publication/science/0093934X"/> | |
<outline title="Cognition" xmlUrl="http://rss.sciencedirect.com/publication/science/00100277"/> | |
<outline title="Cognitive Science" xmlUrl="https://onlinelibrary.wiley.com/feed/15516709/most-recent"/> |
This little project now lives in a GitHub repository: https://github.com/tmalsburg/binomialCRIs
Compile this template by executing the following in a command shell:
pdflatex test && biber test && pdflatex test && pdflatex test
This template uses biblatex and biber instead of good old BibTeX. The bibliography files (*.bib
) can have the same format (although biblatex allows using some interesting extensions). However, the biblatex+biber combo is much more powerful than good-old BibTeX (e.g. support for multiple bibliographies in one document) and comes with great documentation.
Suggestions for improvements welcome.
(defun tmalsburg-rmarkdown-render () | |
"Compiles the current RMarkdown file to PDF and shows output of | |
the compiler process in a separate window." | |
(interactive) | |
(let* ((buf (get-buffer-create "*rmarkdown-render*")) | |
(temp-window (or (get-buffer-window buf) | |
(split-window-below -10))) | |
(command "Rscript -e 'library(rmarkdown); render(\"%s\", output_format=\"%s\")'") | |
(command (format command (buffer-file-name) "pdf_document"))) | |
(set-window-buffer temp-window buf) |
tl;dr: When calculating the average time it takes to complete a HIT, it may be more appropriate to use the geometric mean or the median instead of the arithmetic mean. You may otherwise spend considerably more money than necessary (in our case 50% more).