This repository has been archived by the owner on Dec 1, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathCHANGES.txt
93 lines (79 loc) · 5.25 KB
/
CHANGES.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
v0.6
------
This is a major release of `psychopy_ext`, containing a number of new features and also API changes that break the behavior of earlier releases.
* NEW: Many models added to ``models``, including a convenient interface to Caffe for deep neural models.
* CHANGED: New pandas versions added support for categorical data and broke ordering. This is now fixed. **However**, this changes the way ``stats.aggregate`` and ``stats.accuracy`` work; **you will need to change your code** to have it work with this new version or, better yet, not use these functions and rely on ``pandas.groupby``. Reorder has been deprecated. Make your data categorical in pandas and use cat.reorder_categories().
* NEW: Many bootstrap methods added to ``stats``.
* DEPRECATED: ``plot`` is now deprecated in favor os ``seaborn`` that does everything ``plot`` was always aiming to do, but much better. There are now only a couple of functions left in ``plot`` that extend the functionality of ``seaborn``.
* NEW: ``mturkexp``: Experimental and very simple wrapper to ``mturkutils`` (moved to ``mturkutils`` as of 0.6.0.2).
* NEW: ``utils``: a collection of convenience functions
v0.5.5
--------
* NEW: Can now record frame timing. Events (in the trial structure creation) now have a keyword "name". If you provide, the timing of that event will be recorded.
* FIXED (hopefully): integration to git.
* FIXED: Minor bug fixes related to the installation, subplots, and MouseResp parameters.
v0.5.4
------
* IMPROVED: Rewrote plot and stats modules to better integrate with pandas' desire to reduce DataFrames into Series whenever possible. So the resulting code should be more robust now. Moreover, the information about splitting of data into rows and cols is now kept separately in the ``_splits`` variable so that the names of rows and columns are not messed up anymore. Downside: you have to manually assign this attribute to the DataFrame after most operations with the DataFrame.
* IMPROVED: The default fixation spot is now without the grey cross that was occluding background before.
v0.5.3
------
* NEW: Generate synthetic fMRI data using ``fmri.GenHRF()``.
* IMPROVED: ploting ROIs, chunks, datasets
* CHANGED: ``exp.create_win`` takes kwargs
v0.5.2
------
* NEW: A prototype of Analyzer for an interactive data analysis! (undocumented; you can try it with ``import psychopy_ext.analyzer; psychopy_ext.analyzer.run())
* NEW: MouseRespGroup for mouse response displays.
* NEW: Error bars and confidence intervals for repeated measures using Loftus & Masson (1994).
* NEW: GridSpec support in plot.
* FIXED: Installation requirements are more loose now. Pure Python packages are installed on the go with pip. Non-pure required Python packages stop installation and tell you what to install manually. Non-pure recommended Python packages allow you to install psychopy_ext but give a warning about what's missing. Also, tries to complain about missing dependencies only when you explicitly need them.
* CHANGED: Info parameter now has 'repository' parameter instead of 'register' and 'push'. You can choose to either 'commit and push' (default) or 'only commit'. This should be more transparent. Moreover, exp.Experiment.run_exp() has been changes such that the whole committing and pushing thing occurs in the exp.Experiment.after_exp().
* CHANGED: keyword 'unstack' in ``stats.aggregate()`` is now 'unstacked' because of the new ``stats.unstack()`` function
* FIXED: In older PsychoPy versions, BaseVisualStim is _BaseVisualStim, so now accepting both.
* IMPROVED: last_keypress now always returns a list (that might be empty)
* IMPROVED: can call a custom method for analyzing fMRI data
* FIXED: Plotting and stats are more robust now.
* FIXED: compactibility with pandas 0.13+ (FrozenList issues and interactive plots causing no display)
v0.5.1.1
--------
* FIXED: mouse inherited from Exp to Task
* DEMOS: updated post_trial syntax
v0.5.1
------
* NEW: Experimental support for mouse inputs (with a demo)
* NEW: Experimental support for exporting displays to SVG (Circle, Line, Rect, ShapeStim, TextStim, ThickShapeStim)
* NEW: demo of the shortest fully functional experiment possible
* FIXED: ThickLineStim can now accept default units for lineWidth
* FIXED: reoder
* ADDED: testing for demos
* FIXED: exp seed creation. Should now reinitialize seeds for each task and for each block.
* FIXED: GUI auto fit to contents in no size passed
* ADDED: write time stamp of the stat and finish of the experiment
* ADDED: psychopy_ext version in log
* FIXED: registering was not implemented even though Experiment was already using it
* FIXED: trial number printed at the begining, not at the end of the trial
* FIXED: GroupStim now properly converts stimuli to list
v0.5, 2013-10-24
----------------
First stable version, all tests pass.
v0.5a1, 2013-07-15
------------------
Skipping to 0.5 due to a significant change in exp module (Experiment split into Experiment and Task).
v0.4a2, 2013-04
---------------
Alpha version, working more or less
v0.4dev1, 2013-03-06
------------------
Initial dev release as a package
v0.3, 2012
----------
Separation from other projects into a package
v0.2, 2011
----------
Thorough rewrite using classes
v0.1, 2010
------------
Initial implementation for the confsup experiment
(https://bitbucket.org/qbilius/confsup)
Used only functions