Skip to content

Commit

Permalink
Update webpage
Browse files Browse the repository at this point in the history
  • Loading branch information
AlexLepauvre committed Aug 27, 2024
1 parent c16115d commit 1159507
Show file tree
Hide file tree
Showing 71 changed files with 7,306 additions and 0 deletions.
4 changes: 4 additions & 0 deletions build/.buildinfo
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
# Sphinx build info version 1
# This file hashes the configuration used when building these files. When it is not found, a full rebuild will be done.
config: 2a53bbdb8a34664ac86c2bb483c88ed9
tags: 645f666f9bcd5a90fca523b33c5a78b7
Binary file added build/.doctrees/colors.doctree
Binary file not shown.
Binary file added build/.doctrees/environment.pickle
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file added build/.doctrees/index.doctree
Binary file not shown.
Binary file added build/.doctrees/plotters.doctree
Binary file not shown.
Binary file added build/_images/templeton_logo.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
12 changes: 12 additions & 0 deletions build/_sources/colors.rst.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
Colors Module
=============

.. automodule:: cog_plot.colors
:members:
:undoc-members:
:show-inheritance:

.. autosummary::
:toctree: generated/

DEFAULT_COLORS
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
cog\_plot.colors.DEFAULT\_COLORS
================================

.. currentmodule:: cog_plot.colors

.. autodata:: DEFAULT_COLORS
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
cog\_plot.plotters.plot\_matrix
===============================

.. currentmodule:: cog_plot.plotters

.. autofunction:: plot_matrix
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
cog\_plot.plotters.plot\_rasters
================================

.. currentmodule:: cog_plot.plotters

.. autofunction:: plot_rasters
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
cog\_plot.plotters.plot\_time\_series
=====================================

.. currentmodule:: cog_plot.plotters

.. autofunction:: plot_time_series
68 changes: 68 additions & 0 deletions build/_sources/index.rst.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,68 @@
.. cog_plot documentation master file, created by
sphinx-quickstart on Tue Aug 27 11:10:27 2024.
You can adapt this file completely to your liking, but it should at least
contain the root `toctree` directive.
.. raw:: html

cog_plot
========

This repository contains a package called ``cog_plot`` containing functions to generate the default plot types used in the cogitate papers.

It can generate three types of plots:

- Time series plot with statistical significance (``plot_time_series``)
- Matrices with statistical significance, such as time-frequency decomposition or temporal generalization (``plot_matrix``)
- Single trial data using a raster plot and a time series plot of the evoked response (``plot_raster``)

Setup guide
===========

The package can be installed via pip, like so:

.. code-block:: bash
pip install https://github.com/Cogitate-consortium/cog_plot
Support
=======

This repository is meant mostly for internal use by the cogitate project. But if you find it useful, don't hesitate to contact us.

Questions?
==========

If you have any questions, feel free to open an issue or contact the maintainers ([email protected]).

Acknowledgments
===============

We would like to thank all the COGITATE consortium members:

.. raw:: html

<div style="display: flex; flex-wrap: wrap; justify-content: space-around;">
<div style="text-align: center;">
<a href="https://www.arc-cogitate.com/our-team" target="_blank">
<img src="./_static/IEEG DP Authors.png" alt="COGITATE team">
</a>
</div>
</div>

.. image:: ./_static/templeton_logo.png
:width: 200
:align: right

This research was supported by Templeton World Charity Foundation (`TWCF0389 <https://doi.org/10.54224/20389>`_) and the Max Planck Society. The opinions expressed in this publication are those of the authors and do not necessarily reflect the views of TWCF.

.. toctree::
:maxdepth: 2
:caption: Contents:

colors

plot_matrix <generated/cog_plot.plotters.plot_matrix>
plot_time_series <generated/cog_plot.plotters.plot_time_series>
plot_rasters <generated/cog_plot.plotters.plot_rasters>
14 changes: 14 additions & 0 deletions build/_sources/plotters.rst.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
Plotters Module
===============

.. automodule:: cog_plot.plotters
:members:
:undoc-members:
:show-inheritance:

.. autosummary::
:toctree: generated/

plot_time_series
plot_matrix
plot_rasters
Binary file added build/_static/IEEG DP Authors.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added build/_static/IEEG TEAM.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading

0 comments on commit 1159507

Please sign in to comment.