Skip to content

Commit

Permalink
deploy: adf5c01
Browse files Browse the repository at this point in the history
  • Loading branch information
DominiqueMakowski committed Jan 17, 2024
1 parent ad5b43e commit 928100f
Show file tree
Hide file tree
Showing 113 changed files with 320 additions and 323 deletions.
Binary file modified .doctrees/environment.pickle
Binary file not shown.
Binary file modified .doctrees/examples/bio_custom/bio_custom.doctree
Binary file not shown.
Binary file modified .doctrees/examples/bio_eventrelated/bio_eventrelated.doctree
Binary file not shown.
Binary file not shown.
Binary file modified .doctrees/examples/ecg_heartbeats/ecg_heartbeats.doctree
Binary file not shown.
Binary file modified .doctrees/examples/eda_peaks/eda_peaks.doctree
Binary file not shown.
Binary file modified .doctrees/examples/eeg_microstates/eeg_microstates.doctree
Binary file not shown.
Binary file modified .doctrees/examples/eeg_power/eeg_power.doctree
Binary file not shown.
Binary file modified .doctrees/examples/eog_analyze/eog_analyze.doctree
Binary file not shown.
Binary file modified .doctrees/examples/misc_epochs_create/misc_epochs_create.doctree
Binary file not shown.
Binary file modified .doctrees/examples/misc_fit_function/misc_fit_function.doctree
Binary file not shown.
Binary file modified .doctrees/examples/signal_simulation/signal_simulation.doctree
Binary file not shown.
Binary file modified .doctrees/functions/benchmark.doctree
Binary file not shown.
Binary file modified .doctrees/functions/bio.doctree
Binary file not shown.
Binary file modified .doctrees/functions/complexity.doctree
Binary file not shown.
Binary file modified .doctrees/functions/ecg.doctree
Binary file not shown.
Binary file modified .doctrees/functions/eda.doctree
Binary file not shown.
Binary file modified .doctrees/functions/emg.doctree
Binary file not shown.
Binary file modified .doctrees/functions/markov.doctree
Binary file not shown.
Binary file modified .doctrees/functions/misc.doctree
Binary file not shown.
Binary file modified .doctrees/functions/ppg.doctree
Binary file not shown.
Binary file modified .doctrees/functions/rsp.doctree
Binary file not shown.
Binary file modified .doctrees/functions/signal.doctree
Binary file not shown.
Binary file modified .doctrees/functions/stats.doctree
Binary file not shown.
Binary file modified .doctrees/studies/complexity_eeg.doctree
Binary file not shown.
Binary file modified .doctrees/studies/ecg_benchmark.doctree
Binary file not shown.
Binary file modified .doctrees/studies/eog_blinktemplate.doctree
Binary file not shown.
Binary file modified .doctrees/studies/erp_gam.doctree
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Diff not rendered.
Diff not rendered.
Diff not rendered.
Diff not rendered.
Diff not rendered.
Diff not rendered.
Diff not rendered.
Diff not rendered.
Diff not rendered.
Diff not rendered.
Diff not rendered.
Diff not rendered.
Diff not rendered.
Diff not rendered.
Diff not rendered.
Diff not rendered.
Diff not rendered.
Diff not rendered.
2 changes: 1 addition & 1 deletion _modules/neurokit2/ecg/ecg_findpeaks.html
Original file line number Diff line number Diff line change
Expand Up @@ -1459,7 +1459,7 @@ <h1>Source code for neurokit2.ecg.ecg_findpeaks</h1><div class="highlight"><pre>

<span class="sd"> &quot;&quot;&quot;</span>

