Skip to content

Commit 37a9692

Browse files
committed
First commit
1 parent 6da8f98 commit 37a9692

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

51 files changed

+912017
-0
lines changed

#tips_and_tricks_for_phd.tex#

Lines changed: 529 additions & 0 deletions
Large diffs are not rendered by default.

AOI_activities.md

Lines changed: 54 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,54 @@
1+
% Activities for the AOI
2+
% Christophe Pallier
3+
% Feb. 2014
4+
5+
6+
Preparing experiments
7+
---------------------
8+
9+
For an experiment, your research assistant has created lists of stimuli for each participant (files list_XXXX.csv). He was asked to avoid any repetition of stimuli within a list. Detect if the files contain any repetition (and print them).
10+
11+
You have been given a Python script that displays sentences words by word [rsvp.py](rsvp.py). Install the expyriment module for python and run the script. Can you do something so that sentences are presented as a whole rather than word by word?
12+
13+
For a fMRI "language localizer", participants will read a series of sentences (from the file [sentences.txt](sentences.txt)). To create a low-level baseline, you must create matched "pseudosentences" where each word is replaced by a pseudoword of the same length, containing the same letters, but in a random order.
14+
15+
Learn about [regular expressions](http://www.regular-expressions.info/).
16+
To study the orthographic structure of French, you have been asked to find all sequences of vowels and all sequences of consonants. You can use the list of French word available [here]http://www.pallier.org/ressources/dicofr/dicofr.html).
17+
18+
Gabor patterns are widely used in vision research.
19+
![Gabor array](GaborArray.jpg)
20+
Write a program that generates a series of Gabor patterns of various orientation and frequencies (to select relevant values, see Foley et al. (2007) Detection of Gabor Patterns of Different Sizes, Shapes, Phases and Eccentricities, Vision Research.)
21+
22+
To probe basic auditory perception, one can present pure tones embedded in white noise. Create a one second segement of white noise, and add on top of it pure tones of 200ms of varying frequencies and amplitudes. Each stimuli must be saved in a different wav file. These stimuli could be used to determine thresholds of perception by frequencies.
23+
24+
25+
Data Analysis
26+
-------------
27+
28+
You have received data from an experiment (file Data-Experiment1.csv), in which subjects were tested under two conditions (A and B). There reaction times and error rates were measured. You must analyse these data (that is, decide whether it supports the idea that one condition is more difficult than the other).
29+
30+
31+
Exploring some ideas
32+
--------------------
33+
34+
Learn about [Zipf's law](en.wikipedia.org/wiki/Zipf's_law). Download
35+
the text of a long document (e.g., [Alice in
36+
Wonderland](http://www.pallier.org/cours/AIP2013/alice.txt) ). Create
37+
the graphics showing the frequency of occurrence of words as a
38+
function of their rank. Plot also the relationship between word length
39+
and frequency (relevance to Cognition: see Piantadosi, Tily, Gibson
40+
(2011) Word lengths are optimized for efficient communication)
41+
42+
Read about Benford's law, on
43+
[wikipedia](http://en.wikipedia.org/wiki/Benford%27s_law) and
44+
[here](http://mathworld.wolfram.com/BenfordsLaw.html). Find a large
45+
dataset of numbers on the web (e.g. population of cities) and check of
46+
Benford law applies. (For relevance to Cognition, see Dehaene, S. and
47+
Mehler, J. (1992) Cross-linguistic regularities in the frequency of
48+
number words. Cognition, 43, 1–29.)
49+
50+
51+
52+
53+
54+

0 commit comments

Comments
 (0)