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 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816
|
.. include:: links.inc
.. _whats_new:
What's new
==========
..
Note, we are now using links to highlight new functions and classes.
Please be sure to follow the examples below like :func:`mne.stats.f_mway_rm`, so the whats_new page will have a link to the function/class documentation.
.. currentmodule:: mne
.. _changes_0_13:
Version 0.13
------------
Changelog
~~~~~~~~~
- Add new class :class:`AcqParserFIF` to parse Elekta/Neuromag MEG acquisition info, allowing e.g. collecting epochs according to acquisition-defined averaging categories by `Jussi Nurminen`_
- Adds automatic determination of FIR filter parameters ``filter_length``, ``l_trans_bandwidth``, and ``h_trans_bandwidth`` and adds ``phase`` argument in e.g. in :meth:`mne.io.Raw.filter` by `Eric Larson`_
- Adds faster ``n_fft='auto'`` option to :meth:`mne.io.Raw.apply_hilbert` by `Eric Larson`_
- Adds new function :func:`mne.time_frequency.csd_array` to compute the cross-spectral density of multivariate signals stored in an array, by `Nick Foti`_
- Add order params 'selection' and 'position' for :func:`mne.viz.plot_raw` to allow plotting of specific brain regions by `Jaakko Leppakangas`_
- Added the ability to decimate :class:`mne.Evoked` objects with :func:`mne.Evoked.decimate` by `Eric Larson`_
- Add generic array-filtering function :func:`mne.filter.filter_data` by `Eric Larson`_
- :func:`mne.viz.plot_trans` now also shows head position indicators by `Christian Brodbeck`_
- Add label center of mass function :func:`mne.Label.center_of_mass` by `Eric Larson`_
- Added :func:`mne.viz.plot_ica_properties` that allows plotting of independent component properties similar to ``pop_prop`` in EEGLAB. Also :class:`mne.preprocessing.ICA` has :func:`mne.preprocessing.ICA.plot_properties` method now. Added by `Mikołaj Magnuski`_
- Add second-order sections (instead of ``(b, a)`` form) IIR filtering for reduced numerical error by `Eric Larson`_
- Add interactive colormap option to image plotting functions by `Jaakko Leppakangas`_
- Add support for the University of Maryland KIT system by `Christian Brodbeck`_
- Add support for \*.elp and \*.hsp files to the KIT2FIFF converter and :func:`mne.channels.read_dig_montage` by `Teon Brooks`_ and `Christian Brodbeck`_
- Add option to preview events in the KIT2FIFF GUI by `Christian Brodbeck`_
- Add approximation of size of :class:`io.Raw`, :class:`Epochs`, and :class:`Evoked` in :func:`repr` by `Eric Larson`_
- Add possibility to select a subset of sensors by lasso selector to :func:`mne.viz.plot_sensors` and :func:`mne.viz.plot_raw` when using order='selection' or order='position' by `Jaakko Leppakangas`_
- Add the option to plot brain surfaces and source spaces to :func:`viz.plot_bem` by `Christian Brodbeck`_
- Add the ``--filterchpi`` option to :ref:`mne browse_raw <gen_mne_browse_raw>`, by `Felix Raimundo`_
- Add the ``--no-decimate`` option to :ref:`mne make_scalp_surfaces <gen_mne_make_scalp_surfaces>` to skip the high-resolution surface decimation step, by `Eric Larson`_
- Add new class :class:`mne.decoding.EMS` to transform epochs with the event-matched spatial filters and add 'cv' parameter to :func:`mne.decoding.compute_ems`, by `Jean-Remi King`_
- Added :class:`mne.time_frequency.EpochsTFR` and average parameter in :func:`mne.time_frequency.tfr_morlet` and :func:`mne.time_frequency.tfr_multitaper` to compute time-frequency transforms on single trial epochs without averaging, by `Jean-Remi King`_ and `Alex Gramfort`_
- Added :class:`mne.decoding.TimeFrequency` to transform signals in scikit-learn pipelines, by `Jean-Remi King`_
- Added :class:`mne.decoding.UnsupervisedSpatialFilter` providing interface for scikit-learn decomposition algorithms to be used with MNE data, by `Jean-Remi King`_ and `Asish Panda`_
- Added support for multiclass decoding in :class:`mne.decoding.CSP`, by `Jean-Remi King`_ and `Alexandre Barachant`_
- Components obtained from :class:`mne.preprocessing.ICA` are now sorted by explained variance, by `Mikołaj Magnuski`_
- Adding an EEG reference channel using :func:`mne.io.add_reference_channels` will now use its digitized location from the FIFF file, if present, by `Chris Bailey`_
- Added interactivity to :func:`mne.preprocessing.ICA.plot_components` - passing an instance of :class:`io.Raw` or :class:`Epochs` in ``inst`` argument allows to open component properties by clicking on component topomaps, by `Mikołaj Magnuski`_
- Adds new function :func:`mne.viz.plot_compare_evokeds` to show multiple evoked time courses at a single location, or the mean over a ROI, or the GFP, automatically averaging and calculating a CI if multiple subjects are given, by `Jona Sassenhagen`_
- Added `transform_into` parameter into :class:`mne.decoding.CSP` to retrieve the average power of each source or the time course of each source, by `Jean-Remi King`_
- Added support for reading MaxShield (IAS) evoked data (e.g., from the acquisition machine) in :func:`mne.read_evokeds` by `Eric Larson`_
- Added support for functional near-infrared spectroscopy (fNIRS) channels by `Jaakko Leppakangas`_
BUG
~~~
- Fixed a bug where selecting epochs using hierarchical event IDs (HIDs) was *and*-like instead of *or*-like. When doing e.g. ``epochs[('Auditory', 'Left')]``, previously all trials that contain ``'Auditory'`` *and* ``'Left'`` (like ``'Auditory/Left'``) would be selected, but now any conditions matching ``'Auditory'`` *or* ``'Left'`` will be selected (like ``'Auditory/Left'``, ``'Auditory/Right'``, and ``'Visual/Left'``). This is now consistent with how epoch selection was done without HID tags, e.g. ``epochs[['a', 'b']]`` would select all epochs of type ``'a'`` and type ``'b'``. By `Eric Larson`_
- Fixed Infomax/Extended Infomax when the user provides an initial weights matrix by `Jair Montoya Martinez`_
- Fixed the default raw FIF writing buffer size to be 1 second instead of 10 seconds by `Eric Larson`_
- Fixed channel selection order when MEG channels do not come first in :func:`mne.preprocessing.maxwell_filter` by `Eric Larson`_
- Fixed color ranges to correspond to the colorbar when plotting several time instances with :func:`mne.viz.plot_evoked_topomap` by `Jaakko Leppakangas`_
- Added units to :func:`mne.io.read_raw_brainvision` for reading non-data channels and enable default behavior of inferring channel type by unit by `Jaakko Leppakangas`_ and `Pablo-Arias`_
- Fixed minor bugs with :func:`mne.Epochs.resample` and :func:`mne.Epochs.decimate` by `Eric Larson`_
- Fixed a bug where duplicate vertices were not strictly checked by :func:`mne.simulation.simulate_stc` by `Eric Larson`_
- Fixed a bug where some FIF files could not be read with :func:`mne.io.show_fiff` by `Christian Brodbeck`_ and `Eric Larson`_
- Fixed a bug where ``merge_grads=True`` causes :func:`mne.viz.plot_evoked_topo` to fail when plotting a list of evokeds by `Jaakko Leppakangas`_
- Fixed a bug when setting multiple bipolar references with :func:`mne.io.set_bipolar_reference` by `Marijn van Vliet`_.
- Fixed image scaling in :func:`mne.viz.plot_epochs_image` when plotting more than one channel by `Jaakko Leppakangas`_
- Fixed :class:`mne.preprocessing.Xdawn` to fit shuffled epochs by `Jean-Remi King`_
- Fixed a bug with channel order determination that could lead to an ``AssertionError`` when using :class:`mne.Covariance` matrices by `Eric Larson`_
- Fixed the check for CTF gradient compensation in :func:`mne.preprocessing.maxwell_filter` by `Eric Larson`_
- Fixed the import of EDF files with encoding characters in :func:`mne.io.read_raw_edf` by `Guillaume Dumas`_
- Fixed :class:`mne.Epochs` to ensure that detrend parameter is not a boolean by `Jean-Remi King`_
- Fixed bug with :func:`mne.realtime.FieldTripClient.get_data_as_epoch` when ``picks=None`` which crashed the function by `Mainak Jas`_
- Fixed reading of units in ``.elc`` montage files (from ``UnitsPosition`` field) so that :class:`mne.channels.Montage` objects are now returned with the ``pos`` attribute correctly in meters, by `Chris Mullins`_
- Fixed reading of BrainVision files by `Phillip Alday`_:
- Greater support for BVA files, especially older ones: alternate text coding schemes with fallback to Latin-1 as well as units in column headers
- Use online software filter information when present
- Fix comparisons of filter settings for determining "strictest"/"weakest" filter
- Weakest filter is now used for heterogeneous channel filter settings, leading to more consistent behavior with filtering methods applied to a subset of channels (e.g. ``Raw.filter`` with ``picks != None``).
- Fixed plotting and timing of :class:`Annotations` and restricted addition of annotations outside data range to prevent problems with cropping and concatenating data by `Jaakko Leppakangas`_
- Fixed ICA plotting functions to refer to IC index instead of component number by `Andreas Hojlund`_ and `Jaakko Leppakangas`_
- Fixed bug with ``picks`` when interpolating MEG channels by `Mainak Jas`_.
- Fixed bug in padding of Stockwell transform for signal of length a power of 2 by `Johannes Niediek`_
API
~~~
- The ``add_eeg_ref`` argument in core functions like :func:`mne.io.read_raw_fif` and :class:`mne.Epochs` has been deprecated in favor of using :func:`mne.set_eeg_reference` and equivalent instance methods like :meth:`raw.set_eeg_reference() <mne.io.Raw.set_eeg_reference>`. In functions like :func:`mne.io.read_raw_fif` where the default in 0.13 and older versions is ``add_eeg_ref=True``, the default will change to ``add_eeg_ref=False`` in 0.14, and the argument will be removed in 0.15.
- Multiple aspects of FIR filtering in MNE-Python has been refactored:
1. New recommended defaults for ``l_trans_bandwidth='auto'``, ``h_trans_bandwidth='auto'``, and ``filter_length='auto'``. This should generally reduce filter artifacts at the expense of slight decrease in effective filter stop-band attenuation. For details see :ref:`tut_filtering_in_python`. The default values of ``l_trans_bandwidth=h_trans_bandwidth=0.5`` and ``filter_length='10s'`` will change to ``'auto'`` in 0.14.
2. The ``filter_length=None`` option (i.e. use ``len(x)``) has been deprecated.
3. An improved ``phase='zero'`` zero-phase FIR filtering has been added. Instead of running the designed filter forward and backward, the filter is applied once and we compensate for the linear phase of the filter. The previous ``phase='zero-double'`` default will change to ``phase='zero'`` in 0.14.
4. A warning is provided when the filter is longer than the signal of interest, as this is unlikely to produce desired results.
5. Previously, if the filter was as long or longer than the signal of interest, direct FFT-based computations were used. Now a single code path (overlap-add filtering) is used for all FIR filters. This could cause minor changes in how short signals are filtered.
- Support for Python 2.6 has been dropped, and the minimum supported dependencies are NumPy_ 1.8, SciPy_ 0.12, and Matplotlib_ 1.3 by `Eric Larson`_
- When CTF gradient compensation is applied to raw data, it is no longer reverted on save of :meth:`mne.io.Raw.save` by `Eric Larson`_
- Adds :func:`mne.time_frequency.csd_epochs` to replace :func:`mne.time_frequency.csd_compute_epochs` for naming consistency. :func:`mne.time_frequency.csd_compute_epochs` is now deprecated and will be removed in mne 0.14, by `Nick Foti`_
- Weighted addition and subtraction of :class:`Evoked` as ``ev1 + ev2`` and ``ev1 - ev2`` have been deprecated, use explicit :func:`mne.combine_evoked(..., weights='nave') <mne.combine_evoked>` instead by `Eric Larson`_
- Deprecated support for passing a lits of filenames to :class:`mne.io.Raw` constructor, use :func:`mne.io.read_raw_fif` and :func:`mne.concatenate_raws` instead by `Eric Larson`_
- Added options for setting data and date formats manually in :func:`mne.io.read_raw_cnt` by `Jaakko Leppakangas`_
- Now channels with units of 'C', 'µS', 'uS', 'ARU' and 'S' will be turned to misc by default in :func:`mne.io.read_raw_brainvision` by `Jaakko Leppakangas`_
- Add :func:`mne.io.anonymize_info` function to anonymize measurements and add methods to :class:`mne.io.Raw`, :class:`mne.Epochs` and :class:`mne.Evoked`, by `Jean-Remi King`_
- Now it is possible to plot only a subselection of channels in :func:`mne.viz.plot_raw` by using an array for order parameter by `Jaakko Leppakangas`_
- EOG channels can now be incuded when calling :func:`mne.preprocessing.ICA.fit` and a proper error is raised when trying to include unsupported channels by `Alexander Rudiuk`_
- :func:`mne.concatenate_epochs` and :func:`mne.compute_covariance` now check to see if all :class:`Epochs` instances have the same MEG-to-Head transformation, and errors by default if they do not by `Eric Larson`_
- Added option to pass a list of axes to :func:`mne.viz.epochs.plot_epochs_image` by `Mikołaj Magnuski`_
- Constructing IIR filters in :func:`mne.filter.construct_iir_filter` defaults to ``output='ba'`` in 0.13 but this will be changed to ``output='sos'`` by `Eric Larson`_
- Add ``zorder`` parameter to :func:`mne.Evoked.plot` and derived functions to sort allow sorting channels by e.g. standard deviation, by `Jona Sassenhagen`_
- The ``baseline`` parameter of :func:`mne.Epochs.apply_baseline` is set by default (None, 0), by `Felix Raimundo`_
- Adds :func:`mne.Evoked.apply_baseline` to be consistent with :func:`mne.Epochs.apply_baseline`, by `Felix Raimundo`_
- Deprecated the `baseline` parameter in :class:`mne.Evoked`, by `Felix Raimundo`_
- The API of :meth:`mne.SourceEstimate.plot` and :func:`mne.viz.plot_source_estimates` has been updated to reflect current PySurfer 0.6 API. The ``config_opts`` parameter is now deprecated and will be removed in mne 0.14, and the default representation for time will change from ``ms`` to ``s`` in mne 0.14. By `Christian Brodbeck`_
- The default dataset location has been changed from ``examples/`` in the MNE-Python root directory to ``~/mne_data`` in the user's home directory, by `Eric Larson`_
- A new option ``set_env`` has been added to :func:`mne.set_config` that defaults to ``False`` in 0.13 but will change to ``True`` in 0.14, by `Eric Larson`_
- The ``compensation`` parameter in :func:`mne.io.read_raw_fif` has been deprecated in favor of the method :meth:`mne.io.Raw.apply_gradient_compensation` by `Eric Larson`_
- :class:`mne.decoding.EpochsVectorizer` has been deprecated in favor of :class:`mne.decoding.Vectorizer` by `Asish Panda`_
- The `epochs_data` parameter has been deprecated in :class:`mne.decoding.CSP`, in favour of the ``X`` parameter to comply to scikit-learn API, by `Jean-Remi King`_
- Deprecated :func:`mne.time_frequency.cwt_morlet` and :func:`mne.time_frequency.single_trial_power` in favour of :func:`mne.time_frequency.tfr_morlet` with parameter average=False, by `Jean-Remi King`_ and `Alex Gramfort`_
- Add argument ``mask_type`` to func:`mne.read_events` and func:`mne.find_events` to support MNE-C style of trigger masking by `Teon Brooks`_ and `Eric Larson`_
- Extended Infomax is now the new default in :func:`mne.preprocessing.infomax` (``extended=True``), by `Clemens Brunner`_
- :func:`mne.io.read_raw_eeglab` and :func:`mne.io.read_epochs_eeglab` now take additional argument ``uint16_codec`` that allows to define the encoding of character arrays in set file. This helps in rare cases when reading a set file fails with ``TypeError: buffer is too small for requested array``. By `Mikołaj Magnuski`_
- Added :class:`mne.decoding.TemporalFilter` to filter data in scikit-learn pipelines, by `Asish Panda`_
- :func:`mne.preprocessing.create_ecg_epochs` now includes all the channels when ``picks=None`` by `Jaakko Leppakangas`_
Authors
~~~~~~~
The committer list for this release is the following (sorted by alphabetical order):
* Alexander Rudiuk
* Alexandre Barachant
* Alexandre Gramfort
* Asish Panda
* Camilo Lamus
* Chris Holdgraf
* Christian Brodbeck
* Christopher J. Bailey
* Christopher Mullins
* Clemens Brunner
* Denis A. Engemann
* Eric Larson
* Federico Raimondo
* Félix Raimundo
* Guillaume Dumas
* Jaakko Leppakangas
* Jair Montoya
* Jean-Remi King
* Johannes Niediek
* Jona Sassenhagen
* Jussi Nurminen
* Keith Doelling
* Mainak Jas
* Marijn van Vliet
* Michael Krause
* Mikolaj Magnuski
* Nick Foti
* Phillip Alday
* Simon-Shlomo Poil
* Teon Brooks
* Yaroslav Halchenko
.. _changes_0_12:
Version 0.12
------------
Changelog
~~~~~~~~~
- Add ``overlay_times`` parameter to :func:`mne.viz.plot_epochs_image` to be able to display for example reaction times on top of the images, by `Alex Gramfort`_
- Animation for evoked topomap in :func:`mne.Evoked.animate_topomap` by `Jaakko Leppakangas`_
- Make :func:`mne.channels.find_layout` more robust for KIT systems in the presence of bad or missing channels by `Jaakko Leppakangas`_
- Add raw movement compensation to :func:`mne.preprocessing.maxwell_filter` by `Eric Larson`_
- Add :class:`mne.Annotations` for for annotating segments of raw data by `Jaakko Leppakangas`_
- Add reading of .fif file montages by `Eric Larson`_
- Add system config utility :func:`mne.sys_info` by `Eric Larson`_
- Automatic cross-validation and scoring metrics in :func:`mne.decoding.GeneralizationAcrossTime`, by `Jean-Remi King`_
- :func:`mne.decoding.GeneralizationAcrossTime` accepts non-deterministic cross-validations, by `Jean-Remi King`_
- Add plotting RMS of gradiometer pairs in :func:`mne.viz.plot_evoked_topo` by `Jaakko Leppakangas`_
- Add regularization methods to :func:`mne.compute_raw_covariance` by `Eric Larson`_.
- Add command ``mne show_info`` to quickly show the measurement info from a .fif file from the terminal by `Alex Gramfort`_.
- Add creating forward operator for dipole object :func:`mne.make_forward_dipole` by `Chris Bailey`_
- Add reading and estimation of fixed-position dipole time courses (similar to Elekta ``xfit``) using :func:`mne.read_dipole` and :func:`mne.fit_dipole` by `Eric Larson`_.
- Accept :class:`mne.decoding.GeneralizationAcrossTime`'s ``scorer`` parameter to be a string that refers to a scikit-learn_ metric scorer by `Asish Panda`_.
- Add method :func:`mne.Epochs.plot_image` calling :func:`mne.viz.plot_epochs_image` for better usability by `Asish Panda`_.
- Add :func:`mne.io.read_raw_cnt` for reading Neuroscan CNT files by `Jaakko Leppakangas`_
- Add ``decim`` parameter to :func:`mne.time_frequency.cwt_morlet`, by `Jean-Remi King`_
- Add method :func:`mne.Epochs.plot_topo_image` by `Jaakko Leppakangas`_
- Add the ability to read events when importing raw EEGLAB files, by `Jona Sassenhagen`_.
- Add function :func:`mne.viz.plot_sensors` and methods :func:`mne.Epochs.plot_sensors`, :func:`mne.io.Raw.plot_sensors` and :func:`mne.Evoked.plot_sensors` for plotting sensor positions and :func:`mne.viz.plot_layout` and :func:`mne.channels.Layout.plot` for plotting layouts by `Jaakko Leppakangas`_
- Add epoch rejection based on annotated segments by `Jaakko Leppakangas`_
- Add option to use new-style MEG channel names in :func:`mne.read_selection` by `Eric Larson`_
- Add option for ``proj`` in :class:`mne.EpochsArray` by `Eric Larson`_
- Enable the usage of :func:`mne.viz.topomap.plot_topomap` with an :class:`mne.io.Info` instance for location information, by `Jona Sassenhagen`_.
- Add support for electrocorticography (ECoG) channel type by `Eric Larson`_
- Add option for ``first_samp`` in :func:`mne.make_fixed_length_events` by `Jon Houck`_
- Add ability to auto-scale channel types for :func:`mne.viz.plot_raw` and :func:`mne.viz.plot_epochs` and corresponding object plotting methods by `Chris Holdgraf`_
BUG
~~~
- :func:`compute_raw_psd`, :func:`compute_epochs_psd`, :func:`psd_multitaper`, and :func:`psd_welch` no longer remove rows/columns of the SSP matrix before applying SSP projectors when picks are provided by `Chris Holdgraf`_.
- :func:`mne.Epochs.plot_psd` no longer calls a Welch PSD, and instead uses a Multitaper method which is more appropriate for epochs. Flags for this function are passed to :func:`mne.time_frequency.psd_multitaper` by `Chris Holdgraf`_
- Time-cropping functions (e.g., :func:`mne.Epochs.crop`, :func:`mne.Evoked.crop`, :func:`mne.io.Raw.crop`, :func:`mne.SourceEstimate.crop`) made consistent with behavior of ``tmin`` and ``tmax`` of :class:`mne.Epochs`, where nearest sample is kept. For example, for MGH data acquired with ``sfreq=600.614990234``, constructing ``Epochs(..., tmin=-1, tmax=1)`` has bounds ``+/-1.00064103``, and now ``epochs.crop(-1, 1)`` will also have these bounds (previously they would have been ``+/-0.99897607``). Time cropping functions also no longer use relative tolerances when determining the boundaries. These changes have minor effects on functions that use cropping under the hood, such as :func:`mne.compute_covariance` and :func:`mne.connectivity.spectral_connectivity`. Changes by `Jaakko Leppakangas`_ and `Eric Larson`_
- Fix EEG spherical spline interpolation code to account for average reference by `Mainak Jas`_ (`#2758 <https://github.com/mne-tools/mne-python/pull/2758>`_)
- MEG projectors are removed after Maxwell filtering by `Eric Larson`_
- Fix :func:`mne.decoding.TimeDecoding` to allow specifying ``clf`` by `Jean-Remi King`_
- Fix bug with units (uV) in 'Brain Vision Data Exchange Header File Version 1.0' by `Federico Raimondo`_
- Fix bug where :func:`mne.preprocessing.maxwell_filter` ``destination`` parameter did not properly set device-to-head transform by `Eric Larson`_
- Fix bug in rank calculation of :func:`mne.utils.estimate_rank`, :func:`mne.io.Raw.estimate_rank`, and covariance functions where the tolerance was set to slightly too small a value, new 'auto' mode uses values from ``scipy.linalg.orth`` by `Eric Larson`_.
- Fix bug when specifying irregular ``train_times['slices']`` in :func:`mne.decoding.GeneralizationAcrossTime`, by `Jean-Remi King`_
- Fix colorbar range on norm data by `Jaakko Leppakangas`_
- Fix bug in :func:`mne.preprocessing.run_ica`, which used the ``ecg_criterion`` parameter for the EOG criterion instead of ``eog_criterion`` by `Christian Brodbeck`_
- Fix normals in CTF data reader by `Eric Larson`_
- Fix bug in :func:`mne.io.read_raw_ctf`, when omitting samples at the end by `Jaakko Leppakangas`_
- Fix ``info['lowpass']`` value for downsampled raw data by `Eric Larson`_
- Remove measurement date from :class:`mne.Info` in :func:`mne.io.Raw.anonymize` by `Eric Larson`_
- Fix bug that caused synthetic ecg channel creation even if channel was specified for ECG peak detection in :func:`mne.preprocessing.create_ecg_epochs` by `Jaakko Leppakangas`_
- Fix bug with vmin and vmax when None is passed in :func:`mne.viz.plot_topo_image_epochs` by `Jaakko Leppakangas`_
- Fix bug with :func:`mne.label_sign_flip` (and :func:`mne.extract_label_time_course`) by `Natalie Klein`_ and `Eric Larson`_
- Add copy parameter in :func:`mne.Epochs.apply_baseline` and :func:`mne.io.Raw.filter` methods by `Jona Sassenhagen`_ and `Alex Gramfort`_
- Fix bug in :func:`mne.merge_events` when using ``replace_events=False`` by `Alex Gramfort`_
- Fix bug in :class:`mne.Evoked` type setting in :func:`mne.stats.linear_regression_raw` by `Eric Larson`_
- Fix bug in :class: `mne.io.edf.RawEDF` highpass filter setting to take max highpass to match warning message by `Teon Brooks`_
- Fix bugs with coordinane frame adjustments in :func:`mne.viz.plot_trans` by `Eric Larson`_
- Fix bug in colormap selection in :func:`mne.Evoked.plot_projs_topomap` by `Jaakko Leppakangas`_
- Fix bug in source normal adjustment that occurred when 1) patch information is available (e.g., when distances have been calculated) and 2) points are excluded from the source space (by inner skull distance) by `Eric Larson`_
- Fix bug when merging info that has a field with list of dicts by `Jaakko Leppakangas`_
- The BTI/4D reader now considers user defined channel labels instead of the hard-ware names, however only for channels other than MEG. By `Denis Engemann`_ and `Alex Gramfort`_.
- Fix bug in :func:`mne.compute_raw_covariance` where rejection by non-data channels (e.g. EOG) was not done properly by `Eric Larson`_.
- Change default scoring method of :func:`mne.decoding.GeneralizationAcrossTime` and :func:`mne.decoding.TimeDecoding` to estimate the scores within the cross-validation as in scikit-learn_ as opposed to across all cross-validated ``y_pred``. The method can be changed with the ``score_mode`` parameter by `Jean-Remi King`_
- Fix bug in :func:`mne.io.Raw.save` where, in rare cases, automatically split files could end up writing an extra empty file that wouldn't be read properly by `Eric Larson`_
- Fix :class:`mne.realtime.StimServer` by removing superfluous argument ``ip`` used while initializing the object by `Mainak Jas`_.
API
~~~
- The default `picks=None` in :func:`mne.viz.plot_epochs_image` now only plots the first 5 channels, not all channels, by `Jona Sassenhagen`_
- The ``mesh_color`` parameter in :func:`mne.viz.plot_dipole_locations` has been removed (use `brain_color` instead), by `Marijn van Vliet`_
- Deprecated functions :func:`mne.time_frequency.compute_raw_psd` and :func:`mne.time_frequency.compute_epochs_psd`, replaced by :func:`mne.time_frequency.psd_welch` by `Chris Holdgraf`_
- Deprecated function :func:`mne.time_frequency.multitaper_psd` and replaced by :func:`mne.time_frequency.psd_multitaper` by `Chris Holdgraf`_
- The ``y_pred`` attribute in :func:`mne.decoding.GeneralizationAcrossTime` and :func:`mne.decoding.TimeDecoding` is now a numpy array, by `Jean-Remi King`_
- The :func:`mne.bem.fit_sphere_to_headshape` function now default to ``dig_kinds='auto'`` which will use extra digitization points, falling back to extra plus eeg digitization points if there not enough extra points are available.
- The :func:`mne.bem.fit_sphere_to_headshape` now has a ``units`` argument that should be set explicitly. This will default to ``units='mm'`` in 0.12 for backward compatibility but change to ``units='m'`` in 0.13.
- Added default parameters in Epochs class namely ``event_id=None``, ``tmin=-0.2`` and ``tmax=0.5``.
- To unify and extend the behavior of :func:`mne.comupute_raw_covariance` relative to :func:`mne.compute_covariance`, the default parameter ``tstep=0.2`` now discards any epochs at the end of the :class:`mne.io.Raw` instance that are not the full ``tstep`` duration. This will slightly change the computation of :func:`mne.compute_raw_covaraince`, but should only potentially have a big impact if the :class:`mne.io.Raw` instance is short relative to ``tstep`` and the last, too short (now discarded) epoch contained data inconsistent with the epochs that preceded it.
- The default ``picks=None`` in :func:`mne.io.Raw.filter` now picks eeg, meg, seeg, and ecog channels, by `Jean-Remi King`_ and `Eric Larson`_
- EOG, ECG and EMG channels are now plotted by default (if present in data) when using :func:`mne.viz.plot_evoked` by `Marijn van Vliet`_
- Replace pseudoinverse-based solver with much faster Cholesky solver in :func:`mne.stats.linear_regression_raw`, by `Jona Sassenhagen`_.
- CTF data reader now reads EEG locations from .pos file as HPI points by `Jaakko Leppakangas`_
- Subselecting channels can now emit a warning if many channels have been subselected from projection vectors. We recommend only computing projection vertors for and applying projectors to channels that will be used in the final analysis. However, after picking a subset of channels, projection vectors can be renormalized with :func:`mne.Info.normalize_proj` if necessary to avoid warnings about subselection. Changes by `Eric Larson`_ and `Alex Gramfort`_.
- Rename and deprecate :func:`mne.Epochs.drop_bad_epochs` to :func:`mne.Epochs.drop_bad`, and :func:`mne.Epochs.drop_epochs` to :func:`mne.Epochs.drop` by `Alex Gramfort`_.
- The C wrapper :func:`mne.do_forward_solution` has been deprecated in favor of the native Python version :func:`mne.make_forward_solution` by `Eric Larson`_
- The ``events`` parameter of :func:`mne.epochs.EpochsArray` is set by default to chronological time-samples and event values to 1, by `Jean-Remi King`_
Authors
~~~~~~~
The committer list for this release is the following (preceded by number of commits):
* 348 Eric Larson
* 347 Jaakko Leppakangas
* 157 Alexandre Gramfort
* 139 Jona Sassenhagen
* 67 Jean-Remi King
* 32 Chris Holdgraf
* 31 Denis A. Engemann
* 30 Mainak Jas
* 16 Christopher J. Bailey
* 13 Marijn van Vliet
* 10 Mark Wronkiewicz
* 9 Teon Brooks
* 9 kaichogami
* 8 Clément Moutard
* 5 Camilo Lamus
* 5 mmagnuski
* 4 Christian Brodbeck
* 4 Daniel McCloy
* 4 Yousra Bekhti
* 3 Fede Raimondo
* 1 Jussi Nurminen
* 1 MartinBaBer
* 1 Mikolaj Magnuski
* 1 Natalie Klein
* 1 Niklas Wilming
* 1 Richard Höchenberger
* 1 Sagun Pai
* 1 Sourav Singh
* 1 Tom Dupré la Tour
* 1 jona-sassenhagen@
* 1 kambysese
* 1 pbnsilva
* 1 sviter
* 1 zuxfoucault
.. _changes_0_11:
Version 0.11
------------
Changelog
~~~~~~~~~
- Maxwell filtering (SSS) implemented in :func:`mne.preprocessing.maxwell_filter` by `Mark Wronkiewicz`_ as part of Google Summer of Code, with help from `Samu Taulu`_, `Jukka Nenonen`_, and `Jussi Nurminen`_. Our implementation includes support for:
- Fine calibration
- Cross-talk correction
- Temporal SSS (tSSS)
- Head position translation
- Internal component regularization
- Compensation for movements using Maxwell filtering on epoched data in :func:`mne.epochs.average_movements` by `Eric Larson`_ and `Samu Taulu`_
- Add reader for Nicolet files in :func:`mne.io.read_raw_nicolet` by `Jaakko Leppakangas`_
- Add FIFF persistence for ICA labels by `Denis Engemann`_
- Display ICA labels in :func:`mne.viz.plot_ica_scores` and :func:`mne.viz.plot_ica_sources` (for evoked objects) by `Denis Engemann`_
- Plot spatially color coded lines in :func:`mne.Evoked.plot` by `Jona Sassenhagen`_ and `Jaakko Leppakangas`_
- Add reader for CTF data in :func:`mne.io.read_raw_ctf` by `Eric Larson`_
- Add support for Brainvision v2 in :func:`mne.io.read_raw_brainvision` by `Teon Brooks`_
- Improve speed of generalization across time :class:`mne.decoding.GeneralizationAcrossTime` decoding up to a factor of seven by `Jean-Remi King`_ and `Federico Raimondo`_ and `Denis Engemann`_.
- Add the explained variance for each principal component, ``explained_var``, key to the :class:`mne.io.Projection` by `Teon Brooks`_
- Added methods :func:`mne.Epochs.add_eeg_average_proj`, :func:`mne.io.Raw.add_eeg_average_proj`, and :func:`mne.Evoked.add_eeg_average_proj` to add an average EEG reference.
- Add reader for EEGLAB data in :func:`mne.io.read_raw_eeglab` and :func:`mne.read_epochs_eeglab` by `Mainak Jas`_
BUG
~~~
- Fix bug that prevented homogeneous bem surfaces to be displayed in HTML reports by `Denis Engemann`_
- Added safeguards against ``None`` and negative values in reject and flat parameters in :class:`mne.Epochs` by `Eric Larson`_
- Fix train and test time window-length in :class:`mne.decoding.GeneralizationAcrossTime` by `Jean-Remi King`_
- Added lower bound in :func:`mne.stats.linear_regression` on p-values ``p_val`` (and resulting ``mlog10_p_val``) using double floating point arithmetic limits by `Eric Larson`_
- Fix channel name pick in :func:`mne.Evoked.get_peak` method by `Alex Gramfort`_
- Fix drop percentages to take into account ``ignore`` option in :func:`mne.viz.plot_drop_log` and :func:`mne.Epochs.plot_drop_log` by `Eric Larson`_.
- :class:`mne.EpochsArray` no longer has an average EEG reference silently added (but not applied to the data) by default. Use :func:`mne.EpochsArray.add_eeg_ref` to properly add one.
- Fix :func:`mne.io.read_raw_ctf` to read ``n_samp_tot`` instead of ``n_samp`` by `Jaakko Leppakangas`_
API
~~~
- :func:`mne.io.read_raw_brainvision` now has ``event_id`` argument to assign non-standard trigger events to a trigger value by `Teon Brooks`_
- :func:`mne.read_epochs` now has ``add_eeg_ref=False`` by default, since average EEG reference can be added before writing or after reading using the method :func:`mne.Epochs.add_eeg_ref`.
- :class:`mne.EpochsArray` no longer has an average EEG reference silently added (but not applied to the data) by default. Use :func:`mne.EpochsArray.add_eeg_average_proj` to properly add one.
Authors
~~~~~~~
The committer list for this release is the following (preceded by number of commits):
* 171 Eric Larson
* 117 Jaakko Leppakangas
* 58 Jona Sassenhagen
* 52 Mainak Jas
* 46 Alexandre Gramfort
* 33 Denis A. Engemann
* 28 Teon Brooks
* 24 Clemens Brunner
* 23 Christian Brodbeck
* 15 Mark Wronkiewicz
* 10 Jean-Remi King
* 5 Marijn van Vliet
* 3 Fede Raimondo
* 2 Alexander Rudiuk
* 2 emilyps14
* 2 lennyvarghese
* 1 Marian Dovgialo
.. _changes_0_10:
Version 0.10
------------
Changelog
~~~~~~~~~
- Add support for generalized M-way repeated measures ANOVA for fully balanced designs with :func:`mne.stats.f_mway_rm` by `Denis Engemann`_
- Add epochs browser to interactively view and manipulate epochs with :func:`mne.viz.plot_epochs` by `Jaakko Leppakangas`_
- Speed up TF-MxNE inverse solver with block coordinate descent by `Daniel Strohmeier`_ and `Yousra Bekhti`_
- Speed up zero-phase overlap-add (default) filtering by a factor of up to 2 using linearity by `Ross Maddox`_ and `Eric Larson`_
- Add support for scaling and adjusting the number of channels/time per view by `Jaakko Leppakangas`_
- Add support to toggle the show/hide state of all sections with a single keypress ('t') in :class:`mne.Report` by `Mainak Jas`_
- Add support for BEM model creation :func:`mne.make_bem_model` by `Eric Larson`_
- Add support for BEM solution computation :func:`mne.make_bem_solution` by `Eric Larson`_
- Add ICA plotters for raw and epoch components by `Jaakko Leppakangas`_
- Add new object :class:`mne.decoding.TimeDecoding` for decoding sensors' evoked response across time by `Jean-Remi King`_
- Add command ``mne freeview_bem_surfaces`` to quickly check BEM surfaces with Freeview by `Alex Gramfort`_.
- Add support for splitting epochs into multiple files in :func:`mne.Epochs.save` by `Mainak Jas`_ and `Alex Gramfort`_
- Add support for jointly resampling a raw object and event matrix to avoid issues with resampling status channels by `Marijn van Vliet`_
- Add new method :class:`mne.preprocessing.Xdawn` for denoising and decoding of ERP/ERF by `Alexandre Barachant`_
- Add support for plotting patterns/filters in :class:`mne.decoding.csp.CSP` and :class:`mne.decoding.base.LinearModel` by `Romain Trachel`_
- Add new object :class:`mne.decoding.base.LinearModel` for decoding M/EEG data and interpreting coefficients of linear models with patterns attribute by `Romain Trachel`_ and `Alex Gramfort`_
- Add support to append new channels to an object from a list of other objects by `Chris Holdgraf`_
- Add interactive plotting of topomap from time-frequency representation by `Jaakko Leppakangas`_
- Add ``plot_topo`` method to ``Evoked`` object by `Jaakko Leppakangas`_
- Add fetcher :mod:`mne.datasets.brainstorm` for datasets used by Brainstorm in their tutorials by `Mainak Jas`_
- Add interactive plotting of single trials by right clicking on channel name in epochs browser by `Jaakko Leppakangas`_
- New logos and logo generation script by `Daniel McCloy`_
- Add ability to plot topomap with a "skirt" (channels outside of the head circle) by `Marijn van Vliet`_
- Add multiple options to ICA infomax and extended infomax algorithms (number of subgaussian components, computation of bias, iteration status printing), enabling equivalent computations to those performed by EEGLAB by `Jair Montoya Martinez`_
- Add :func:`mne.Epochs.apply_baseline` method to ``Epochs`` objects by `Teon Brooks`_
- Add ``preload`` argument to :func:`mne.read_epochs` to enable on-demand reads from disk by `Eric Larson`_
- Big rewrite of simulation module by `Yousra Bekhti`_, `Mark Wronkiewicz`_, `Eric Larson`_ and `Alex Gramfort`_. Allows to simulate raw with artefacts (ECG, EOG) and evoked data, exploiting the forward solution. See :func:`mne.simulation.simulate_raw`, :func:`mne.simulation.simulate_evoked` and :func:`mne.simulation.simulate_sparse_stc`
- Add :func:`mne.Epochs.load_data` method to :class:`mne.Epochs` by `Teon Brooks`_
- Add support for drawing topomaps by selecting an area in :func:`mne.Evoked.plot` by `Jaakko Leppakangas`_
- Add support for finding peaks in evoked data in :func:`mne.Evoked.plot_topomap` by `Jona Sassenhagen`_ and `Jaakko Leppakangas`_
- Add source space morphing in :func:`morph_source_spaces` and :func:`SourceEstimate.to_original_src` by `Eric Larson`_ and `Denis Engemann`_
- Adapt ``corrmap`` function (Viola et al. 2009) to semi-automatically detect similar ICs across data sets by `Jona Sassenhagen`_ and `Denis Engemann`_ and `Eric Larson`_
- New ``mne flash_bem`` command to compute BEM surfaces from Flash MRI images by `Lorenzo Desantis`_, `Alex Gramfort`_ and `Eric Larson`_. See :func:`mne.bem.utils.make_flash_bem`.
- New gfp parameter in :func:`mne.Evoked.plot` method to display Global Field Power (GFP) by `Eric Larson`_.
- Add :func:`mne.Report.add_slider_to_section` methods to :class:`mne.Report` by `Teon Brooks`_
BUG
~~~
- Fix ``mne.io.add_reference_channels`` not setting ``info[nchan]`` correctly by `Federico Raimondo`_
- Fix ``mne.stats.bonferroni_correction`` reject mask output to use corrected p-values by `Denis Engemann`_
- Fix FFT filter artifacts when using short windows in overlap-add by `Eric Larson`_
- Fix picking channels from forward operator could return a channel ordering different from ``info['chs']`` by `Chris Bailey`_
- Fix dropping of events after downsampling stim channels by `Marijn van Vliet`_
- Fix scaling in :func:``mne.viz.utils._setup_vmin_vmax`` by `Jaakko Leppakangas`_
- Fix order of component selection in :class:`mne.decoding.csp.CSP` by `Clemens Brunner`_
API
~~~
- Rename and deprecate ``mne.viz.plot_topo`` for ``mne.viz.plot_evoked_topo`` by `Jaakko Leppakangas`_
- Deprecated :class: `mne.decoding.transformer.ConcatenateChannels` and replaced by :class: `mne.decoding.transformer.EpochsVectorizer` by `Romain Trachel`_
- Deprecated `lws` and renamed `ledoit_wolf` for the ``reg`` argument in :class:`mne.decoding.csp.CSP` by `Romain Trachel`_
- Redesigned and rewrote :func:`mne.Epochs.plot` (no backwards compatibility) during the GSOC 2015 by `Jaakko Leppakangas`_, `Mainak Jas`_, `Federico Raimondo`_ and `Denis Engemann`_
- Deprecated and renamed :func:`mne.viz.plot_image_epochs` for :func:`mne.plot.plot_epochs_image` by `Teon Brooks`_
- ``picks`` argument has been added to :func:`mne.time_frequency.tfr_morlet`, :func:`mne.time_frequency.tfr_multitaper` by `Teon Brooks`_
- :func:`mne.io.Raw.preload_data` has been deprecated for :func:`mne.io.Raw.load_data` by `Teon Brooks`_
- ``RawBrainVision`` objects now always have event channel ``'STI 014'``, and recordings with no events will have this channel set to zero by `Eric Larson`_
Authors
~~~~~~~
The committer list for this release is the following (preceded by number of commits):
* 273 Eric Larson
* 270 Jaakko Leppakangas
* 194 Alexandre Gramfort
* 128 Denis A. Engemann
* 114 Jona Sassenhagen
* 107 Mark Wronkiewicz
* 97 Teon Brooks
* 81 Lorenzo De Santis
* 55 Yousra Bekhti
* 54 Jean-Remi King
* 48 Romain Trachel
* 45 Mainak Jas
* 40 Alexandre Barachant
* 32 Marijn van Vliet
* 26 Jair Montoya
* 22 Chris Holdgraf
* 16 Christopher J. Bailey
* 7 Christian Brodbeck
* 5 Natalie Klein
* 5 Fede Raimondo
* 5 Alan Leggitt
* 5 Roan LaPlante
* 5 Ross Maddox
* 4 Dan G. Wakeman
* 3 Daniel McCloy
* 3 Daniel Strohmeier
* 1 Jussi Nurminen
.. _changes_0_9:
Version 0.9
-----------
Changelog
~~~~~~~~~
- Add support for mayavi figures in ``add_section`` method in Report by `Mainak Jas`_
- Add extract volumes of interest from freesurfer segmentation and setup as volume source space by `Alan Leggitt`_
- Add support to combine source spaces of different types by `Alan Leggitt`_
- Add support for source estimate for mixed source spaces by `Alan Leggitt`_
- Add ``SourceSpaces.save_as_volume`` method by `Alan Leggitt`_
- Automatically compute proper box sizes when generating layouts on the fly by `Marijn van Vliet`_
- Average evoked topographies across time points by `Denis Engemann`_
- Add option to Report class to save images as vector graphics (SVG) by `Denis Engemann`_
- Add events count to ``mne.viz.plot_events`` by `Denis Engemann`_
- Add support for stereotactic EEG (sEEG) channel type by `Marmaduke Woodman`_
- Add support for montage files by `Denis Engemann`_, `Marijn van Vliet`_, `Jona Sassenhagen`_, `Alex Gramfort`_ and `Teon Brooks`_
- Add support for spatiotemporal permutation clustering on sensors by `Denis Engemann`_
- Add support for multitaper time-frequency analysis by `Hari Bharadwaj`_
- Add Stockwell (S) transform for time-frequency representations by `Denis Engemann`_ and `Alex Gramfort`_
- Add reading and writing support for time frequency data (AverageTFR objects) by `Denis Engemann`_
- Add reading and writing support for digitizer data, and function for adding dig points to info by `Teon Brooks`_
- Add ``plot_projs_topomap`` method to ``Raw``, ``Epochs`` and ``Evoked`` objects by `Teon Brooks`_
- Add EEG (based on spherical splines) and MEG (based on field interpolation) bad channel interpolation method to ``Raw``, ``Epochs`` and ``Evoked`` objects
by `Denis Engemann`_ and `Mainak Jas`_
- Add parameter to ``whiten_evoked``, ``compute_whitener`` and ``prepare_noise_cov`` to set the exact rank by `Martin Luessi`_ and `Denis Engemann`_
- Add fiff I/O for processing history and MaxFilter info by `Denis Engemann`_ and `Eric Larson`_
- Add automated regularization with support for multiple sensor types to ``compute_covariance`` by `Denis Engemann`_ and `Alex Gramfort`_
- Add ``Evoked.plot_white`` method to diagnose the quality of the estimated noise covariance and its impact on spatial whitening by `Denis Engemann`_ and `Alex Gramfort`_
- Add ``mne.evoked.grand_average`` function to compute grand average of Evoked data while interpolating bad EEG channels if necessary by `Mads Jensen`_ and `Alex Gramfort`_
- Improve EEG referencing support and add support for bipolar referencing by `Marijn van Vliet`_ and `Alex Gramfort`_
- Enable TFR calculation on Evoked objects by `Eric Larson`_
- Add support for combining Evoked datasets with arbitrary weights (e.g., for oddball paradigms) by `Eric Larson`_ and `Alex Gramfort`_
- Add support for concatenating a list of Epochs objects by `Denis Engemann`_
- Labels support subtraction (``label_1 - label_2``) by `Christian Brodbeck`_
- Add GeneralizationAcrossTime object with support for cross-condition generalization by `Jean-Remi King`_ and `Denis Engemann`_
- Add support for single dipole fitting by `Eric Larson`_
- Add support for spherical models in forward calculations by `Eric Larson`_
- Add support for SNR estimation by `Eric Larson`_
- Add support for Savitsky-Golay filtering of Evoked and Epochs by `Eric Larson`_
- Add support for adding an empty reference channel to data by `Teon Brooks`_
- Add reader function ``mne.io.read_raw_fif`` for Raw FIF files by `Teon Brooks`_
- Add example of creating MNE objects from arbitrary data and NEO files by `Jaakko Leppakangas`_
- Add ``plot_psd`` and ``plot_psd_topomap`` methods to epochs by `Yousra Bekhti`_, `Eric Larson`_ and `Denis Engemann`_
- ``evoked.pick_types``, ``epochs.pick_types``, and ``tfr.pick_types`` added by `Eric Larson`_
- ``rename_channels`` and ``set_channel_types`` added as methods to ``Raw``, ``Epochs`` and ``Evoked`` objects by `Teon Brooks`_
- Add RAP-MUSIC inverse method by `Yousra Bekhti`_ and `Alex Gramfort`_
- Add ``evoked.as_type`` to allow remapping data in MEG channels to virtual magnetometer or gradiometer channels by `Mainak Jas`_
- Add :func:`mne.Report.add_bem_to_section`, :func:`mne.Report.add_htmls_to_section` methods to :class:`mne.Report` by `Teon Brooks`_
- Add support for KIT epochs files with ``read_epochs_kit`` by `Teon Brooks`_
- Add whitening plots for evokeds to ``mne.Report`` by `Mainak Jas`_
- Add ``DigMontage`` class and reader to interface with digitization info by `Teon Brooks`_ and `Christian Brodbeck`_
- Add ``set_montage`` method to the ``Raw``, ``Epochs``, and ``Evoked`` objects by `Teon Brooks`_ and `Denis Engemann`_
- Add support for capturing sensor positions when clicking on an image by `Chris Holdgraf`_
- Add support for custom sensor positions when creating Layout objects by `Chris Holdgraf`_
BUG
~~~
- Fix energy conservation for STFT with tight frames by `Daniel Strohmeier`_
- Fix incorrect data matrix when tfr was plotted with parameters ``tmin``, ``tmax``, ``fmin`` and ``fmax`` by `Mainak Jas`_
- Fix channel names in topomaps by `Alex Gramfort`_
- Fix mapping of ``l_trans_bandwidth`` (to low frequency) and ``h_trans_bandwidth`` (to high frequency) in ``_BaseRaw.filter`` by `Denis Engemann`_
- Fix scaling source spaces when distances have to be recomputed by `Christian Brodbeck`_
- Fix repeated samples in client to FieldTrip buffer by `Mainak Jas`_ and `Federico Raimondo`_
- Fix highpass and lowpass units read from Brainvision vhdr files by `Alex Gramfort`_
- Add missing attributes for BrainVision and KIT systems needed for resample by `Teon Brooks`_
- Fix file extensions of SSP projection files written by mne commands (from _proj.fif to -prof.fif) by `Alex Gramfort`_
- Generating EEG layouts no longer requires digitization points by `Marijn van Vliet`_
- Add missing attributes to BTI, KIT, and BrainVision by `Eric Larson`_
- The API change to the edf, brainvision, and egi break backwards compatibility for when importing eeg data by `Teon Brooks`_
- Fix bug in ``mne.viz.plot_topo`` if ylim was passed for single sensor layouts by `Denis Engemann`_
- Average reference projections will no longer by automatically added after applying a custom EEG reference by `Marijn van Vliet`_
- Fix picks argument to filter in n dimensions (affects FilterEstimator), and highpass filter in FilterEstimator by `Mainak Jas`_
- Fix beamformer code LCMV/DICS for CTF data with reference channels by `Denis Engemann`_ and `Alex Gramfort`_
- Fix scalings for bad EEG channels in ``mne.viz.plot_topo`` by `Marijn van Vliet`_
- Fix EGI reading when no events are present by `Federico Raimondo`_
- Add functionality to determine plot limits automatically or by data percentiles by `Mark Wronkiewicz`_
- Fix bug in mne.io.edf where the channel offsets were omitted in the voltage calculations by `Teon Brooks`_
- Decouple section ordering in command-line from python interface for mne-report by `Mainak Jas`_
- Fix bug with ICA resetting by `Denis Engemann`_
API
~~~
- apply_inverse functions have a new boolean parameter ``prepared`` which saves computation time by calling ``prepare_inverse_operator`` only if it is False
- find_events and read_events functions have a new parameter ``mask`` to set some bits to a don't care state by `Teon Brooks`_
- New channels module including layouts, electrode montages, and neighbor definitions of sensors which deprecates ``mne.layouts`` by `Denis Engemann`_
- ``read_raw_brainvision``, ``read_raw_edf``, ``read_raw_egi`` all use a standard montage import by `Teon Brooks`_
- Fix missing calibration factors for ``mne.io.egi.read_raw_egi`` by `Denis Engemann`_ and `Federico Raimondo`_
- Allow multiple filename patterns as a list (e.g., \*raw.fif and \*-eve.fif) to be parsed by mne report in ``Report.parse_folder()`` by `Mainak Jas`_
- ``read_hsp``, ``read_elp``, and ``write_hsp``, ``write_mrk`` were removed and made private by `Teon Brooks`_
- When computing the noise covariance or MNE inverse solutions, the rank is estimated empirically using more sensitive thresholds, which stabilizes results by `Denis Engemann`_ and `Eric Larson`_ and `Alex Gramfort`_
- Raw FIFF files can be preloaded after class instantiation using ``raw.preload_data()``
- Add ``label`` parameter to ``apply_inverse`` by `Teon Brooks`_
- Deprecated ``label_time_courses`` for ``in_label`` method in `SourceEstimate` by `Teon Brooks`_
- Deprecated ``as_data_frame`` for ``to_data_frame`` by `Chris Holdgraf`_
- Add ``transform``, ``unit`` parameters to ``read_montage`` by `Teon Brooks`_
- Deprecated ``fmin, fmid, fmax`` in stc.plot and added ``clim`` by `Mark Wronkiewicz`_
- Use ``scipy.signal.welch`` instead of matplotlib.psd inside ``compute_raw_psd`` and ``compute_epochs_psd`` by `Yousra Bekhti`_ `Eric Larson`_ and `Denis Engemann`_. As a consquence, ``Raw.plot_raw_psds`` has been deprecated.
- ``Raw`` instances returned by ``mne.forward.apply_forward_raw`` now always have times starting from
zero to be consistent with all other ``Raw`` instances. To get the former ``start`` and ``stop`` times,
use ``raw.first_samp / raw.info['sfreq']`` and ``raw.last_samp / raw.info['sfreq']``.
- ``pick_types_evoked`` has been deprecated in favor of ``evoked.pick_types``.
- Deprecated changing the sensor type of channels in ``rename_channels`` by `Teon Brooks`_
- CUDA is no longer initialized at module import, but only when first used.
- ``add_figs_to_section`` and ``add_images_to_section`` now have a ``textbox`` parameter to add comments to the image by `Teon Brooks`_
- Deprecated ``iir_filter_raw`` for ``fit_iir_model_raw``.
- Add ``montage`` parameter to the ``create_info`` function to create the info using montages by `Teon Brooks`_
Authors
~~~~~~~
The committer list for this release is the following (preceded by number of commits):
* 515 Eric Larson
* 343 Denis A. Engemann
* 304 Alexandre Gramfort
* 300 Teon Brooks
* 142 Mainak Jas
* 119 Jean-Remi King
* 77 Alan Leggitt
* 75 Marijn van Vliet
* 63 Chris Holdgraf
* 57 Yousra Bekhti
* 49 Mark Wronkiewicz
* 44 Christian Brodbeck
* 30 Jona Sassenhagen
* 29 Hari Bharadwaj
* 27 Clément Moutard
* 24 Ingoo Lee
* 18 Marmaduke Woodman
* 16 Martin Luessi
* 10 Jaakko Leppakangas
* 9 Andrew Dykstra
* 9 Daniel Strohmeier
* 7 kjs
* 6 Dan G. Wakeman
* 5 Federico Raimondo
* 3 Basile Pinsard
* 3 Christoph Dinh
* 3 Hafeza Anevar
* 2 Martin Billinger
* 2 Roan LaPlante
* 1 Manoj Kumar
* 1 Matt Tucker
* 1 Romain Trachel
* 1 mads jensen
* 1 sviter
.. _changes_0_8:
Version 0.8
-----------
Changelog
~~~~~~~~~
- Add Python3 support by `Nick Ward`_, `Alex Gramfort`_, `Denis Engemann`_, and `Eric Larson`_
- Add ``get_peak`` method for evoked and stc objects by `Denis Engemann`_
- Add ``iter_topography`` function for radically simplified custom sensor topography plotting by `Denis Engemann`_
- Add field line interpolation by `Eric Larson`_
- Add full provenance tacking for epochs and improve ``drop_log`` by `Tal Linzen`_, `Alex Gramfort`_ and `Denis Engemann`_
- Add systematic contains method to ``Raw``, ``Epochs`` and ``Evoked`` for channel type membership testing by `Denis Engemann`_
- Add fiff unicode writing and reading support by `Denis Engemann`_
- Add 3D MEG/EEG field plotting function and evoked method by `Denis Engemann`_ and `Alex Gramfort`_
- Add consistent channel-dropping methods to ``Raw``, ``Epochs`` and ``Evoked`` by `Denis Engemann`_ and `Alex Gramfort`_
- Add ``equalize_channnels`` function to set common channels for a list of ``Raw``, ``Epochs``, or ``Evoked`` objects by `Denis Engemann`_
- Add ``plot_events`` function to visually display paradigm by `Alex Gramfort`_
- Improved connectivity circle plot by `Martin Luessi`_
- Add ability to anonymize measurement info by `Eric Larson`_
- Add callback to connectivity circle plot to isolate connections to clicked nodes `Roan LaPlante`_
- Add ability to add patch information to source spaces by `Eric Larson`_
- Add ``split_label`` function to divide labels into multiple parts by `Christian Brodbeck`_
- Add ``color`` attribute to ``Label`` objects by `Christian Brodbeck`_
- Add ``max`` mode for ``extract_label_time_course`` by `Mads Jensen`_
- Add ``rename_channels`` function to change channel names and types in info object by `Dan Wakeman`_ and `Denis Engemann`_
- Add ``compute_ems`` function to extract the time course of experimental effects by `Denis Engemann`_, `Sébastien Marti`_ and `Alex Gramfort`_
- Add option to expand Labels defined in a source space to the original surface (``Label.fill()``) by `Christian Brodbeck`_
- GUIs can be invoked form the command line using `$ mne coreg` and `$ mne kit2fiff` by `Christian Brodbeck`_
- Add ``add_channels_epochs`` function to combine different recordings at the Epochs level by `Christian Brodbeck`_ and `Denis Engemann`_
- Add support for EGI Netstation simple binary files by `Denis Engemann`_
- Add support for treating arbitrary data (numpy ndarray) as a Raw instance by `Eric Larson`_
- Support for parsing the EDF+ annotation channel by `Martin Billinger`_
- Add EpochsArray constructor for creating epochs from numpy arrays by `Denis Engemann`_ and `Federico Raimondo`_
- Add connector to FieldTrip realtime client by `Mainak Jas`_
- Add color and event_id with legend options in plot_events in viz.py by `Cathy Nangini`_
- Add ``events_list`` parameter to ``mne.concatenate_raws`` to concatenate events corresponding to runs by `Denis Engemann`_
- Add ``read_ch_connectivity`` function to read FieldTrip neighbor template .mat files and obtain sensor adjacency matrices by `Denis Engemann`_
- Add display of head in helmet from -trans.fif file to check coregistration quality by `Mainak Jas`_
- Add ``raw.add_events`` to allow adding events to a raw file by `Eric Larson`_
- Add ``plot_image`` method to Evoked object to display data as images by `Jean-Remi King`_ and `Alex Gramfort`_ and `Denis Engemann`_
- Add BCI demo with CSP on motor imagery by `Martin Billinger`_
- New ICA API with unified methods for processing ``Raw``, ``Epochs`` and ``Evoked`` objects by `Denis Engemann`_
- Apply ICA at the evoked stage by `Denis Engemann`_
- New ICA methods for visualizing unmixing quality, artifact detection and rejection by `Denis Engemann`_
- Add ``pick_channels`` and ``drop_channels`` mixin class to pick and drop channels from ``Raw``, ``Epochs``, and ``Evoked`` objects by `Andrew Dykstra`_ and `Denis Engemann`_
- Add ``EvokedArray`` class to create an Evoked object from an array by `Andrew Dykstra`_
- Add ``plot_bem`` method to visualize BEM contours on MRI anatomical images by `Mainak Jas`_ and `Alex Gramfort`_
- Add automated ECG detection using cross-trial phase statistics by `Denis Engemann`_ and `Juergen Dammers`_
- Add Forward class to succintly display gain matrix info by `Andrew Dykstra`_
- Add reading and writing of split raw files by `Martin Luessi`_
- Add OLS regression function by `Tal Linzen`_, `Teon Brooks`_ and `Denis Engemann`_
- Add computation of point spread and cross-talk functions for MNE type solutions by `Alex Gramfort`_ and `Olaf Hauk`_
- Add mask parameter to `plot_evoked_topomap` and ``evoked.plot_topomap`` by `Denis Engemann`_ and `Alex Gramfort`_
- Add infomax and extended infomax ICA by `Denis Engemann`_, `Juergen Dammers`_ and `Lukas Breuer`_ and `Federico Raimondo`_
- Aesthetically redesign interpolated topography plots by `Denis Engemann`_ and `Alex Gramfort`_
- Simplify sensor space time-frequency analysis API with ``tfr_morlet`` function by `Alex Gramfort`_ and `Denis Engemann`_
- Add new somatosensory MEG dataset with nice time-frequency content by `Alex Gramfort`_
- Add HDF5 write/read support for SourceEstimates by `Eric Larson`_
- Add InverseOperator class to display inverse operator info by `Mainak Jas`_
- Add `$ mne report` command to generate html reports of MEG/EEG data analysis pipelines by `Mainak Jas`_, `Alex Gramfort`_ and `Denis Engemann`_
- Improve ICA verbosity with regard to rank reduction by `Denis Engemann`_
BUG
~~~
- Fix incorrect ``times`` attribute when stc was computed using ``apply_inverse`` after decimation at epochs stage for certain, arbitrary sample frequencies by `Denis Engemann`_
- Fix corner case error for step-down-in-jumps permutation test (when step-down threshold was high enough to include all clusters) by `Eric Larson`_
- Fix selection of total number of components via float when picking ICA sources by `Denis Engemann`_ and `Qunxi Dong`_
- Fix writing and reading transforms after modification in measurment info by `Denis Engemann`_ and `Martin Luessi`_ and `Eric Larson`_
- Fix pre-whitening / rescaling when estimating ICA on multiple channels without covariance by `Denis Engemann`_
- Fix ICA pre-whitening, avoid recomputation when applying ICA to new data by `Denis Engemann`_
API
~~~
- The minimum numpy version has been increased to 1.6 from 1.4.
- Epochs object now has a selection attribute to track provenance of selected Epochs. The length of the drop_log attribute is now the same as the length of the original events passed to Epochs. In earlier versions it had the length of the events filtered by event_id. Epochs has also now a plot_drop_log method.
- Deprecate Epochs.drop_picks in favor of a new method called drop_channels
- Deprecate ``labels_from_parc`` and ``parc_from_labels`` in favor of ``read_labels_from_annot`` and ``write_labels_to_annot``
- The default of the new add_dist option of ``setup_source_space`` to add patch information will change from False to True in MNE-Python 0.9
- Deprecate ``read_evoked`` and ``write_evoked`` in favor of ``read_evokeds`` and ``write_evokeds``. read_evokeds will return all `Evoked` instances in a file by default.
- Deprecate ``setno`` in favor of ``condition`` in the initialization of an Evoked instance. This affects ``mne.fiff.Evoked`` and ``read_evokeds``, but not ``read_evoked``.
- Deprecate ``mne.fiff`` module, use ``mne.io`` instead e.g. ``mne.io.Raw`` instead of ``mne.fiff.Raw``.
- Pick functions (e.g., ``pick_types``) are now in the mne namespace (e.g. use ``mne.pick_types``).
- Deprecated ICA methods specific to one container type. Use ICA.fit, ICA.get_sources ICA.apply and ``ICA.plot_*`` for processing Raw, Epochs and Evoked objects.
- The default smoothing method for ``mne.stc_to_label`` will change in v0.9, and the old method is deprecated.
- As default, for ICA the maximum number of PCA components equals the number of channels passed. The number of PCA components used to reconstruct the sensor space signals now defaults to the maximum number of PCA components estimated.
Authors
~~~~~~~
The committer list for this release is the following (preceded by number of commits):
* 418 Denis A. Engemann
* 284 Alexandre Gramfort
* 242 Eric Larson
* 155 Christian Brodbeck
* 144 Mainak Jas
* 49 Martin Billinger
* 49 Andrew Dykstra
* 44 Tal Linzen
* 37 Dan G. Wakeman
* 36 Martin Luessi
* 26 Teon Brooks
* 20 Cathy Nangini
* 15 Hari Bharadwaj
* 15 Roman Goj
* 10 Ross Maddox
* 9 Marmaduke Woodman
* 8 Praveen Sripad
* 8 Tanay
* 8 Roan LaPlante
* 5 Saket Choudhary
* 4 Nick Ward
* 4 Mads Jensen
* 3 Olaf Hauk
* 3 Brad Buran
* 2 Daniel Strohmeier
* 2 Federico Raimondo
* 2 Alan Leggitt
* 1 Jean-Remi King
* 1 Matti Hamalainen
.. _changes_0_7:
Version 0.7
-----------
Changelog
~~~~~~~~~
- Add capability for real-time feedback via trigger codes using StimServer and StimClient classes by `Mainak Jas`_
- New decoding module for MEG analysis containing sklearn compatible transformers by `Mainak Jas`_ and `Alex Gramfort`_
- New realtime module containing RtEpochs, RtClient and MockRtClient class by `Martin Luessi`_, `Christopher Dinh`_, `Alex Gramfort`_, `Denis Engemann`_ and `Mainak Jas`_
- Allow picking normal orientation in LCMV beamformers by `Roman Goj`_, `Alex Gramfort`_, `Denis Engemann`_ and `Martin Luessi`_
- Add printing summary to terminal for measurement info by `Denis Engemann`_
- Add read and write info attribute ICA objects by `Denis Engemann`_
- Decoding with Common Spatial Patterns (CSP) by `Romain Trachel`_ and `Alex Gramfort`_
- Add ICA ``plot_topomap`` function and method for displaying the spatial sensitivity of ICA sources by `Denis Engemann`_
- Plotting multiple brain views at once by `Eric Larson`_
- Reading head positions from raw FIFF files by `Eric Larson`_
- Add decimation parameter to ICA.decompose* methods by `Denis Engemann`_ and `Alex Gramfort`_
- Add rejection buffer to ICA.decompose* methods by `Denis Engemann`_ and `Alex Gramfort`_
- Improve ICA computation speed and memory usage by `Denis Engemann`_ and `Alex Gramfort`_
- Add polygonal surface decimation function to preprocess head surfaces for coregistration by `Denis Engemann`_ and `Alex Gramfort`_
- DICS time-frequency beamforming for epochs, evoked and for estimating source power by `Roman Goj`_, `Alex Gramfort`_ and `Denis Engemann`_
- Add method for computing cross-spectral density (CSD) from epochs and class for storing CSD data by `Roman Goj`_, `Alex Gramfort`_ and `Denis Engemann`_
- Add trellis plot function and method for visualizing single epochs by `Denis Engemann`_
- Add fiducials read/write support by `Christian Brodbeck`_ and `Alex Gramfort`_
- Add select / drop bad channels in `plot_raw` on click by `Denis Engemann`_
- Add `ico` and `oct` source space creation in native Python by `Eric Larson`_
- Add interactive rejection of bad trials in ``plot_epochs`` by `Denis Engemann`_
- Add morph map calculation by `Eric Larson`_ and `Martin Luessi`_
- Add volume and discrete source space creation and I/O support by `Eric Larson`_
- Time-frequency beamforming to obtain spectrograms in source space using LCMV and DICS by `Roman Goj`_, `Alex Gramfort`_ and `Denis Engemann`_
- Compute epochs power spectral density function by `Denis Engemann`_
- Plot raw power spectral density by `Eric Larson`_
- Computing of distances along the cortical surface by `Eric Larson`_
- Add reading BEM solutions by `Eric Larson`_
- Add forward solution calculation in native Python by `Eric Larson`_
- Add (Neuro)debian license compatibility by `Eric Larson`_
- Automatic QRS threshold selection for ECG events by `Eric Larson`_
- Add Travis continuous integration service by `Denis Engemann`_
- Add SPM face data set by `Denis Engemann`_ `Martin Luessi`_ and `Alex Gramfort`_
- Support reading of EDF+,BDF data by `Teon Brooks`_
- Tools for scaling MRIs (mne.scale_mri) by `Christian Brodbeck`_
- GUI for head-MRI coregistration (mne.gui.coregistration) by `Christian Brodbeck`_
- GUI for ki2fiff conversion (mne.gui.kit2fiff) by `Christian Brodbeck`_
- Support reading of EEG BrainVision data by `Teon Brooks`_
- Improve CTF compensation handling by `Martin Luessi`_ and `Eric Larson`_
- Improve and extend automated layout guessing by `Denis Engemann`_
- Add Continuum Analytics Anaconda support by `Denis Engemann`_
- Add `subtract evoked` option to beamformers by `Andrew Dykstra`_
- Add new `transform` method to SourceEstimate(s) by `Andrew Dykstra`_
API
~~~
- The pick_normal parameter for minimum norm solvers has been renamed as ``pick_ori`` and normal orientation picking is now achieved by passing the value "normal" for the `pick_ori` parameter.
- ICA objects now expose the measurment info of the object fitted.
- Average EEG reference is now added by default to Raw instances.
- Removed deprecated read/write_stc/w, use SourceEstimate methods instead
- The ``chs`` argument in ``mne.layouts.find_layout`` is deprecated and will be removed in MNE-Python 0.9. Use ``info`` instead.
- ``plot_evoked`` and ``Epochs.plot`` now open a new figure by default. To plot on an existing figure please specify the `axes` parameter.
Authors
~~~~~~~
The committer list for this release is the following (preceded by number
of commits):
* 336 Denis A. Engemann
* 202 Eric Larson
* 193 Roman Goj
* 138 Alexandre Gramfort
* 99 Mainak Jas
* 75 Christian Brodbeck
* 60 Martin Luessi
* 40 Teon Brooks
* 29 Romain Trachel
* 28 Andrew Dykstra
* 12 Mark Wronkiewicz
* 10 Christoph Dinh
* 8 Alan Leggitt
* 3 Yaroslav Halchenko
* 3 Daniel Strohmeier
* 2 Mads Jensen
* 2 Praveen Sripad
* 1 Luke Bloy
* 1 Emanuele Olivetti
* 1 Yousra BEKHTI
.. _changes_0_6:
Version 0.6
-----------
Changelog
~~~~~~~~~
- Linear (and zeroth-order) detrending for Epochs and Evoked by `Eric Larson`_
- Label morphing between subjects by `Eric Larson`_
- Define events based on time lag between reference and target event by `Denis Engemann`_
- ICA convenience function implementing an automated artifact removal workflow by `Denis Engemann`_
- Bad channels no longer included in epochs by default by `Eric Larson`_
- Support for diagonal noise covariances in inverse methods and rank computation by `Eric Larson`_
- Support for using CUDA in FFT-based FIR filtering (method='fft') and resampling by `Eric Larson`_
- Optimized FFT length selection for faster overlap-add filtering by `Martin Luessi`_
- Ability to exclude bad channels from evoked plots or shown them in red by `Martin Luessi`_
- Option to show both hemispheres when plotting SourceEstimate with PySurfer by `Martin Luessi`_
- Optimized Raw reading and epoching routines to limit memory copies by `Eric Larson`_
- Advanced options to save raw files in short or double precision by `Eric Larson`_
- Option to detect decreasing events using find_events by `Simon Kornblith`_
- Option to change default stim_channel used for finding events by `Eric Larson`_
- Use average patch normal from surface-oriented forward solution in inverse calculation when possible by `Eric Larson`_
- Function to plot drop_log from Epochs instance by `Eric Larson`_
- Estimate rank of Raw data by `Eric Larson`_
- Support reading of BTi/4D data by `Denis Engemann`_
- Wrapper for generating forward solutions by `Eric Larson`_
- Averaging forward solutions by `Eric Larson`_
- Events now contain the pre-event stim channel value in the middle column, by `Christian Brodbeck`_
- New function ``mne.find_stim_steps`` for finding all steps in a stim channel by `Christian Brodbeck`_
- Get information about FIFF files using mne.fiff.show_fiff() by `Eric Larson`_
- Compute forward fields sensitivity maps by `Alex Gramfort`_ and `Eric Larson`_
- Support reading of KIT data by `Teon Brooks`_ and `Christian Brodbeck`_
- Raw data visualization by `Eric Larson`_
- Smarter SourceEstimate object that contains linear inverse kernel and sensor space data for fast time-frequency transforms in source space by `Martin Luessi`_
- Add example of decoding/MVPA on MEG sensor data by `Alex Gramfort`_
- Add support for non-paired tests in spatiotemporal cluster stats by `Alex Gramfort`_
- Add unified SSP-projector API for Raw, Epochs and Evoked objects by `Denis Engemann`_, `Alex Gramfort`_ `Eric Larson`_ and `Martin Luessi`_
- Add support for delayed SSP application at evoked stage `Denis Engemann`_, `Alex Gramfort`_, `Eric Larson`_ and `Martin Luessi`_
- Support selective parameter updating in functions taking dicts as arguments by `Denis Engemann`_
- New ICA method ``sources_as_epochs`` to create Epochs in ICA space by `Denis Engemann`_
- New method in Evoked and Epoch classes to shift time scale by `Mainak Jas`_
- Added option to specify EOG channel(s) when computing PCA/SSP projections for EOG artifacts by `Mainak Jas`_
- Improved connectivity interface to allow combinations of signals, e.g., seed time series and source estimates, by `Martin Luessi`_
- Effective connectivity estimation using Phase Slope Index (PSI) by `Martin Luessi`_
- Support for threshold-free cluster enhancement (TFCE) by `Eric Larson`_
- Support for "hat" variance regularization by `Eric Larson`_
- Access source estimates as Pandas DataFrame by `Denis Engemann`_.
- Add example of decoding/MVPA on MEG source space data by `Denis Engemann`_
- Add support for --tstart option in mne_compute_proj_eog.py by `Alex Gramfort`_
- Add two-way repeated measures ANOVA for mass-univariate statistics by `Denis Engemann`_, `Eric Larson`_ and `Alex Gramfort`_
- Add function for summarizing clusters from spatio-temporal-cluster permutation tests by `Denis Engemann`_ and `Eric Larson`_
- Add generator support for lcmv_epochs by `Denis Engemann`_
- Gamma-MAP sparse source localization method by `Martin Luessi`_ and `Alex Gramfort`_
- Add regular expression and substring support for selecting parcellation labels by `Denis Engemann`_
- New plot_evoked option for interactive and reversible selection of SSP projection vectors by `Denis Engemann`_
- Plot 2D flat topographies with interpolation for evoked and SSPs by `Christian Brodbeck`_ and `Alex Gramfort`_
- Support delayed SSP applicationon for 2D flat topographies by `Denis Engemann`_ and `Christian Brodbeck`_ and `Alex Gramfort`_
- Allow picking maximum power source, a.k.a. "optimal", orientation in LCMV beamformers by `Roman Goj`_, `Alex Gramfort`_, `Denis Engemann`_ and `Martin Luessi`_
- Add sensor type scaling parameter to plot_topo by `Andrew Dykstra`_, `Denis Engemann`_ and `Eric Larson`_
- Support delayed SSP application in plot_topo by `Denis Engemann`_
API
~~~
- Deprecated use of fiff.pick_types without specifying exclude -- use either [] (none), ``bads`` (bad channels), or a list of string (channel names).
- Depth bias correction in dSPM/MNE/sLORETA make_inverse_operator is now done like in the C code using only gradiometers if present, else magnetometers, and EEG if no MEG channels are present.
- Fixed-orientation inverse solutions need to be made using `fixed=True` option (using non-surface-oriented forward solutions if no depth weighting is used) to maintain compatibility with MNE C code.
- Raw.save() will only overwrite the destination file, if it exists, if option overwrite=True is set.
- mne.utils.set_config(), get_config(), get_config_path() moved to mne namespace.
- Raw constructor argument proj_active deprecated -- use proj argument instead.
- Functions from the mne.mixed_norm module have been moved to the mne.inverse_sparse module.
- Deprecate CTF compensation (keep_comp and dest_comp) in Epochs and move it to Raw with a single compensation parameter.
- Remove artifacts module. Artifacts- and preprocessing related functions can now be found in mne.preprocessing.
Authors
~~~~~~~
The committer list for this release is the following (preceded by number
of commits):
* 340 Eric Larson
* 330 Denis A. Engemann
* 204 Alexandre Gramfort
* 72 Christian Brodbeck
* 66 Roman Goj
* 65 Martin Luessi
* 37 Teon Brooks
* 18 Mainak Jas
* 9 Simon Kornblith
* 7 Daniel Strohmeier
* 6 Romain Trachel
* 5 Yousra BEKHTI
* 5 Brad Buran
* 1 Andrew Dykstra
* 1 Christoph Dinh
.. _changes_0_5:
Version 0.5
-----------
Changelog
~~~~~~~~~
- Multi-taper PSD estimation for single epochs in source space using minimum norm by `Martin Luessi`_
- Read and visualize .dip files obtained with xfit or mne_dipole_fit by `Alex Gramfort`_
- Make EEG layout by `Eric Larson`_
- Ability to specify SSP projectors when computing covariance from raw by `Eric Larson`_
- Read and write txt based event files (.eve or .txt) by `Eric Larson`_
- Pass qrs threshold to preprocessing functions by `Eric Larson`_
- Compute SSP projections from continuous raw data by `Eric Larson`_
- Support for applied SSP projections when loading Raw by `Eric Larson`_ and `Alex Gramfort`_
- Support for loading Raw stored in different fif files by `Eric Larson`_
- IO of many Evoked in a single fif file + compute Epochs.standard_error by `Eric Larson`_ and `Alex Gramfort`_
- ICA computation on Raw and Epochs with automatic component selection by `Denis Engemann`_ and `Alex Gramfort`_
- Saving ICA sources to fif files and creating ICA topography layouts by
`Denis Engemann`_
- Save and restore ICA session to and from fif by `Denis Engemann`_
- Export raw, epochs and evoked data as data frame to the pandas library by `Denis Engemann`_
- Export raw, epochs and evoked data to the nitime library by `Denis Engemann`_
- Copy methods for raw and epochs objects by `Denis Engemann`_, `Martin Luessi`_ and `Alex Gramfort`_
- New raw objects method to get the time at certain indices by `Denis Engemann`_ and `Alex Gramfort`_
- Plot method for evoked objects by `Denis Engemann`_
- Enhancement of cluster-level stats (speed and memory efficiency) by `Eric Larson`_ and `Martin Luessi`_
- Reading of source space distances by `Eric Larson`_
- Support for filling / smoothing labels and speedup of morphing by `Eric Larson`_
- Adding options for morphing by `Eric Larson`_
- Plotting functions for time frequency and epochs image topographies by `Denis Engemann`_ and `Alex Gramfort`_
- Plotting ERP/ERF images by `Alex Gramfort`_
- See detailed subplot when cliking on a channel inside a topography plot by `Martin Luessi`_, `Eric Larson`_ and `Denis Engemann`_
- Misc channel type support plotting functions by `Denis Engemann`_
- Improved logging support by `Eric Larson`_
- Whitening of evoked data for plotting and quality checking by `Alex Gramfort`_
- Transparent I/O of gzipped fif files (as .fif.gz) by `Eric Larson`_
- Spectral connectivity estimation in sensor and source space by `Martin Luessi`_
- Read and write Epochs in FIF files by `Alex Gramfort`_
- Resampling of Raw, Epochs, and Evoked by `Eric Larson`_
- Creating epochs objects for different conditions and accessing conditions via user-defined name by `Denis Engemann`_ , `Eric Larson`_, `Alex Gramfort`_ and `Christian Brodbeck`_
- Visualizing evoked responses from different conditions in one topography plot by `Denis Engemann`_ and `Alex Gramfort`_
- Support for L21 MxNE solver using coordinate descent using scikit-learn by `Alex Gramfort`_ and `Daniel Strohmeier`_
- Support IIR filters (butterworth, chebyshev, bessel, etc.) by `Eric Larson`_
- Read labels from FreeSurfer parcellation by `Martin Luessi`_
- Combining labels in source space by `Christian Brodbeck`_
- Read and write source spaces, surfaces and coordinate transforms to and from files by `Christian Brodbeck`_
- Downsample epochs by `Christian Brodbeck`_ and `Eric Larson`_
- New labels class for handling source estimates by `Christian Brodbeck`_, `Martin Luessi`_ and `Alex Gramfort`_
- New plotting routines to easily display SourceEstimates using PySurfer by `Alex Gramfort`_
- Function to extract label time courses from SourceEstimate(s) by `Martin Luessi`_
- Function to visualize connectivity as circular graph by `Martin Luessi`_ and `Alex Gramfort`_
- Time-frequency Mixed Norm Estimates (TF-MxNE) by `Alex Gramfort`_ and `Daniel Strohmeier`_
API
~~~
- Added nave parameter to source_induced_power() and source_band_induced_power(), use nave=1 by default (wrong nave was used before).
- Use mne.layout.read_layout instead of mne.layout.Layout to read a layout file (.lout)
- Use raw.time_as_index instead of time_to_index (still works but is deprecated).
- The artifacts module (mne.artifacts) is now merged into mne.preprocessing
- Epochs objects now also take dicts as values for the event_id argument. They now can represent multiple conditions.
Authors
~~~~~~~
The committer list for this release is the following (preceded by number
of commits):
* 313 Eric Larson
* 226 Alexandre Gramfort
* 219 Denis A. Engemann
* 104 Christian Brodbeck
* 85 Martin Luessi
* 6 Daniel Strohmeier
* 4 Teon Brooks
* 1 Dan G. Wakeman
.. _changes_0_4:
Version 0.4
-----------
Changelog
~~~~~~~~~
- Add function to compute source PSD using minimum norm by `Alex Gramfort`_
- L21 Mixed Norm Estimates (MxNE) by `Alex Gramfort`_ and `Daniel Strohmeier`_
- Generation of simulated evoked responses by `Alex Gramfort`_, `Daniel Strohmeier`_, and `Martin Luessi`_
- Fit AR models to raw data for temporal whitening by `Alex Gramfort`_.
- speedup + reduce memory of mne.morph_data by `Alex Gramfort`_.
- Backporting scipy.signal.firwin2 so filtering works with old scipy by `Alex Gramfort`_.
- LCMV Beamformer for evoked data, single trials, and raw data by `Alex Gramfort`_ and `Martin Luessi`_.
- Add support for reading named channel selections by `Martin Luessi`_.
- Add Raw.filter method to more easily band pass data by `Alex Gramfort`_.
- Add tmin + tmax parameters in mne.compute_covariance to estimate noise covariance in epochs baseline without creating new epochs by `Alex Gramfort`_.
- Add support for sLORETA in apply_inverse, apply_inverse_raw, apply_inverse_epochs (API Change) by `Alex Gramfort`_.
- Add method to regularize a noise covariance by `Alex Gramfort`_.
- Read and write measurement info in forward and inverse operators for interactive visualization in mne_analyze by `Alex Gramfort`_.
- New mne_compute_proj_ecg.py and mne_compute_proj_eog.py scripts to estimate ECG/EOG PCA/SSP vectors by `Alex Gramfort`_ and `Martin Luessi`_.
- Wrapper function and script (mne_maxfilter.py) for Elekta Neuromag MaxFilter(TM) by `Martin Luessi`_
- Add method to eliminate stimulation artifacts from raw data by linear interpolation or windowing by `Daniel Strohmeier`_.
Authors
~~~~~~~
The committer list for this release is the following (preceded by number
of commits):
* 118 Alexandre Gramfort
* 81 Martin Luessi
* 15 Daniel Strohmeier
* 4 Christian Brodbeck
* 4 Louis Thibault
* 2 Brad Buran
.. _changes_0_3:
Version 0.3
-----------
Changelog
~~~~~~~~~
- Sign flip computation for robust label average of signed values by `Alex Gramfort`_.
- Reading and writing of .w files by `Martin Luessi`_.
- Support for modifying Raw object and allow raw data preloading with memory mapping by `Martin Luessi`_ and `Alex Gramfort`_.
- Support of arithmetic of Evoked data (useful to concatenate between runs and compute contrasts) by `Alex Gramfort`_.
- Support for computing sensor space data from a source estimate using an MNE forward solution by `Martin Luessi`_.
- Support of arithmetic of Covariance by `Alex Gramfort`_.
- Write BEM surfaces in Python by `Alex Gramfort`_.
- Filtering operations and apply_function interface for Raw object by `Martin Luessi`_.
- Support for complex valued raw fiff files and computation of analytic signal for Raw object by `Martin Luessi`_.
- Write inverse operators (surface and volume) by `Alex Gramfort`_.
- Covariance matrix computation with multiple event types by `Martin Luessi`_.
- New tutorial in the documentation and new classes and functions reference page by `Alex Gramfort`_.
Authors
~~~~~~~
The committer list for this release is the following (preceded by number
of commits):
* 80 Alexandre Gramfort
* 51 Martin Luessi
Version 0.2
-----------
Changelog
~~~~~~~~~
- New stats functions for FDR correction and Bonferroni by `Alex Gramfort`_.
- Faster time-frequency using downsampling trick by `Alex Gramfort`_.
- Support for volume source spaces by `Alex Gramfort`_ (requires next MNE release or nightly).
- Improved Epochs handling by `Martin Luessi`_ (slicing, drop_bad_epochs).
- Bug fix in Epochs + ECG detection by Manfred Kitzbichler.
- New pick_types_evoked function by `Alex Gramfort`_.
- SourceEstimate now supports algebra by `Alex Gramfort`_.
API changes summary
~~~~~~~~~~~~~~~~~~~~~~~~~~~
Here are the code migration instructions when upgrading from mne-python
version 0.1:
- New return values for the function find_ecg_events
Authors
~~~~~~~
The committer list for this release is the following (preceded by number
of commits):
* 33 Alexandre Gramfort
* 12 Martin Luessi
* 2 Yaroslav Halchenko
* 1 Manfred Kitzbichler
.. _Alex Gramfort: http://alexandre.gramfort.net
.. _Martin Luessi: https://www.martinos.org/user/8245
.. _Yaroslav Halchenko: http://www.onerussian.com/
.. _Daniel Strohmeier: http://www.tu-ilmenau.de/bmti/fachgebiete/biomedizinische-technik/dipl-ing-daniel-strohmeier/
.. _Eric Larson: http://larsoner.com
.. _Denis Engemann: https://github.com/dengemann
.. _Christian Brodbeck: https://github.com/christianbrodbeck
.. _Simon Kornblith: http://simonster.com
.. _Teon Brooks: http://sites.google.com/a/nyu.edu/teon/
.. _Mainak Jas: http://ltl.tkk.fi/wiki/Mainak_Jas
.. _Roman Goj: http://romanmne.blogspot.co.uk
.. _Andrew Dykstra: https://github.com/adykstra
.. _Romain Trachel: http://www.lscp.net/braware/trachelBr.html
.. _Christopher Dinh: https://github.com/chdinh
.. _Nick Ward: http://www.ucl.ac.uk/ion/departments/sobell/Research/NWard
.. _Tal Linzen: http://tallinzen.net/
.. _Roan LaPlante: https://github.com/aestrivex
.. _Mads Jensen: https://github.com/MadsJensen
.. _Dan Wakeman: https://github.com/dgwakeman
.. _Qunxi Dong: https://github.com/dongqunxi
.. _Martin Billinger: https://github.com/kazemakase
.. _Federico Raimondo: https://github.com/fraimondo
.. _Cathy Nangini: https://github.com/KatiRG
.. _Jean-Remi King: https://github.com/kingjr
.. _Juergen Dammers: https://github.com/jdammers
.. _Olaf Hauk: http://www.neuroscience.cam.ac.uk/directory/profile.php?olafhauk
.. _Lukas Breuer: http://www.researchgate.net/profile/Lukas_Breuer
.. _Federico Raimondo: https://github.com/fraimondo
.. _Alan Leggitt: https://github.com/leggitta
.. _Marijn van Vliet: https://github.com/wmvanvliet
.. _Marmaduke Woodman: https://github.com/maedoc
.. _Jona Sassenhagen: https://github.com/jona-sassenhagen
.. _Hari Bharadwaj: http://www.haribharadwaj.com
.. _Chris Holdgraf: http://chrisholdgraf.com
.. _Jaakko Leppakangas: https://github.com/jaeilepp
.. _Yousra Bekhti: https://www.linkedin.com/pub/yousra-bekhti/56/886/421
.. _Mark Wronkiewicz: http://ilabs.washington.edu/graduate-students/bio/i-labs-mark-wronkiewicz
.. _Sébastien Marti: http://www.researchgate.net/profile/Sebastien_Marti
.. _Chris Bailey: https://github.com/cjayb
.. _Ross Maddox: http://faculty.washington.edu/rkmaddox/
.. _Alexandre Barachant: http://alexandre.barachant.org
.. _Daniel McCloy: http://dan.mccloy.info
.. _Jair Montoya Martinez: https://github.com/jmontoyam
.. _Samu Taulu: http://ilabs.washington.edu/institute-faculty/bio/i-labs-samu-taulu-dsc
.. _Lorenzo Desantis: https://github.com/lorenzo-desantis/
.. _Jukka Nenonen: https://www.linkedin.com/pub/jukka-nenonen/28/b5a/684
.. _Jussi Nurminen: https://scholar.google.fi/citations?user=R6CQz5wAAAAJ&hl=en
.. _Clemens Brunner: https://github.com/cle1109
.. _Asish Panda: https://github.com/kaichogami
.. _Natalie Klein: http://www.stat.cmu.edu/people/students/neklein
.. _Jon Houck: http://www.unm.edu/~jhouck/
.. _Pablo-Arias: https://github.com/Pablo-Arias
.. _Alexander Rudiuk: https://github.com/ARudiuk
.. _Mikołaj Magnuski: https://github.com/mmagnuski
.. _Felix Raimundo: https://github.com/gamazeps
.. _Nick Foti: http://nfoti.github.io
.. _Guillaume Dumas: http://www.extrospection.eu
.. _Chris Mullins: http://crmullins.com
.. _Phillip Alday: http://palday.bitbucket.org
.. _Andreas Hojlund: https://github.com/ahoejlund
.. _Johannes Niediek: https://github.com/jniediek
|