Skip to content

Commit

Permalink
build based on ca00f27
Browse files Browse the repository at this point in the history
  • Loading branch information
Documenter.jl committed Nov 16, 2023
1 parent 4f08677 commit 6811cb0
Show file tree
Hide file tree
Showing 27 changed files with 71 additions and 59 deletions.
2 changes: 1 addition & 1 deletion dev/.documenter-siteinfo.json
Original file line number Diff line number Diff line change
@@ -1 +1 @@
{"documenter":{"julia_version":"1.9.3","generation_timestamp":"2023-11-14T16:28:28","documenter_version":"1.1.2"}}
{"documenter":{"julia_version":"1.9.4","generation_timestamp":"2023-11-16T18:52:23","documenter_version":"1.1.2"}}
20 changes: 10 additions & 10 deletions dev/api/index.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dev/generated/reference/positions/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -39,4 +39,4 @@
f = Figure(resolution=(600,300))
scatter(f[1,1],pos3d[1:2,:])
scatter(f[1,2],pos2)
f</code></pre><img src="a31d64a3.png" alt="Example block output"/><p>as one can see, the &quot;naive&quot; transform of just dropping the third dimension doesnt really work (left). We rather have to project the chanels to a sphere and unfold it (right)</p><hr/><p><em>This page was generated using <a href="https://github.com/fredrikekre/Literate.jl">Literate.jl</a>.</em></p></article><nav class="docs-footer"><a class="docs-footer-prevpage" href="../../../how_to/show_oob_labels/">« Show out of Bounds Label</a><a class="docs-footer-nextpage" href="../../../api/">API »</a><div class="flexbox-break"></div><p class="footer-message">Powered by <a href="https://github.com/JuliaDocs/Documenter.jl">Documenter.jl</a> and the <a href="https://julialang.org/">Julia Programming Language</a>.</p></nav></div><div class="modal" id="documenter-settings"><div class="modal-background"></div><div class="modal-card"><header class="modal-card-head"><p class="modal-card-title">Settings</p><button class="delete"></button></header><section class="modal-card-body"><p><label class="label">Theme</label><div class="select"><select id="documenter-themepicker"><option value="documenter-light">documenter-light</option><option value="documenter-dark">documenter-dark</option><option value="auto">Automatic (OS)</option></select></div></p><hr/><p>This document was generated with <a href="https://github.com/JuliaDocs/Documenter.jl">Documenter.jl</a> version 1.1.2 on <span class="colophon-date" title="Tuesday 14 November 2023 16:28">Tuesday 14 November 2023</span>. Using Julia version 1.9.3.</p></section><footer class="modal-card-foot"></footer></div></div></div></body></html>
f</code></pre><img src="a31d64a3.png" alt="Example block output"/><p>as one can see, the &quot;naive&quot; transform of just dropping the third dimension doesnt really work (left). We rather have to project the chanels to a sphere and unfold it (right)</p><hr/><p><em>This page was generated using <a href="https://github.com/fredrikekre/Literate.jl">Literate.jl</a>.</em></p></article><nav class="docs-footer"><a class="docs-footer-prevpage" href="../../../how_to/show_oob_labels/">« Show out of Bounds Label</a><a class="docs-footer-nextpage" href="../../../api/">API »</a><div class="flexbox-break"></div><p class="footer-message">Powered by <a href="https://github.com/JuliaDocs/Documenter.jl">Documenter.jl</a> and the <a href="https://julialang.org/">Julia Programming Language</a>.</p></nav></div><div class="modal" id="documenter-settings"><div class="modal-background"></div><div class="modal-card"><header class="modal-card-head"><p class="modal-card-title">Settings</p><button class="delete"></button></header><section class="modal-card-body"><p><label class="label">Theme</label><div class="select"><select id="documenter-themepicker"><option value="documenter-light">documenter-light</option><option value="documenter-dark">documenter-dark</option><option value="auto">Automatic (OS)</option></select></div></p><hr/><p>This document was generated with <a href="https://github.com/JuliaDocs/Documenter.jl">Documenter.jl</a> version 1.1.2 on <span class="colophon-date" title="Thursday 16 November 2023 18:52">Thursday 16 November 2023</span>. Using Julia version 1.9.4.</p></section><footer class="modal-card-foot"></footer></div></div></div></body></html>
12 changes: 6 additions & 6 deletions dev/generated/tutorials/circTopo/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -7,18 +7,18 @@
dat = data[:, 240, 1]
df = DataFrame(
:estimate =&gt; eachcol(Float64.(data[:, 100:40:300, 1])),
:circularVariable =&gt; [0, 50, 80, 120, 180, 210],
:circular_variable =&gt; [0, 50, 80, 120, 180, 210],
:time =&gt; 100:40:300,
)
df = flatten(df, :estimate);</code></pre><h1 id="Our-first-plot!"><a class="docs-heading-anchor" href="#Our-first-plot!">Our first plot!</a><a id="Our-first-plot!-1"></a><a class="docs-heading-anchor-permalink" href="#Our-first-plot!" title="Permalink"></a></h1><p>note how the plots are at the angles of circularVariable`</p><pre><code class="language-julia hljs">plot_circulareegtopoplot(
df = flatten(df, :estimate);</code></pre><h1 id="Our-first-plot!"><a class="docs-heading-anchor" href="#Our-first-plot!">Our first plot!</a><a id="Our-first-plot!-1"></a><a class="docs-heading-anchor-permalink" href="#Our-first-plot!" title="Permalink"></a></h1><p>note how the plots are at the angles of circular_variable`</p><pre><code class="language-julia hljs">plot_circulareegtopoplot(
df;
positions = pos,
axis = (; label = &quot;Sac Incoming&quot;),
predictor = :circularVariable,
axis = (; label = &quot;Incoming saccade&quot;),
predictor = :circular_variable,
)</code></pre><img src="372ce532.png" alt="Example block output"/><p>In case the bounding variable is not between 0 and 360, as here we use actually time, we have to specify it. e.g.</p><pre><code class="language-julia hljs">plot_circulareegtopoplot(
df;
positions = pos,
axis = (; label = &quot;Time?!&quot;),
predictor = :time,
predictorBounds = [80, 320],
)</code></pre><img src="5b95213d.png" alt="Example block output"/><hr/><p><em>This page was generated using <a href="https://github.com/fredrikekre/Literate.jl">Literate.jl</a>.</em></p></article><nav class="docs-footer"><a class="docs-footer-prevpage" href="../../../tutorials/topoplotseries/">« Topo Plot Series</a><a class="docs-footer-nextpage" href="../../../how_to/position2color/">Butterfly Colormap »</a><div class="flexbox-break"></div><p class="footer-message">Powered by <a href="https://github.com/JuliaDocs/Documenter.jl">Documenter.jl</a> and the <a href="https://julialang.org/">Julia Programming Language</a>.</p></nav></div><div class="modal" id="documenter-settings"><div class="modal-background"></div><div class="modal-card"><header class="modal-card-head"><p class="modal-card-title">Settings</p><button class="delete"></button></header><section class="modal-card-body"><p><label class="label">Theme</label><div class="select"><select id="documenter-themepicker"><option value="documenter-light">documenter-light</option><option value="documenter-dark">documenter-dark</option><option value="auto">Automatic (OS)</option></select></div></p><hr/><p>This document was generated with <a href="https://github.com/JuliaDocs/Documenter.jl">Documenter.jl</a> version 1.1.2 on <span class="colophon-date" title="Tuesday 14 November 2023 16:28">Tuesday 14 November 2023</span>. Using Julia version 1.9.3.</p></section><footer class="modal-card-foot"></footer></div></div></div></body></html>
predictor_bounds = [80, 320],
)</code></pre><img src="5b95213d.png" alt="Example block output"/><hr/><p><em>This page was generated using <a href="https://github.com/fredrikekre/Literate.jl">Literate.jl</a>.</em></p></article><nav class="docs-footer"><a class="docs-footer-prevpage" href="../../../tutorials/topoplotseries/">« Topo Plot Series</a><a class="docs-footer-nextpage" href="../../../how_to/position2color/">Butterfly Colormap »</a><div class="flexbox-break"></div><p class="footer-message">Powered by <a href="https://github.com/JuliaDocs/Documenter.jl">Documenter.jl</a> and the <a href="https://julialang.org/">Julia Programming Language</a>.</p></nav></div><div class="modal" id="documenter-settings"><div class="modal-background"></div><div class="modal-card"><header class="modal-card-head"><p class="modal-card-title">Settings</p><button class="delete"></button></header><section class="modal-card-body"><p><label class="label">Theme</label><div class="select"><select id="documenter-themepicker"><option value="documenter-light">documenter-light</option><option value="documenter-dark">documenter-dark</option><option value="auto">Automatic (OS)</option></select></div></p><hr/><p>This document was generated with <a href="https://github.com/JuliaDocs/Documenter.jl">Documenter.jl</a> version 1.1.2 on <span class="colophon-date" title="Thursday 16 November 2023 18:52">Thursday 16 November 2023</span>. Using Julia version 1.9.4.</p></section><footer class="modal-card-foot"></footer></div></div></div></body></html>
Loading

0 comments on commit 6811cb0

Please sign in to comment.