Home

Scientia nihil aliud est quam veritatis imago. / Science is but an image of the truth.”
~ Sir Francis Bacon (*1551; †1662)
“Learn how to see. Realize that everything connects to everything else.”
~ Leonardo da Vinci (*1452; †1519) “Quod est inferius, est sicut quod est superius. / As above, so below.” ~ Hermes Trismegistus (Tabula Smaragdina); “How can the multiplicity of life delude the one who sees its unity?” ~ Katha Upaniṣhad

cv-website-header(5)
Slide 1
Principles of web-based research
Principles of web-based research
Belief bias in syllogistic reasoning
Belief bias in syllogistic reasoning
Bayesian parameter estimation via Markov chain Monte Carlo simulations (Code repository)
Bayesian parameter estimation via Markov chain Monte Carlo simulations (Code repository)
NHST: Online Survey
NHST: Online Survey
Citable Software (*.cff)
Citable Software (*.cff)
The vertical representation of affect: Mood effects in visual search
The vertical representation of affect: Mood effects in visual search
Psychology Meta Search Tool (v1.0.2)
Psychology Meta Search Tool (v1.0.2)
Cognitive biases codex
Ubiquitous statistical fallacies: Protected versus unprotected pairwise comparisons
Ubiquitous statistical fallacies: Protected versus unprotected pairwise comparisons
The demise of academic values: A quasi-Humboldtian perspective
The demise of academic values: A quasi-Humboldtian perspective
previous arrow
next arrow
Principles of web-based research
Principles of web-based research
Belief bias in syllogistic reasoning
Belief bias in syllogistic reasoning
Bayesian parameter estimation via Markov chain Monte Carlo simulations (Code repository)
Bayesian parameter estimation via Markov chain Monte Carlo simulations (Code repository)
NHST: Online Survey
NHST: Online Survey
Citable Software (*.cff)
Citable Software (*.cff)
The vertical representation of affect: Mood effects in visual search
The vertical representation of affect: Mood effects in visual search
Psychology Meta Search Tool (v1.0.2)
Psychology Meta Search Tool (v1.0.2)
Cognitive biases codex
Cognitive biases codex
Ubiquitous statistical fallacies: Protected versus unprotected pairwise comparisons
Ubiquitous statistical fallacies: Protected versus unprotected pairwise comparisons
The demise of academic values: A quasi-Humboldtian perspective
The demise of academic values: A quasi-Humboldtian perspective
Belief bias in syllogistic reasoning

See also my project http://belief-bias.de
Every man prefers belief to the exercise of judgment.
~ Seneca
We speak not strictly and philosophically when we talk of the combat of passion and of reason. Reason is, and ought only to be the slave of the passions, and can never pretend to any other office than to serve and obey them.~ Hume

A well studied phenomenon in the psychology of reasoning is termed belief bias (Evans et al., 1983; Markovits & Nantel, 1989). Belief bias labels the long standing effect that reasoners are more likely to accept a believable conclusion to a syllogism than an unbelievable one, independent of the actual logical validity of the conclusion (i.e. Wilkins, 1928; Henle & Michael, 1956; Kaufman & Goldstein, 1967). For instance, examination of the (...)

Belief bias in syllogistic reasoning
Bayesian parameter estimation via Markov chain Monte Carlo simulations (Code repository)

http://r-code.ml

data(ToothGrowth)

## Example plot from ?ToothGrowth

coplot(len ~ dose | supp, data = ToothGrowth, panel = panel.smooth,
xlab = "ToothGrowth data: length vs dose, given type of supplement")
## Treat dose as a factor
ToothGrowth$dose = factor(ToothGrowth$dose)
levels(ToothGrowth$dose) = c("Low", "Medium", "High")

summary(aov(len ~ supp*dose, data=ToothGrowth))

#install.packages("xtable")
library(xtable)
xtable(x, caption = NULL, label = NULL, align = NULL, digits = NULL,
display = NULL, auto = FALSE, ...)

print(xtable(d), type="html")
print(xtable(d), type="latex") # anova table to latex
#https://cran.r-project.org/web/packages/xtable/index.html
#https://rmarkdown.rstudio.com/

data(ToothGrowth)

# model log2 (...)

Bayesian parameter estimation via Markov chain Monte Carlo simulations (Code repository)
NHST: Online Survey

 