<span class="n">N</span> <span class="o">=</span> <span class="nb">int</span><span class="p">(</span><span class="n">np</span><span class="o">.</span><span class="n">round</span><span class="p">(</span><span class="mi">3</span> <span class="o">*</span> <span class="n">sampling_rate</span> <span class="o">/</span> <span class="mi">128</span><span class="p">))</span>
<span class="n">N</span> <span class="o">=</span> <span class="nb">int</span><span class="p">(</span><span class="n">np</span><span class="o">.</span><span class="n">clip</span><span class="p">(</span><span class="n">np</span><span class="o">.</span><span class="n">round</span><span class="p">(</span><span class="mi">3</span> <span class="o">*</span> <span class="n">sampling_rate</span> <span class="o">/</span> <span class="mi">128</span><span class="p">),</span> <span class="mi">2</span><span class="p">,</span> <span class="kc">None</span><span class="p">))</span>
<span class="n">Nd</span> <span class="o">=</span> <span class="n">N</span> <span class="o">-</span> <span class="mi">1</span>
<span class="n">Pth</span> <span class="o">=</span> <span class="p">(</span><span class="mf">0.7</span> <span class="o">*</span> <span class="n">sampling_rate</span><span class="p">)</span> <span class="o">/</span> <span class="mi">128</span> <span class="o">+</span> <span class="mf">2.7</span>
<span class="c1"># Pth = 3, optimal for fs = 250 Hz</span>
Expand Down
11 changes: 3 additions & 8 deletions examples/bio_custom/bio_custom.html
Original file line number Diff line number Diff line change
Expand Up @@ -470,11 +470,6 @@ <h1>Customize your Processing Pipeline<a class="headerlink" href="#customize-you
</pre></div>
</div>
</div>
<div class="cell_output docutils container">
<div class="output stderr highlight-myst-ansi notranslate"><div class="highlight"><pre><span></span>Matplotlib is building the font cache; this may take a moment.
</pre></div>
</div>
</div>
</div>
<div class="cell tag_remove-input docutils container">
</div>
Expand All @@ -496,7 +491,7 @@ <h2>The Default NeuroKit processing pipeline<a class="headerlink" href="#the-def
</div>
</div>
<div class="cell_output docutils container">
<img alt="../../_images/2bae3324b11cd7717bffd5e95a4ebfed34dea72b030a764ef734a0f6b263a23d.png" src="../../_images/2bae3324b11cd7717bffd5e95a4ebfed34dea72b030a764ef734a0f6b263a23d.png" />
<img alt="../../_images/720ad2b09c2c9ff5ce0fc760248cbcbc4be075eb69793bad289960d83263d63a.png" src="../../_images/720ad2b09c2c9ff5ce0fc760248cbcbc4be075eb69793bad289960d83263d63a.png" />
</div>
</div>
</section>
Expand Down Expand Up @@ -544,7 +539,7 @@ <h2>Building your own <code class="docutils literal notranslate"><span class="pr
</div>
</div>
<div class="cell_output docutils container">
<img alt="../../_images/c57908f4c23db7a0d5018f801edfb623a4914d1541213a5fe8ac07262bdba1b3.png" src="../../_images/c57908f4c23db7a0d5018f801edfb623a4914d1541213a5fe8ac07262bdba1b3.png" />
<img alt="../../_images/b2aa7d5b410d74c46c19b03ad052980fef585aca7ce75cdf8e8cbdd9ebac170a.png" src="../../_images/b2aa7d5b410d74c46c19b03ad052980fef585aca7ce75cdf8e8cbdd9ebac170a.png" />
</div>
</div>
</section>
Expand Down Expand Up @@ -636,7 +631,7 @@ <h2>Customize even more!<a class="headerlink" href="#customize-even-more" title=
</div>
</div>
<div class="cell_output docutils container">
<img alt="../../_images/dbddca2ff2cf24daf3826fc4d33787a6f627f85b2046225a55293745ff80f2bb.png" src="../../_images/dbddca2ff2cf24daf3826fc4d33787a6f627f85b2046225a55293745ff80f2bb.png" />
<img alt="../../_images/8d78f4f875b91f6dfc46ff277cbf467de0ca4140663347d8310a92c88c0943e3.png" src="../../_images/8d78f4f875b91f6dfc46ff277cbf467de0ca4140663347d8310a92c88c0943e3.png" />
</div>
</div>
<p>This doesn’t look bad :) <strong>Can you do better?</strong></p>
Expand Down
8 changes: 4 additions & 4 deletions examples/bio_eventrelated/bio_eventrelated.html
Original file line number Diff line number Diff line change
Expand Up @@ -531,7 +531,7 @@ <h2>Find Events<a class="headerlink" href="#find-events" title="Link to this hea
</div>
</div>
<div class="cell_output docutils container">
<img alt="../../_images/450b0e4d0b00e86717a92ba07d6b180086362816bbdfd99e50b0cd2727c0e744.png" src="../../_images/450b0e4d0b00e86717a92ba07d6b180086362816bbdfd99e50b0cd2727c0e744.png" />
<img alt="../../_images/df57bdfe0afebe9830ec349658364f12131bb795f796aafae66a55faebeb9504.png" src="../../_images/df57bdfe0afebe9830ec349658364f12131bb795f796aafae66a55faebeb9504.png" />
</div>
</div>
<p>The output of <a class="reference external" href="https://neuropsychology.github.io/NeuroKit/functions/functions_events.html#events-plot">events_plot()</a> shows the corresponding events in the signal, with the blue dashed line representing a Negative event and red dashed line representing a Neutral event.</p>
Expand Down Expand Up @@ -642,11 +642,11 @@ <h2>Manually Extract Event Related Features<a class="headerlink" href="#manually
</div>
</div>
<div class="cell_output docutils container">
<div class="output stderr highlight-myst-ansi notranslate"><div class="highlight"><pre><span></span>C:\Users\runneradmin\AppData\Local\Temp\ipykernel_5724\4246861920.py:12: FutureWarning: The behavior of obj[i:j] with a float-dtype index is deprecated. In a future version, this will be treated as positional instead of label-based. For label-based slicing, use obj.loc[i:j] instead
<div class="output stderr highlight-myst-ansi notranslate"><div class="highlight"><pre><span></span>C:\Users\runneradmin\AppData\Local\Temp\ipykernel_7492\4246861920.py:12: FutureWarning: The behavior of obj[i:j] with a float-dtype index is deprecated. In a future version, this will be treated as positional instead of label-based. For label-based slicing, use obj.loc[i:j] instead
ecg_mean = epoch[&quot;ECG_Rate&quot;][0:4].mean() # Mean heart rate in the 0-4 seconds
C:\Users\runneradmin\AppData\Local\Temp\ipykernel_5724\4246861920.py:18: FutureWarning: The behavior of obj[i:j] with a float-dtype index is deprecated. In a future version, this will be treated as positional instead of label-based. For label-based slicing, use obj.loc[i:j] instead
C:\Users\runneradmin\AppData\Local\Temp\ipykernel_7492\4246861920.py:18: FutureWarning: The behavior of obj[i:j] with a float-dtype index is deprecated. In a future version, this will be treated as positional instead of label-based. For label-based slicing, use obj.loc[i:j] instead
rsp_rate = epoch[&quot;RSP_Rate&quot;][0:6].mean() # Longer window for RSP that has a slower dynamic
C:\Users\runneradmin\AppData\Local\Temp\ipykernel_5724\4246861920.py:24: FutureWarning: The behavior of obj[i:j] with a float-dtype index is deprecated. In a future version, this will be treated as positional instead of label-based. For label-based slicing, use obj.loc[i:j] instead
C:\Users\runneradmin\AppData\Local\Temp\ipykernel_7492\4246861920.py:24: FutureWarning: The behavior of obj[i:j] with a float-dtype index is deprecated. In a future version, this will be treated as positional instead of label-based. For label-based slicing, use obj.loc[i:j] instead
scr_max = epoch[&quot;SCR_Amplitude&quot;][0:6].max() # Maximum SCR peak
</pre></div>
</div>
Expand Down
4 changes: 2 additions & 2 deletions examples/ecg_generate_12leads/ecg_generate_12leads.html
Original file line number Diff line number Diff line change
Expand Up @@ -482,7 +482,7 @@ <h2>Normal Multi-lead ECG<a class="headerlink" href="#normal-multi-lead-ecg" tit
</div>
</div>
<div class="cell_output docutils container">
<img alt="../../_images/46ef9a75e269dc03f2f65488e697bcc4782879714818ef37f7cb172da33d1cf2.png" src="../../_images/46ef9a75e269dc03f2f65488e697bcc4782879714818ef37f7cb172da33d1cf2.png" />
<img alt="../../_images/575a759596596d7831c8088c79b537c442c17766be8a28d81beeacce1d0bd8ab.png" src="../../_images/575a759596596d7831c8088c79b537c442c17766be8a28d81beeacce1d0bd8ab.png" />
</div>
</div>
</section>
Expand Down Expand Up @@ -514,7 +514,7 @@ <h2>Abnormal Multi-lead ECG<a class="headerlink" href="#abnormal-multi-lead-ecg"
</div>
</div>
<div class="cell_output docutils container">
<img alt="../../_images/3c4965944e2e930efc40d987452e8527d0b2d646b5309dcee8b29e200ece9596.png" src="../../_images/3c4965944e2e930efc40d987452e8527d0b2d646b5309dcee8b29e200ece9596.png" />
<img alt="../../_images/727af5f2ce5dff316c477be81eb266f70762bc7f0574c6c43bc2eeb914204373.png" src="../../_images/727af5f2ce5dff316c477be81eb266f70762bc7f0574c6c43bc2eeb914204373.png" />
</div>
</div>
</section>
Expand Down
Loading

0 comments on commit 928100f

Please sign in to comment.