├── .Rbuildignore ├── .github ├── .gitignore ├── CONTRIBUTING.md ├── ISSUE_TEMPLATE.md └── workflows │ ├── R-CMD-check.yaml │ ├── pkgdown.yaml │ └── test-coverage.yaml ├── .gitignore ├── DESCRIPTION ├── LICENSE ├── LICENSE.md ├── NAMESPACE ├── NEWS.md ├── R ├── artifact_edition.R ├── artifact_helpers.R ├── channel_functions.R ├── compat_utils.R ├── constructors.R ├── constructors_helpers.R ├── data.R ├── defunct.R ├── deprecated.R ├── dplyr_ext.R ├── dplyr_verbs.R ├── dplyr_verbs_helpers.R ├── eeguana-package.R ├── events_tbl.R ├── exported_utils.R ├── filters.R ├── filters_helpers.R ├── funs.R ├── ica.R ├── ica_funs.R ├── ini.R ├── k.R ├── out.R ├── plot.R ├── plot_helpers.R ├── psd.R ├── read.R ├── read_helpers.R ├── reexports.R ├── segmentation.R ├── signal_helpers.R ├── signal_processing.R ├── signal_processing_helpers.R ├── signal_tbl.R ├── simulation.R ├── sysdata.rda ├── tbl.R ├── test_utils.R ├── tf.R ├── time_sample.R ├── to_eeg_lst.R ├── to_tbl.R ├── tools.R ├── utils-pipe.R ├── utils-prep.R ├── utils.R ├── utils_dt.R ├── write.R └── zzz.R ├── README.Rmd ├── README.md ├── _pipeline.txt ├── _pkgdown.yml ├── codecov.yml ├── codemeta.json ├── data-raw ├── create_MNE.R ├── create_faces_data.R ├── create_layout.R ├── create_test_data.R ├── layout_32_1020.csv └── logo.png ├── data ├── data_faces_10_trials.rda ├── data_faces_ERPs.rda └── layout_32_1020.rda ├── eeguana.Rproj ├── inst ├── CITATION ├── WORDLIST ├── logos │ ├── logo.eps │ ├── logo.png │ └── logo.svg ├── pkgdown.yml └── testdata │ ├── EMP01.vhdr │ ├── EMP01.vmrk │ ├── EMP01_events.csv │ ├── Newtest17-256.bdf │ ├── asalab_export_bv.eeg │ ├── asalab_export_bv.vhdr │ ├── asalab_export_bv.vmrk │ ├── asalab_export_bv_2.vhdr │ ├── asalab_export_edf_Segment_1.edf │ ├── bv_export_bv_txt_bin_multi.dat │ ├── bv_export_bv_txt_bin_multi.set │ ├── bv_export_bv_txt_bin_multi.vhdr │ ├── bv_export_bv_txt_bin_multi.vmrk │ ├── bv_export_bv_txt_bin_multi2.set │ ├── bv_export_bv_txt_bin_multi3.fdt │ ├── bv_export_bv_txt_bin_multi3.set │ ├── bv_export_bv_txt_bin_multi_16bit.dat │ ├── bv_export_bv_txt_bin_multi_16bit.vhdr │ ├── bv_export_bv_txt_bin_multi_16bit.vmrk │ ├── bv_export_bv_txt_bin_multi_32bit.dat │ ├── bv_export_bv_txt_bin_multi_32bit.vhdr │ ├── bv_export_bv_txt_bin_multi_32bit.vmrk │ ├── bv_export_bv_txt_bin_multi_epoched.fdt │ ├── bv_export_bv_txt_bin_multi_epoched.set │ ├── bv_export_bv_txt_bin_multi_epoched_1.set │ ├── bv_export_bv_txt_bin_multi_epoched_one.set │ ├── bv_export_bv_txt_bin_vector.dat │ ├── bv_export_bv_txt_bin_vector.vhdr │ ├── bv_export_bv_txt_bin_vector.vmrk │ ├── bv_export_bv_txt_bin_vector_16bit.dat │ ├── bv_export_bv_txt_bin_vector_16bit.vhdr │ ├── bv_export_bv_txt_bin_vector_16bit.vmrk │ ├── bv_export_bv_txt_bin_vector_32bit.dat │ ├── bv_export_bv_txt_bin_vector_32bit.vhdr │ ├── bv_export_bv_txt_bin_vector_32bit.vmrk │ ├── bv_export_bv_txt_txt_multi.dat │ ├── bv_export_bv_txt_txt_multi.vhdr │ ├── bv_export_bv_txt_txt_multi.vmrk │ ├── bv_export_bv_txt_txt_vector.dat │ ├── bv_export_bv_txt_txt_vector.vhdr │ ├── bv_export_bv_txt_txt_vector.vmrk │ ├── bv_export_edf+.edf │ ├── bv_export_edf.edf │ ├── bv_segexport_ascii.dat │ ├── bv_segexport_ascii.vhdr │ ├── bv_segexport_ascii.vmrk │ ├── bv_segexport_bin.dat │ ├── bv_segexport_bin.vhdr │ ├── bv_segexport_bin.vmrk │ ├── data.txt │ ├── eeglab_data.set │ ├── fieldtrip_matrix.mat │ ├── sample_audvis_10s_raw.fif │ ├── test_generator_2.bdf │ └── test_generator_2.edf ├── man ├── annotate_electrodes.Rd ├── annotate_events.Rd ├── annotate_head.Rd ├── as.data.frame.eeg_lst.Rd ├── as.data.frame.psd_lst.Rd ├── as.data.table.eeg_lst.Rd ├── as.data.table.psd_lst.Rd ├── as_channel_dbl.Rd ├── as_eeg_lst.Rd ├── as_sample_int.Rd ├── as_tibble.eeg_lst.Rd ├── as_tibble.psd_lst.Rd ├── as_tidytable.eeg_lst.Rd ├── as_tidytable.psd_lst.Rd ├── as_time.Rd ├── between.Rd ├── change_coord.Rd ├── channel_dbl.Rd ├── channels_tbl.Rd ├── chs_fun.Rd ├── chs_mean.Rd ├── component_dbl.Rd ├── count_complete_cases_tbl.Rd ├── data_faces_10_trials.Rd ├── data_faces_ERPs.Rd ├── defunct.Rd ├── dplyr_verbs.Rd ├── drop_incomplete_segments.Rd ├── eeg_artif.Rd ├── eeg_baseline.Rd ├── eeg_bind.Rd ├── eeg_downsample.Rd ├── eeg_events_to_NA.Rd ├── eeg_ica.Rd ├── eeg_ica_cor_tbl.Rd ├── eeg_ica_keep.Rd ├── eeg_ica_show.Rd ├── eeg_ica_summary_tbl.Rd ├── eeg_ica_var_tbl.Rd ├── eeg_interpolate_tbl.Rd ├── eeg_lst.Rd ├── eeg_power_band.Rd ├── eeg_psd.Rd ├── eeg_rereference.Rd ├── eeg_segment.Rd ├── eeg_slice_signal.Rd ├── eeguana-package.Rd ├── events_tbl.Rd ├── fICA.Rd ├── fast_ICA.Rd ├── figures │ ├── README-plot-1.png │ └── README-topo-1.png ├── filt.Rd ├── ggplot.eeg_lst.Rd ├── ica_matrix_lst.Rd ├── install_py_eeguana.Rd ├── is_channel_dbl.Rd ├── is_component_dbl.Rd ├── is_eeg_lst.Rd ├── is_events_tbl.Rd ├── is_psd_lst.Rd ├── is_psd_tbl.Rd ├── is_sample_int.Rd ├── is_signal_tbl.Rd ├── layout_32_1020.Rd ├── na_omit.Rd ├── pipe.Rd ├── plot.eeg_lst.Rd ├── plot_components.Rd ├── plot_in_layout.Rd ├── plot_topo.Rd ├── psd_lst.Rd ├── read_edf.Rd ├── read_fif.Rd ├── read_ft.Rd ├── read_set.Rd ├── read_vhdr.Rd ├── reexports.Rd ├── rpink.Rd ├── sample_int.Rd ├── segments_tbl.Rd ├── sig_fft.Rd ├── sig_ifft.Rd ├── signal_tbl.Rd ├── summaries.Rd ├── summary.eeg_lst.Rd ├── theme_eeguana.Rd └── write_vhdr.Rd ├── papers.bib ├── pkgdown └── favicon │ ├── apple-touch-icon-120x120.png │ ├── apple-touch-icon-60x60.png │ ├── apple-touch-icon-76x76.png │ ├── apple-touch-icon.png │ ├── favicon-16x16.png │ ├── favicon-32x32.png │ └── favicon.ico ├── tests ├── spelling.R ├── spelling.Rout.save ├── testthat.R └── testthat │ ├── _snaps │ ├── 01-reading.md │ ├── 02-ica.md │ ├── 10-summarizing.md │ └── 16-out_funs.md │ ├── helper_funs.R │ ├── setup.R │ ├── test_01-reading.R │ ├── test_02-ica.R │ ├── test_03-filt.R │ ├── test_04-segmentation.R │ ├── test_05-tv_01a-mutate.R │ ├── test_05-tv_01b-mutate.R │ ├── test_05-tv_02-filter.R │ ├── test_05-tv_03-joins.R │ ├── test_05-tv_04-summarize.R │ ├── test_05-tv_05-group_by.R │ ├── test_05-tv_06-bind.R │ ├── test_05-tv_07-select.R │ ├── test_05-tv_08-rename.R │ ├── test_05-tv_09-atif.R │ ├── test_06-artifacts.R │ ├── test_07-EEG-specialized.R │ ├── test_08-channels.R │ ├── test_09-plots.R │ ├── test_10-summarizing.R │ ├── test_11-editing.R │ ├── test_12-constr.R │ ├── test_13-defunct.R │ ├── test_14-load.R │ ├── test_15-misc.R │ ├── test_16-out_funs.R │ ├── test_17-time.R │ ├── test_18-to_tbl.R │ ├── test_19-vs_python.R │ └── test_20-psd.R └── vignettes ├── gotchas.Rmd ├── intro.Rmd ├── preprocessing_erp.Rmd ├── psd.Rmd_ └── references.bib /.Rbuildignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnicenboim/eeguana/HEAD/.Rbuildignore -------------------------------------------------------------------------------- /.github/.gitignore: -------------------------------------------------------------------------------- 1 | *.html 2 | -------------------------------------------------------------------------------- /.github/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnicenboim/eeguana/HEAD/.github/CONTRIBUTING.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnicenboim/eeguana/HEAD/.github/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /.github/workflows/R-CMD-check.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnicenboim/eeguana/HEAD/.github/workflows/R-CMD-check.yaml -------------------------------------------------------------------------------- /.github/workflows/pkgdown.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnicenboim/eeguana/HEAD/.github/workflows/pkgdown.yaml -------------------------------------------------------------------------------- /.github/workflows/test-coverage.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnicenboim/eeguana/HEAD/.github/workflows/test-coverage.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnicenboim/eeguana/HEAD/.gitignore -------------------------------------------------------------------------------- /DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnicenboim/eeguana/HEAD/DESCRIPTION -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | YEAR: 2018 2 | COPYRIGHT HOLDER: Bruno Nicenboim 3 | -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnicenboim/eeguana/HEAD/LICENSE.md -------------------------------------------------------------------------------- /NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnicenboim/eeguana/HEAD/NAMESPACE -------------------------------------------------------------------------------- /NEWS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnicenboim/eeguana/HEAD/NEWS.md -------------------------------------------------------------------------------- /R/artifact_edition.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnicenboim/eeguana/HEAD/R/artifact_edition.R -------------------------------------------------------------------------------- /R/artifact_helpers.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnicenboim/eeguana/HEAD/R/artifact_helpers.R -------------------------------------------------------------------------------- /R/channel_functions.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnicenboim/eeguana/HEAD/R/channel_functions.R -------------------------------------------------------------------------------- /R/compat_utils.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnicenboim/eeguana/HEAD/R/compat_utils.R -------------------------------------------------------------------------------- /R/constructors.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnicenboim/eeguana/HEAD/R/constructors.R -------------------------------------------------------------------------------- /R/constructors_helpers.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnicenboim/eeguana/HEAD/R/constructors_helpers.R -------------------------------------------------------------------------------- /R/data.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnicenboim/eeguana/HEAD/R/data.R -------------------------------------------------------------------------------- /R/defunct.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnicenboim/eeguana/HEAD/R/defunct.R -------------------------------------------------------------------------------- /R/deprecated.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnicenboim/eeguana/HEAD/R/deprecated.R -------------------------------------------------------------------------------- /R/dplyr_ext.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnicenboim/eeguana/HEAD/R/dplyr_ext.R -------------------------------------------------------------------------------- /R/dplyr_verbs.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnicenboim/eeguana/HEAD/R/dplyr_verbs.R -------------------------------------------------------------------------------- /R/dplyr_verbs_helpers.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnicenboim/eeguana/HEAD/R/dplyr_verbs_helpers.R -------------------------------------------------------------------------------- /R/eeguana-package.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnicenboim/eeguana/HEAD/R/eeguana-package.R -------------------------------------------------------------------------------- /R/events_tbl.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnicenboim/eeguana/HEAD/R/events_tbl.R -------------------------------------------------------------------------------- /R/exported_utils.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnicenboim/eeguana/HEAD/R/exported_utils.R -------------------------------------------------------------------------------- /R/filters.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnicenboim/eeguana/HEAD/R/filters.R -------------------------------------------------------------------------------- /R/filters_helpers.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnicenboim/eeguana/HEAD/R/filters_helpers.R -------------------------------------------------------------------------------- /R/funs.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnicenboim/eeguana/HEAD/R/funs.R -------------------------------------------------------------------------------- /R/ica.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnicenboim/eeguana/HEAD/R/ica.R -------------------------------------------------------------------------------- /R/ica_funs.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnicenboim/eeguana/HEAD/R/ica_funs.R -------------------------------------------------------------------------------- /R/ini.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnicenboim/eeguana/HEAD/R/ini.R -------------------------------------------------------------------------------- /R/k.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnicenboim/eeguana/HEAD/R/k.R -------------------------------------------------------------------------------- /R/out.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnicenboim/eeguana/HEAD/R/out.R -------------------------------------------------------------------------------- /R/plot.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnicenboim/eeguana/HEAD/R/plot.R -------------------------------------------------------------------------------- /R/plot_helpers.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnicenboim/eeguana/HEAD/R/plot_helpers.R -------------------------------------------------------------------------------- /R/psd.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnicenboim/eeguana/HEAD/R/psd.R -------------------------------------------------------------------------------- /R/read.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnicenboim/eeguana/HEAD/R/read.R -------------------------------------------------------------------------------- /R/read_helpers.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnicenboim/eeguana/HEAD/R/read_helpers.R -------------------------------------------------------------------------------- /R/reexports.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnicenboim/eeguana/HEAD/R/reexports.R -------------------------------------------------------------------------------- /R/segmentation.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnicenboim/eeguana/HEAD/R/segmentation.R -------------------------------------------------------------------------------- /R/signal_helpers.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnicenboim/eeguana/HEAD/R/signal_helpers.R -------------------------------------------------------------------------------- /R/signal_processing.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnicenboim/eeguana/HEAD/R/signal_processing.R -------------------------------------------------------------------------------- /R/signal_processing_helpers.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnicenboim/eeguana/HEAD/R/signal_processing_helpers.R -------------------------------------------------------------------------------- /R/signal_tbl.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnicenboim/eeguana/HEAD/R/signal_tbl.R -------------------------------------------------------------------------------- /R/simulation.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnicenboim/eeguana/HEAD/R/simulation.R -------------------------------------------------------------------------------- /R/sysdata.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnicenboim/eeguana/HEAD/R/sysdata.rda -------------------------------------------------------------------------------- /R/tbl.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnicenboim/eeguana/HEAD/R/tbl.R -------------------------------------------------------------------------------- /R/test_utils.R: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /R/tf.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnicenboim/eeguana/HEAD/R/tf.R -------------------------------------------------------------------------------- /R/time_sample.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnicenboim/eeguana/HEAD/R/time_sample.R -------------------------------------------------------------------------------- /R/to_eeg_lst.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnicenboim/eeguana/HEAD/R/to_eeg_lst.R -------------------------------------------------------------------------------- /R/to_tbl.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnicenboim/eeguana/HEAD/R/to_tbl.R -------------------------------------------------------------------------------- /R/tools.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnicenboim/eeguana/HEAD/R/tools.R -------------------------------------------------------------------------------- /R/utils-pipe.R: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /R/utils-prep.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnicenboim/eeguana/HEAD/R/utils-prep.R -------------------------------------------------------------------------------- /R/utils.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnicenboim/eeguana/HEAD/R/utils.R -------------------------------------------------------------------------------- /R/utils_dt.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnicenboim/eeguana/HEAD/R/utils_dt.R -------------------------------------------------------------------------------- /R/write.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnicenboim/eeguana/HEAD/R/write.R -------------------------------------------------------------------------------- /R/zzz.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnicenboim/eeguana/HEAD/R/zzz.R -------------------------------------------------------------------------------- /README.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnicenboim/eeguana/HEAD/README.Rmd -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnicenboim/eeguana/HEAD/README.md -------------------------------------------------------------------------------- /_pipeline.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnicenboim/eeguana/HEAD/_pipeline.txt -------------------------------------------------------------------------------- /_pkgdown.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnicenboim/eeguana/HEAD/_pkgdown.yml -------------------------------------------------------------------------------- /codecov.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnicenboim/eeguana/HEAD/codecov.yml -------------------------------------------------------------------------------- /codemeta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnicenboim/eeguana/HEAD/codemeta.json -------------------------------------------------------------------------------- /data-raw/create_MNE.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnicenboim/eeguana/HEAD/data-raw/create_MNE.R -------------------------------------------------------------------------------- /data-raw/create_faces_data.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnicenboim/eeguana/HEAD/data-raw/create_faces_data.R -------------------------------------------------------------------------------- /data-raw/create_layout.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnicenboim/eeguana/HEAD/data-raw/create_layout.R -------------------------------------------------------------------------------- /data-raw/create_test_data.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnicenboim/eeguana/HEAD/data-raw/create_test_data.R -------------------------------------------------------------------------------- /data-raw/layout_32_1020.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnicenboim/eeguana/HEAD/data-raw/layout_32_1020.csv -------------------------------------------------------------------------------- /data-raw/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnicenboim/eeguana/HEAD/data-raw/logo.png -------------------------------------------------------------------------------- /data/data_faces_10_trials.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnicenboim/eeguana/HEAD/data/data_faces_10_trials.rda -------------------------------------------------------------------------------- /data/data_faces_ERPs.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnicenboim/eeguana/HEAD/data/data_faces_ERPs.rda -------------------------------------------------------------------------------- /data/layout_32_1020.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnicenboim/eeguana/HEAD/data/layout_32_1020.rda -------------------------------------------------------------------------------- /eeguana.Rproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnicenboim/eeguana/HEAD/eeguana.Rproj -------------------------------------------------------------------------------- /inst/CITATION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnicenboim/eeguana/HEAD/inst/CITATION -------------------------------------------------------------------------------- /inst/WORDLIST: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnicenboim/eeguana/HEAD/inst/WORDLIST -------------------------------------------------------------------------------- /inst/logos/logo.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnicenboim/eeguana/HEAD/inst/logos/logo.eps -------------------------------------------------------------------------------- /inst/logos/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnicenboim/eeguana/HEAD/inst/logos/logo.png -------------------------------------------------------------------------------- /inst/logos/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnicenboim/eeguana/HEAD/inst/logos/logo.svg -------------------------------------------------------------------------------- /inst/pkgdown.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnicenboim/eeguana/HEAD/inst/pkgdown.yml -------------------------------------------------------------------------------- /inst/testdata/EMP01.vhdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnicenboim/eeguana/HEAD/inst/testdata/EMP01.vhdr -------------------------------------------------------------------------------- /inst/testdata/EMP01.vmrk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnicenboim/eeguana/HEAD/inst/testdata/EMP01.vmrk -------------------------------------------------------------------------------- /inst/testdata/EMP01_events.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnicenboim/eeguana/HEAD/inst/testdata/EMP01_events.csv -------------------------------------------------------------------------------- /inst/testdata/Newtest17-256.bdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnicenboim/eeguana/HEAD/inst/testdata/Newtest17-256.bdf -------------------------------------------------------------------------------- /inst/testdata/asalab_export_bv.eeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnicenboim/eeguana/HEAD/inst/testdata/asalab_export_bv.eeg -------------------------------------------------------------------------------- /inst/testdata/asalab_export_bv.vhdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnicenboim/eeguana/HEAD/inst/testdata/asalab_export_bv.vhdr -------------------------------------------------------------------------------- /inst/testdata/asalab_export_bv.vmrk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnicenboim/eeguana/HEAD/inst/testdata/asalab_export_bv.vmrk -------------------------------------------------------------------------------- /inst/testdata/asalab_export_bv_2.vhdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnicenboim/eeguana/HEAD/inst/testdata/asalab_export_bv_2.vhdr -------------------------------------------------------------------------------- /inst/testdata/asalab_export_edf_Segment_1.edf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnicenboim/eeguana/HEAD/inst/testdata/asalab_export_edf_Segment_1.edf -------------------------------------------------------------------------------- /inst/testdata/bv_export_bv_txt_bin_multi.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnicenboim/eeguana/HEAD/inst/testdata/bv_export_bv_txt_bin_multi.dat -------------------------------------------------------------------------------- /inst/testdata/bv_export_bv_txt_bin_multi.set: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnicenboim/eeguana/HEAD/inst/testdata/bv_export_bv_txt_bin_multi.set -------------------------------------------------------------------------------- /inst/testdata/bv_export_bv_txt_bin_multi.vhdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnicenboim/eeguana/HEAD/inst/testdata/bv_export_bv_txt_bin_multi.vhdr -------------------------------------------------------------------------------- /inst/testdata/bv_export_bv_txt_bin_multi.vmrk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnicenboim/eeguana/HEAD/inst/testdata/bv_export_bv_txt_bin_multi.vmrk -------------------------------------------------------------------------------- /inst/testdata/bv_export_bv_txt_bin_multi2.set: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnicenboim/eeguana/HEAD/inst/testdata/bv_export_bv_txt_bin_multi2.set -------------------------------------------------------------------------------- /inst/testdata/bv_export_bv_txt_bin_multi3.fdt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnicenboim/eeguana/HEAD/inst/testdata/bv_export_bv_txt_bin_multi3.fdt -------------------------------------------------------------------------------- /inst/testdata/bv_export_bv_txt_bin_multi3.set: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnicenboim/eeguana/HEAD/inst/testdata/bv_export_bv_txt_bin_multi3.set -------------------------------------------------------------------------------- /inst/testdata/bv_export_bv_txt_bin_multi_16bit.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnicenboim/eeguana/HEAD/inst/testdata/bv_export_bv_txt_bin_multi_16bit.dat -------------------------------------------------------------------------------- /inst/testdata/bv_export_bv_txt_bin_multi_16bit.vhdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnicenboim/eeguana/HEAD/inst/testdata/bv_export_bv_txt_bin_multi_16bit.vhdr -------------------------------------------------------------------------------- /inst/testdata/bv_export_bv_txt_bin_multi_16bit.vmrk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnicenboim/eeguana/HEAD/inst/testdata/bv_export_bv_txt_bin_multi_16bit.vmrk -------------------------------------------------------------------------------- /inst/testdata/bv_export_bv_txt_bin_multi_32bit.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnicenboim/eeguana/HEAD/inst/testdata/bv_export_bv_txt_bin_multi_32bit.dat -------------------------------------------------------------------------------- /inst/testdata/bv_export_bv_txt_bin_multi_32bit.vhdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnicenboim/eeguana/HEAD/inst/testdata/bv_export_bv_txt_bin_multi_32bit.vhdr -------------------------------------------------------------------------------- /inst/testdata/bv_export_bv_txt_bin_multi_32bit.vmrk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnicenboim/eeguana/HEAD/inst/testdata/bv_export_bv_txt_bin_multi_32bit.vmrk -------------------------------------------------------------------------------- /inst/testdata/bv_export_bv_txt_bin_multi_epoched.fdt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnicenboim/eeguana/HEAD/inst/testdata/bv_export_bv_txt_bin_multi_epoched.fdt -------------------------------------------------------------------------------- /inst/testdata/bv_export_bv_txt_bin_multi_epoched.set: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnicenboim/eeguana/HEAD/inst/testdata/bv_export_bv_txt_bin_multi_epoched.set -------------------------------------------------------------------------------- /inst/testdata/bv_export_bv_txt_bin_multi_epoched_1.set: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnicenboim/eeguana/HEAD/inst/testdata/bv_export_bv_txt_bin_multi_epoched_1.set -------------------------------------------------------------------------------- /inst/testdata/bv_export_bv_txt_bin_multi_epoched_one.set: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnicenboim/eeguana/HEAD/inst/testdata/bv_export_bv_txt_bin_multi_epoched_one.set -------------------------------------------------------------------------------- /inst/testdata/bv_export_bv_txt_bin_vector.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnicenboim/eeguana/HEAD/inst/testdata/bv_export_bv_txt_bin_vector.dat -------------------------------------------------------------------------------- /inst/testdata/bv_export_bv_txt_bin_vector.vhdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnicenboim/eeguana/HEAD/inst/testdata/bv_export_bv_txt_bin_vector.vhdr -------------------------------------------------------------------------------- /inst/testdata/bv_export_bv_txt_bin_vector.vmrk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnicenboim/eeguana/HEAD/inst/testdata/bv_export_bv_txt_bin_vector.vmrk -------------------------------------------------------------------------------- /inst/testdata/bv_export_bv_txt_bin_vector_16bit.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnicenboim/eeguana/HEAD/inst/testdata/bv_export_bv_txt_bin_vector_16bit.dat -------------------------------------------------------------------------------- /inst/testdata/bv_export_bv_txt_bin_vector_16bit.vhdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnicenboim/eeguana/HEAD/inst/testdata/bv_export_bv_txt_bin_vector_16bit.vhdr -------------------------------------------------------------------------------- /inst/testdata/bv_export_bv_txt_bin_vector_16bit.vmrk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnicenboim/eeguana/HEAD/inst/testdata/bv_export_bv_txt_bin_vector_16bit.vmrk -------------------------------------------------------------------------------- /inst/testdata/bv_export_bv_txt_bin_vector_32bit.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnicenboim/eeguana/HEAD/inst/testdata/bv_export_bv_txt_bin_vector_32bit.dat -------------------------------------------------------------------------------- /inst/testdata/bv_export_bv_txt_bin_vector_32bit.vhdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnicenboim/eeguana/HEAD/inst/testdata/bv_export_bv_txt_bin_vector_32bit.vhdr -------------------------------------------------------------------------------- /inst/testdata/bv_export_bv_txt_bin_vector_32bit.vmrk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnicenboim/eeguana/HEAD/inst/testdata/bv_export_bv_txt_bin_vector_32bit.vmrk -------------------------------------------------------------------------------- /inst/testdata/bv_export_bv_txt_txt_multi.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnicenboim/eeguana/HEAD/inst/testdata/bv_export_bv_txt_txt_multi.dat -------------------------------------------------------------------------------- /inst/testdata/bv_export_bv_txt_txt_multi.vhdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnicenboim/eeguana/HEAD/inst/testdata/bv_export_bv_txt_txt_multi.vhdr -------------------------------------------------------------------------------- /inst/testdata/bv_export_bv_txt_txt_multi.vmrk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnicenboim/eeguana/HEAD/inst/testdata/bv_export_bv_txt_txt_multi.vmrk -------------------------------------------------------------------------------- /inst/testdata/bv_export_bv_txt_txt_vector.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnicenboim/eeguana/HEAD/inst/testdata/bv_export_bv_txt_txt_vector.dat -------------------------------------------------------------------------------- /inst/testdata/bv_export_bv_txt_txt_vector.vhdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnicenboim/eeguana/HEAD/inst/testdata/bv_export_bv_txt_txt_vector.vhdr -------------------------------------------------------------------------------- /inst/testdata/bv_export_bv_txt_txt_vector.vmrk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnicenboim/eeguana/HEAD/inst/testdata/bv_export_bv_txt_txt_vector.vmrk -------------------------------------------------------------------------------- /inst/testdata/bv_export_edf+.edf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnicenboim/eeguana/HEAD/inst/testdata/bv_export_edf+.edf -------------------------------------------------------------------------------- /inst/testdata/bv_export_edf.edf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnicenboim/eeguana/HEAD/inst/testdata/bv_export_edf.edf -------------------------------------------------------------------------------- /inst/testdata/bv_segexport_ascii.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnicenboim/eeguana/HEAD/inst/testdata/bv_segexport_ascii.dat -------------------------------------------------------------------------------- /inst/testdata/bv_segexport_ascii.vhdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnicenboim/eeguana/HEAD/inst/testdata/bv_segexport_ascii.vhdr -------------------------------------------------------------------------------- /inst/testdata/bv_segexport_ascii.vmrk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnicenboim/eeguana/HEAD/inst/testdata/bv_segexport_ascii.vmrk -------------------------------------------------------------------------------- /inst/testdata/bv_segexport_bin.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnicenboim/eeguana/HEAD/inst/testdata/bv_segexport_bin.dat -------------------------------------------------------------------------------- /inst/testdata/bv_segexport_bin.vhdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnicenboim/eeguana/HEAD/inst/testdata/bv_segexport_bin.vhdr -------------------------------------------------------------------------------- /inst/testdata/bv_segexport_bin.vmrk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnicenboim/eeguana/HEAD/inst/testdata/bv_segexport_bin.vmrk -------------------------------------------------------------------------------- /inst/testdata/data.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnicenboim/eeguana/HEAD/inst/testdata/data.txt -------------------------------------------------------------------------------- /inst/testdata/eeglab_data.set: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnicenboim/eeguana/HEAD/inst/testdata/eeglab_data.set -------------------------------------------------------------------------------- /inst/testdata/fieldtrip_matrix.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnicenboim/eeguana/HEAD/inst/testdata/fieldtrip_matrix.mat -------------------------------------------------------------------------------- /inst/testdata/sample_audvis_10s_raw.fif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnicenboim/eeguana/HEAD/inst/testdata/sample_audvis_10s_raw.fif -------------------------------------------------------------------------------- /inst/testdata/test_generator_2.bdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnicenboim/eeguana/HEAD/inst/testdata/test_generator_2.bdf -------------------------------------------------------------------------------- /inst/testdata/test_generator_2.edf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnicenboim/eeguana/HEAD/inst/testdata/test_generator_2.edf -------------------------------------------------------------------------------- /man/annotate_electrodes.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnicenboim/eeguana/HEAD/man/annotate_electrodes.Rd -------------------------------------------------------------------------------- /man/annotate_events.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnicenboim/eeguana/HEAD/man/annotate_events.Rd -------------------------------------------------------------------------------- /man/annotate_head.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnicenboim/eeguana/HEAD/man/annotate_head.Rd -------------------------------------------------------------------------------- /man/as.data.frame.eeg_lst.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnicenboim/eeguana/HEAD/man/as.data.frame.eeg_lst.Rd -------------------------------------------------------------------------------- /man/as.data.frame.psd_lst.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnicenboim/eeguana/HEAD/man/as.data.frame.psd_lst.Rd -------------------------------------------------------------------------------- /man/as.data.table.eeg_lst.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnicenboim/eeguana/HEAD/man/as.data.table.eeg_lst.Rd -------------------------------------------------------------------------------- /man/as.data.table.psd_lst.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnicenboim/eeguana/HEAD/man/as.data.table.psd_lst.Rd -------------------------------------------------------------------------------- /man/as_channel_dbl.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnicenboim/eeguana/HEAD/man/as_channel_dbl.Rd -------------------------------------------------------------------------------- /man/as_eeg_lst.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnicenboim/eeguana/HEAD/man/as_eeg_lst.Rd -------------------------------------------------------------------------------- /man/as_sample_int.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnicenboim/eeguana/HEAD/man/as_sample_int.Rd -------------------------------------------------------------------------------- /man/as_tibble.eeg_lst.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnicenboim/eeguana/HEAD/man/as_tibble.eeg_lst.Rd -------------------------------------------------------------------------------- /man/as_tibble.psd_lst.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnicenboim/eeguana/HEAD/man/as_tibble.psd_lst.Rd -------------------------------------------------------------------------------- /man/as_tidytable.eeg_lst.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnicenboim/eeguana/HEAD/man/as_tidytable.eeg_lst.Rd -------------------------------------------------------------------------------- /man/as_tidytable.psd_lst.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnicenboim/eeguana/HEAD/man/as_tidytable.psd_lst.Rd -------------------------------------------------------------------------------- /man/as_time.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnicenboim/eeguana/HEAD/man/as_time.Rd -------------------------------------------------------------------------------- /man/between.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnicenboim/eeguana/HEAD/man/between.Rd -------------------------------------------------------------------------------- /man/change_coord.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnicenboim/eeguana/HEAD/man/change_coord.Rd -------------------------------------------------------------------------------- /man/channel_dbl.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnicenboim/eeguana/HEAD/man/channel_dbl.Rd -------------------------------------------------------------------------------- /man/channels_tbl.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnicenboim/eeguana/HEAD/man/channels_tbl.Rd -------------------------------------------------------------------------------- /man/chs_fun.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnicenboim/eeguana/HEAD/man/chs_fun.Rd -------------------------------------------------------------------------------- /man/chs_mean.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnicenboim/eeguana/HEAD/man/chs_mean.Rd -------------------------------------------------------------------------------- /man/component_dbl.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnicenboim/eeguana/HEAD/man/component_dbl.Rd -------------------------------------------------------------------------------- /man/count_complete_cases_tbl.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnicenboim/eeguana/HEAD/man/count_complete_cases_tbl.Rd -------------------------------------------------------------------------------- /man/data_faces_10_trials.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnicenboim/eeguana/HEAD/man/data_faces_10_trials.Rd -------------------------------------------------------------------------------- /man/data_faces_ERPs.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnicenboim/eeguana/HEAD/man/data_faces_ERPs.Rd -------------------------------------------------------------------------------- /man/defunct.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnicenboim/eeguana/HEAD/man/defunct.Rd -------------------------------------------------------------------------------- /man/dplyr_verbs.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnicenboim/eeguana/HEAD/man/dplyr_verbs.Rd -------------------------------------------------------------------------------- /man/drop_incomplete_segments.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnicenboim/eeguana/HEAD/man/drop_incomplete_segments.Rd -------------------------------------------------------------------------------- /man/eeg_artif.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnicenboim/eeguana/HEAD/man/eeg_artif.Rd -------------------------------------------------------------------------------- /man/eeg_baseline.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnicenboim/eeguana/HEAD/man/eeg_baseline.Rd -------------------------------------------------------------------------------- /man/eeg_bind.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnicenboim/eeguana/HEAD/man/eeg_bind.Rd -------------------------------------------------------------------------------- /man/eeg_downsample.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnicenboim/eeguana/HEAD/man/eeg_downsample.Rd -------------------------------------------------------------------------------- /man/eeg_events_to_NA.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnicenboim/eeguana/HEAD/man/eeg_events_to_NA.Rd -------------------------------------------------------------------------------- /man/eeg_ica.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnicenboim/eeguana/HEAD/man/eeg_ica.Rd -------------------------------------------------------------------------------- /man/eeg_ica_cor_tbl.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnicenboim/eeguana/HEAD/man/eeg_ica_cor_tbl.Rd -------------------------------------------------------------------------------- /man/eeg_ica_keep.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnicenboim/eeguana/HEAD/man/eeg_ica_keep.Rd -------------------------------------------------------------------------------- /man/eeg_ica_show.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnicenboim/eeguana/HEAD/man/eeg_ica_show.Rd -------------------------------------------------------------------------------- /man/eeg_ica_summary_tbl.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnicenboim/eeguana/HEAD/man/eeg_ica_summary_tbl.Rd -------------------------------------------------------------------------------- /man/eeg_ica_var_tbl.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnicenboim/eeguana/HEAD/man/eeg_ica_var_tbl.Rd -------------------------------------------------------------------------------- /man/eeg_interpolate_tbl.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnicenboim/eeguana/HEAD/man/eeg_interpolate_tbl.Rd -------------------------------------------------------------------------------- /man/eeg_lst.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnicenboim/eeguana/HEAD/man/eeg_lst.Rd -------------------------------------------------------------------------------- /man/eeg_power_band.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnicenboim/eeguana/HEAD/man/eeg_power_band.Rd -------------------------------------------------------------------------------- /man/eeg_psd.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnicenboim/eeguana/HEAD/man/eeg_psd.Rd -------------------------------------------------------------------------------- /man/eeg_rereference.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnicenboim/eeguana/HEAD/man/eeg_rereference.Rd -------------------------------------------------------------------------------- /man/eeg_segment.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnicenboim/eeguana/HEAD/man/eeg_segment.Rd -------------------------------------------------------------------------------- /man/eeg_slice_signal.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnicenboim/eeguana/HEAD/man/eeg_slice_signal.Rd -------------------------------------------------------------------------------- /man/eeguana-package.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnicenboim/eeguana/HEAD/man/eeguana-package.Rd -------------------------------------------------------------------------------- /man/events_tbl.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnicenboim/eeguana/HEAD/man/events_tbl.Rd -------------------------------------------------------------------------------- /man/fICA.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnicenboim/eeguana/HEAD/man/fICA.Rd -------------------------------------------------------------------------------- /man/fast_ICA.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnicenboim/eeguana/HEAD/man/fast_ICA.Rd -------------------------------------------------------------------------------- /man/figures/README-plot-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnicenboim/eeguana/HEAD/man/figures/README-plot-1.png -------------------------------------------------------------------------------- /man/figures/README-topo-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnicenboim/eeguana/HEAD/man/figures/README-topo-1.png -------------------------------------------------------------------------------- /man/filt.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnicenboim/eeguana/HEAD/man/filt.Rd -------------------------------------------------------------------------------- /man/ggplot.eeg_lst.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnicenboim/eeguana/HEAD/man/ggplot.eeg_lst.Rd -------------------------------------------------------------------------------- /man/ica_matrix_lst.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnicenboim/eeguana/HEAD/man/ica_matrix_lst.Rd -------------------------------------------------------------------------------- /man/install_py_eeguana.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnicenboim/eeguana/HEAD/man/install_py_eeguana.Rd -------------------------------------------------------------------------------- /man/is_channel_dbl.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnicenboim/eeguana/HEAD/man/is_channel_dbl.Rd -------------------------------------------------------------------------------- /man/is_component_dbl.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnicenboim/eeguana/HEAD/man/is_component_dbl.Rd -------------------------------------------------------------------------------- /man/is_eeg_lst.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnicenboim/eeguana/HEAD/man/is_eeg_lst.Rd -------------------------------------------------------------------------------- /man/is_events_tbl.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnicenboim/eeguana/HEAD/man/is_events_tbl.Rd -------------------------------------------------------------------------------- /man/is_psd_lst.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnicenboim/eeguana/HEAD/man/is_psd_lst.Rd -------------------------------------------------------------------------------- /man/is_psd_tbl.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnicenboim/eeguana/HEAD/man/is_psd_tbl.Rd -------------------------------------------------------------------------------- /man/is_sample_int.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnicenboim/eeguana/HEAD/man/is_sample_int.Rd -------------------------------------------------------------------------------- /man/is_signal_tbl.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnicenboim/eeguana/HEAD/man/is_signal_tbl.Rd -------------------------------------------------------------------------------- /man/layout_32_1020.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnicenboim/eeguana/HEAD/man/layout_32_1020.Rd -------------------------------------------------------------------------------- /man/na_omit.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnicenboim/eeguana/HEAD/man/na_omit.Rd -------------------------------------------------------------------------------- /man/pipe.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnicenboim/eeguana/HEAD/man/pipe.Rd -------------------------------------------------------------------------------- /man/plot.eeg_lst.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnicenboim/eeguana/HEAD/man/plot.eeg_lst.Rd -------------------------------------------------------------------------------- /man/plot_components.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnicenboim/eeguana/HEAD/man/plot_components.Rd -------------------------------------------------------------------------------- /man/plot_in_layout.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnicenboim/eeguana/HEAD/man/plot_in_layout.Rd -------------------------------------------------------------------------------- /man/plot_topo.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnicenboim/eeguana/HEAD/man/plot_topo.Rd -------------------------------------------------------------------------------- /man/psd_lst.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnicenboim/eeguana/HEAD/man/psd_lst.Rd -------------------------------------------------------------------------------- /man/read_edf.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnicenboim/eeguana/HEAD/man/read_edf.Rd -------------------------------------------------------------------------------- /man/read_fif.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnicenboim/eeguana/HEAD/man/read_fif.Rd -------------------------------------------------------------------------------- /man/read_ft.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnicenboim/eeguana/HEAD/man/read_ft.Rd -------------------------------------------------------------------------------- /man/read_set.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnicenboim/eeguana/HEAD/man/read_set.Rd -------------------------------------------------------------------------------- /man/read_vhdr.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnicenboim/eeguana/HEAD/man/read_vhdr.Rd -------------------------------------------------------------------------------- /man/reexports.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnicenboim/eeguana/HEAD/man/reexports.Rd -------------------------------------------------------------------------------- /man/rpink.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnicenboim/eeguana/HEAD/man/rpink.Rd -------------------------------------------------------------------------------- /man/sample_int.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnicenboim/eeguana/HEAD/man/sample_int.Rd -------------------------------------------------------------------------------- /man/segments_tbl.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnicenboim/eeguana/HEAD/man/segments_tbl.Rd -------------------------------------------------------------------------------- /man/sig_fft.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnicenboim/eeguana/HEAD/man/sig_fft.Rd -------------------------------------------------------------------------------- /man/sig_ifft.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnicenboim/eeguana/HEAD/man/sig_ifft.Rd -------------------------------------------------------------------------------- /man/signal_tbl.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnicenboim/eeguana/HEAD/man/signal_tbl.Rd -------------------------------------------------------------------------------- /man/summaries.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnicenboim/eeguana/HEAD/man/summaries.Rd -------------------------------------------------------------------------------- /man/summary.eeg_lst.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnicenboim/eeguana/HEAD/man/summary.eeg_lst.Rd -------------------------------------------------------------------------------- /man/theme_eeguana.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnicenboim/eeguana/HEAD/man/theme_eeguana.Rd -------------------------------------------------------------------------------- /man/write_vhdr.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnicenboim/eeguana/HEAD/man/write_vhdr.Rd -------------------------------------------------------------------------------- /papers.bib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnicenboim/eeguana/HEAD/papers.bib -------------------------------------------------------------------------------- /pkgdown/favicon/apple-touch-icon-120x120.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnicenboim/eeguana/HEAD/pkgdown/favicon/apple-touch-icon-120x120.png -------------------------------------------------------------------------------- /pkgdown/favicon/apple-touch-icon-60x60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnicenboim/eeguana/HEAD/pkgdown/favicon/apple-touch-icon-60x60.png -------------------------------------------------------------------------------- /pkgdown/favicon/apple-touch-icon-76x76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnicenboim/eeguana/HEAD/pkgdown/favicon/apple-touch-icon-76x76.png -------------------------------------------------------------------------------- /pkgdown/favicon/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnicenboim/eeguana/HEAD/pkgdown/favicon/apple-touch-icon.png -------------------------------------------------------------------------------- /pkgdown/favicon/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnicenboim/eeguana/HEAD/pkgdown/favicon/favicon-16x16.png -------------------------------------------------------------------------------- /pkgdown/favicon/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnicenboim/eeguana/HEAD/pkgdown/favicon/favicon-32x32.png -------------------------------------------------------------------------------- /pkgdown/favicon/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnicenboim/eeguana/HEAD/pkgdown/favicon/favicon.ico -------------------------------------------------------------------------------- /tests/spelling.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnicenboim/eeguana/HEAD/tests/spelling.R -------------------------------------------------------------------------------- /tests/spelling.Rout.save: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnicenboim/eeguana/HEAD/tests/spelling.Rout.save -------------------------------------------------------------------------------- /tests/testthat.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnicenboim/eeguana/HEAD/tests/testthat.R -------------------------------------------------------------------------------- /tests/testthat/_snaps/01-reading.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnicenboim/eeguana/HEAD/tests/testthat/_snaps/01-reading.md -------------------------------------------------------------------------------- /tests/testthat/_snaps/02-ica.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnicenboim/eeguana/HEAD/tests/testthat/_snaps/02-ica.md -------------------------------------------------------------------------------- /tests/testthat/_snaps/10-summarizing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnicenboim/eeguana/HEAD/tests/testthat/_snaps/10-summarizing.md -------------------------------------------------------------------------------- /tests/testthat/_snaps/16-out_funs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnicenboim/eeguana/HEAD/tests/testthat/_snaps/16-out_funs.md -------------------------------------------------------------------------------- /tests/testthat/helper_funs.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnicenboim/eeguana/HEAD/tests/testthat/helper_funs.R -------------------------------------------------------------------------------- /tests/testthat/setup.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnicenboim/eeguana/HEAD/tests/testthat/setup.R -------------------------------------------------------------------------------- /tests/testthat/test_01-reading.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnicenboim/eeguana/HEAD/tests/testthat/test_01-reading.R -------------------------------------------------------------------------------- /tests/testthat/test_02-ica.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnicenboim/eeguana/HEAD/tests/testthat/test_02-ica.R -------------------------------------------------------------------------------- /tests/testthat/test_03-filt.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnicenboim/eeguana/HEAD/tests/testthat/test_03-filt.R -------------------------------------------------------------------------------- /tests/testthat/test_04-segmentation.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnicenboim/eeguana/HEAD/tests/testthat/test_04-segmentation.R -------------------------------------------------------------------------------- /tests/testthat/test_05-tv_01a-mutate.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnicenboim/eeguana/HEAD/tests/testthat/test_05-tv_01a-mutate.R -------------------------------------------------------------------------------- /tests/testthat/test_05-tv_01b-mutate.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnicenboim/eeguana/HEAD/tests/testthat/test_05-tv_01b-mutate.R -------------------------------------------------------------------------------- /tests/testthat/test_05-tv_02-filter.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnicenboim/eeguana/HEAD/tests/testthat/test_05-tv_02-filter.R -------------------------------------------------------------------------------- /tests/testthat/test_05-tv_03-joins.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnicenboim/eeguana/HEAD/tests/testthat/test_05-tv_03-joins.R -------------------------------------------------------------------------------- /tests/testthat/test_05-tv_04-summarize.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnicenboim/eeguana/HEAD/tests/testthat/test_05-tv_04-summarize.R -------------------------------------------------------------------------------- /tests/testthat/test_05-tv_05-group_by.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnicenboim/eeguana/HEAD/tests/testthat/test_05-tv_05-group_by.R -------------------------------------------------------------------------------- /tests/testthat/test_05-tv_06-bind.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnicenboim/eeguana/HEAD/tests/testthat/test_05-tv_06-bind.R -------------------------------------------------------------------------------- /tests/testthat/test_05-tv_07-select.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnicenboim/eeguana/HEAD/tests/testthat/test_05-tv_07-select.R -------------------------------------------------------------------------------- /tests/testthat/test_05-tv_08-rename.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnicenboim/eeguana/HEAD/tests/testthat/test_05-tv_08-rename.R -------------------------------------------------------------------------------- /tests/testthat/test_05-tv_09-atif.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnicenboim/eeguana/HEAD/tests/testthat/test_05-tv_09-atif.R -------------------------------------------------------------------------------- /tests/testthat/test_06-artifacts.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnicenboim/eeguana/HEAD/tests/testthat/test_06-artifacts.R -------------------------------------------------------------------------------- /tests/testthat/test_07-EEG-specialized.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnicenboim/eeguana/HEAD/tests/testthat/test_07-EEG-specialized.R -------------------------------------------------------------------------------- /tests/testthat/test_08-channels.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnicenboim/eeguana/HEAD/tests/testthat/test_08-channels.R -------------------------------------------------------------------------------- /tests/testthat/test_09-plots.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnicenboim/eeguana/HEAD/tests/testthat/test_09-plots.R -------------------------------------------------------------------------------- /tests/testthat/test_10-summarizing.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnicenboim/eeguana/HEAD/tests/testthat/test_10-summarizing.R -------------------------------------------------------------------------------- /tests/testthat/test_11-editing.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnicenboim/eeguana/HEAD/tests/testthat/test_11-editing.R -------------------------------------------------------------------------------- /tests/testthat/test_12-constr.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnicenboim/eeguana/HEAD/tests/testthat/test_12-constr.R -------------------------------------------------------------------------------- /tests/testthat/test_13-defunct.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnicenboim/eeguana/HEAD/tests/testthat/test_13-defunct.R -------------------------------------------------------------------------------- /tests/testthat/test_14-load.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnicenboim/eeguana/HEAD/tests/testthat/test_14-load.R -------------------------------------------------------------------------------- /tests/testthat/test_15-misc.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnicenboim/eeguana/HEAD/tests/testthat/test_15-misc.R -------------------------------------------------------------------------------- /tests/testthat/test_16-out_funs.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnicenboim/eeguana/HEAD/tests/testthat/test_16-out_funs.R -------------------------------------------------------------------------------- /tests/testthat/test_17-time.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnicenboim/eeguana/HEAD/tests/testthat/test_17-time.R -------------------------------------------------------------------------------- /tests/testthat/test_18-to_tbl.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnicenboim/eeguana/HEAD/tests/testthat/test_18-to_tbl.R -------------------------------------------------------------------------------- /tests/testthat/test_19-vs_python.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnicenboim/eeguana/HEAD/tests/testthat/test_19-vs_python.R -------------------------------------------------------------------------------- /tests/testthat/test_20-psd.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnicenboim/eeguana/HEAD/tests/testthat/test_20-psd.R -------------------------------------------------------------------------------- /vignettes/gotchas.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnicenboim/eeguana/HEAD/vignettes/gotchas.Rmd -------------------------------------------------------------------------------- /vignettes/intro.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnicenboim/eeguana/HEAD/vignettes/intro.Rmd -------------------------------------------------------------------------------- /vignettes/preprocessing_erp.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnicenboim/eeguana/HEAD/vignettes/preprocessing_erp.Rmd -------------------------------------------------------------------------------- /vignettes/psd.Rmd_: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnicenboim/eeguana/HEAD/vignettes/psd.Rmd_ -------------------------------------------------------------------------------- /vignettes/references.bib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnicenboim/eeguana/HEAD/vignettes/references.bib --------------------------------------------------------------------------------