Suppose you have a treatment which you suspect may alter performance on a certain task. You compare the means of your control and experimental group (say 20 subjects in each sample). Further, suppose you use a simple independent means t test and your result is (t = 2.7, d.f. 18, p = 0.01).
Please mark each of the statements below as "True" or "False".
Adapted from Oakes, M. (1986). Statistical inference: A commentary for the social and behavioral sciences. New York: Wiley.

(...)

NHST: Online Survey
Citable Software (*.cff)

In order to make software easily citable, a "citation file format" *.CITATION.cff should be included in the root of the repository.
cff-version: 1.0.3
message: If you use this software, please cite it as below.
authors:
- family-names: Germann
given-names: Christopher, Benjamin
orcid: https://orcid.org/0000-0002-1573-4651
title: Psychology Meta Search Tool
version: 1.0.2
URL: https://christopher-germann.de/psychology-meta-search-tool-v1-02/
date-released: 2012-07-16

In R the citation of a given package can be extracted as follows (using BibTeX for LaTex).

citation('ggplot2')

#To cite ggplot2 in publications, please use:
#H. Wickham. ggplot2: elegant graphics for data analysis. Springer New York, 2009.
#A BibTeX entry for LaTeX users is

@Book{,
author (...)

Citable Software (*.cff)
Psychology Meta Search Tool (v1.0.2)

Below you can find a custom-made "meta-search-tool" I programmed (coded in ActionScript2) which facilitates to effectively search the web for psychology and neuroscience related information.
You can freely download the program as a zipped executable:

Citation File Format (*.cff)
cff-version: 1.0.3
message: If you use this software, please cite it as below.
authors:
- family-names: Germann
given-names: Christopher, Benjamin
orcid: https://orcid.org/0000-0002-1573-4651
title: Psychology Meta Search Tool
version: 1.0.2
URL: https://christopher-germann.de/psychology-meta-search-tool-v1-02/
date-released: 2012-07-16 (...)

Psychology Meta Search Tool (v1.0.2)
Cognitive biases codex

# Install and load required packages
install.packages("ape")
library(ape)

# Define the cognitive biases
biases <- c("Fundamental_attribution_error",
"Implicit_bias",
"Priming_bias",
"Confirmation_bias",
"Affinity_bias",
"Self-serving_bias",
"Belief_bias",
"Framing",
"Hindsight_bias",
"Embodied_cognition",
"Anchoring_bias",
"Status_quo_bias",
"Overconfidence_effect",
"Physical_attractiveness_stereotype",
"Availability_heuristic",
"Authority_bias",
"Bystander_effect",
"Choice_supportive_bias",
"Clustering_illusion",
"Conservatism_bias",
(...)

Ubiquitous statistical fallacies: Protected versus unprotected pairwise comparisons

/*!
* Base CSS for pdf2htmlEX
* Copyright 2012,2013 Lu Wang
* https://github.com/coolwanglu/pdf2htmlEX/blob/master/share/LICENSE
*/#sidebar{position:absolute;top:0;left:0;bottom:0;width:250px;padding:0;margin:0;overflow:auto}#page-container{position:absolute;top:0;left:0;margin:0;padding:0;border:0}@media screen{#sidebar.opened+#page-container{left:250px}#page-container{bottom:0;right:0;overflow:auto}.loading-indicator{display:none}.loading-indicator.active{display:block;position:absolute;width:64px;height:64px;top:50%;left:50%;margin-top:-32px;margin-left:-32px}.loading-indicator img{position:absolute;top:0;left:0;bottom:0;right:0}}@media print{@page{margin:0}html{margin:0}body{margin:0;-webkit-print-color-adjust:exact}#sidebar{display:none}#page-container{width:auto;height:auto;overflow:visible;background-color:transparent}.d{display:none}}.pf{position:relative;background-color:white;overflow:hidden;margin:0;border:0}.pc{position:absolute;border:0;padding:0;margin:0;top:0;left:0;width:100%;height:100%;overflow:hidden;display:block;transform-origin:0 (...)

Ubiquitous statistical fallacies: Protected versus unprotected pairwise comparisons
The demise of academic values: A quasi-Humboldtian perspective
The demise of academic values: A quasi-Humboldtian perspective
previous arrow
next arrow
Shadow