Skip to content

Commit

Permalink
Brief 4
Browse files Browse the repository at this point in the history
  • Loading branch information
KEichenseer committed Sep 1, 2023
1 parent 640d000 commit e102f4c
Show file tree
Hide file tree
Showing 9 changed files with 100 additions and 40 deletions.
39 changes: 33 additions & 6 deletions docs/hackathon.html
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en"><head>

<meta charset="utf-8">
<meta name="generator" content="quarto-1.3.433">
<meta name="generator" content="quarto-1.3.353">

<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=yes">

Expand Down Expand Up @@ -56,8 +56,7 @@
"search-more-matches-text": "more matches in this document",
"search-clear-button-title": "Clear",
"search-detached-cancel-button-title": "Cancel",
"search-submit-button-title": "Submit",
"search-label": "Search"
"search-submit-button-title": "Submit"
}
}</script>

Expand All @@ -82,7 +81,7 @@
<nav class="quarto-page-breadcrumbs" aria-label="breadcrumb"><ol class="breadcrumb"><li class="breadcrumb-item"><a href="./hackathon.html">Day 2: Hackathon</a></li></ol></nav>
<a class="flex-grow-1" role="button" data-bs-toggle="collapse" data-bs-target="#quarto-sidebar,#quarto-sidebar-glass" aria-controls="quarto-sidebar" aria-expanded="false" aria-label="Toggle sidebar navigation" onclick="if (window.quartoToggleHeadroom) { window.quartoToggleHeadroom(); }">
</a>
<button type="button" class="btn quarto-search-button" aria-label="" onclick="window.quartoOpenSearch();">
<button type="button" class="btn quarto-search-button" aria-label="Search" onclick="window.quartoOpenSearch();">
<i class="bi bi-search"></i>
</button>
</div>
Expand All @@ -97,8 +96,8 @@
<img src="./images/logo.png" alt="" class="sidebar-logo py-0 d-lg-inline d-none">
</a>
<div class="sidebar-tools-main tools-wide">
<a href="https://github.com/palaeoverse-community" rel="" title="GitHub organization" class="quarto-navigation-tool px-1" aria-label="GitHub organization"><i class="bi bi-github"></i></a>
<a href="https://twitter.com/ThePalaeoverse" rel="" title="Twitter" class="quarto-navigation-tool px-1" aria-label="Twitter"><i class="bi bi-twitter"></i></a>
<a href="https://github.com/palaeoverse-community" title="GitHub organization" class="quarto-navigation-tool px-1" aria-label="GitHub organization"><i class="bi bi-github"></i></a>
<a href="https://twitter.com/ThePalaeoverse" title="Twitter" class="quarto-navigation-tool px-1" aria-label="Twitter"><i class="bi bi-twitter"></i></a>
<a href="" class="quarto-color-scheme-toggle quarto-navigation-tool px-1" onclick="window.quartoToggleColorScheme(); return false;" title="Toggle dark mode"><i class="bi"></i></a>
</div>
</div>
Expand Down Expand Up @@ -234,6 +233,12 @@ <h2 id="toc-title">On this page</h2>
<li><a href="#objective-2" id="toc-objective-2" class="nav-link" data-scroll-target="#objective-2">Objective</a></li>
<li><a href="#starting-points-to-consider-2" id="toc-starting-points-to-consider-2" class="nav-link" data-scroll-target="#starting-points-to-consider-2">Starting points to consider</a></li>
</ul></li>
<li><a href="#brief-4-stack_plot" id="toc-brief-4-stack_plot" class="nav-link" data-scroll-target="#brief-4-stack_plot">Brief 4: stack_plot</a>
<ul class="collapse">
<li><a href="#context-3" id="toc-context-3" class="nav-link" data-scroll-target="#context-3">Context</a></li>
<li><a href="#objective-3" id="toc-objective-3" class="nav-link" data-scroll-target="#objective-3">Objective</a></li>
<li><a href="#starting-points-to-consider-3" id="toc-starting-points-to-consider-3" class="nav-link" data-scroll-target="#starting-points-to-consider-3">Starting points to consider</a></li>
</ul></li>
</ul></li>
</ul>
<div class="toc-actions"><div><i class="bi bi-github"></i></div><div class="action-links"><p><a href="https://github.com/palaeoverse-community/hackathon/edit/main/hackathon.qmd" class="toc-action">Edit this page</a></p><p><a href="https://github.com/palaeoverse-community/hackathon/issues/new" class="toc-action">Report an issue</a></p></div></div></nav>
Expand Down Expand Up @@ -324,6 +329,28 @@ <h3 class="anchored" data-anchor-id="starting-points-to-consider-2">Starting poi
<li>What is a useful output format to use the abundances for further analysis, for example with the <code>vegan</code> package?</li>
<li>How should data sets be handled that contain occurrences from different time intervals?</li>
</ul>
</section>
</section>
<section id="brief-4-stack_plot" class="level2">
<h2 class="anchored" data-anchor-id="brief-4-stack_plot">Brief 4: stack_plot</h2>
<section id="context-3" class="level3">
<h3 class="anchored" data-anchor-id="context-3">Context</h3>
<p>Visualising abundances, diversities or other metrics through time can be a challenge when showing several different groups in the same plot. Stacked area plots allow for a quick visual assessment of changing patterns.</p>
</section>
<section id="objective-3" class="level3">
<h3 class="anchored" data-anchor-id="objective-3">Objective</h3>
<ul>
<li>Develop a function (e.g.&nbsp;<code>stack_plot</code>) which plots a metric like abundance for different groups, stacked on top of each other</li>
</ul>
</section>
<section id="starting-points-to-consider-3" class="level3">
<h3 class="anchored" data-anchor-id="starting-points-to-consider-3">Starting points to consider</h3>
<ul>
<li>What input data does the function expect?</li>
<li>How does the function handle relative (summing to 1) and absolute metrics, and where can the legend be placed in either case?</li>
<li>What defines the order in which different groups are stacked?</li>
<li>What colour schemes could be used, and how should the colours be ordered for optimal visibility?</li>
</ul>


</section>
Expand Down
11 changes: 5 additions & 6 deletions docs/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en"><head>

<meta charset="utf-8">
<meta name="generator" content="quarto-1.3.433">
<meta name="generator" content="quarto-1.3.353">

<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=yes">

Expand Down Expand Up @@ -90,8 +90,7 @@
"search-more-matches-text": "more matches in this document",
"search-clear-button-title": "Clear",
"search-detached-cancel-button-title": "Cancel",
"search-submit-button-title": "Submit",
"search-label": "Search"
"search-submit-button-title": "Submit"
}
}</script>

Expand Down Expand Up @@ -122,7 +121,7 @@
<nav class="quarto-page-breadcrumbs" aria-label="breadcrumb"><ol class="breadcrumb"><li class="breadcrumb-item"><a href="./index.html">Overview</a></li></ol></nav>
<a class="flex-grow-1" role="button" data-bs-toggle="collapse" data-bs-target="#quarto-sidebar,#quarto-sidebar-glass" aria-controls="quarto-sidebar" aria-expanded="false" aria-label="Toggle sidebar navigation" onclick="if (window.quartoToggleHeadroom) { window.quartoToggleHeadroom(); }">
</a>
<button type="button" class="btn quarto-search-button" aria-label="" onclick="window.quartoOpenSearch();">
<button type="button" class="btn quarto-search-button" aria-label="Search" onclick="window.quartoOpenSearch();">
<i class="bi bi-search"></i>
</button>
</div>
Expand All @@ -137,8 +136,8 @@
<img src="./images/logo.png" alt="" class="sidebar-logo py-0 d-lg-inline d-none">
</a>
<div class="sidebar-tools-main tools-wide">
<a href="https://github.com/palaeoverse-community" rel="" title="GitHub organization" class="quarto-navigation-tool px-1" aria-label="GitHub organization"><i class="bi bi-github"></i></a>
<a href="https://twitter.com/ThePalaeoverse" rel="" title="Twitter" class="quarto-navigation-tool px-1" aria-label="Twitter"><i class="bi bi-twitter"></i></a>
<a href="https://github.com/palaeoverse-community" title="GitHub organization" class="quarto-navigation-tool px-1" aria-label="GitHub organization"><i class="bi bi-github"></i></a>
<a href="https://twitter.com/ThePalaeoverse" title="Twitter" class="quarto-navigation-tool px-1" aria-label="Twitter"><i class="bi bi-twitter"></i></a>
<a href="" class="quarto-color-scheme-toggle quarto-navigation-tool px-1" onclick="window.quartoToggleColorScheme(); return false;" title="Toggle dark mode"><i class="bi"></i></a>
</div>
</div>
Expand Down
30 changes: 20 additions & 10 deletions docs/resources.html
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en"><head>

<meta charset="utf-8">
<meta name="generator" content="quarto-1.3.433">
<meta name="generator" content="quarto-1.3.353">

<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=yes">

Expand Down Expand Up @@ -56,18 +56,23 @@
"search-more-matches-text": "more matches in this document",
"search-clear-button-title": "Clear",
"search-detached-cancel-button-title": "Cancel",
"search-submit-button-title": "Submit",
"search-label": "Search"
"search-submit-button-title": "Submit"
}
}</script>


<meta property="og:title" content="R for Palaeobiologists - Resources">
<meta property="og:description" content="">
<meta property="og:image" content="https://hackathon.palaeoverse.org/images/logo.png">
<meta property="og:site-name" content="R for Palaeobiologists">
<meta property="og:image:height" content="1062">
<meta property="og:image:width" content="920">
<meta name="twitter:title" content="R for Palaeobiologists - Resources">
<meta name="twitter:description" content="">
<meta name="twitter:card" content="summary">
<meta name="twitter:image" content="https://hackathon.palaeoverse.org/images/logo.png">
<meta name="twitter:image-height" content="1062">
<meta name="twitter:image-width" content="920">
<meta name="twitter:card" content="summary_large_image">
</head>

<body class="nav-sidebar docked">
Expand All @@ -82,7 +87,7 @@
<nav class="quarto-page-breadcrumbs" aria-label="breadcrumb"><ol class="breadcrumb"><li class="breadcrumb-item"><a href="./acquisition.html">Day 1: Workshop</a></li><li class="breadcrumb-item"><a href="./resources.html">Resources</a></li></ol></nav>
<a class="flex-grow-1" role="button" data-bs-toggle="collapse" data-bs-target="#quarto-sidebar,#quarto-sidebar-glass" aria-controls="quarto-sidebar" aria-expanded="false" aria-label="Toggle sidebar navigation" onclick="if (window.quartoToggleHeadroom) { window.quartoToggleHeadroom(); }">
</a>
<button type="button" class="btn quarto-search-button" aria-label="" onclick="window.quartoOpenSearch();">
<button type="button" class="btn quarto-search-button" aria-label="Search" onclick="window.quartoOpenSearch();">
<i class="bi bi-search"></i>
</button>
</div>
Expand All @@ -97,8 +102,8 @@
<img src="./images/logo.png" alt="" class="sidebar-logo py-0 d-lg-inline d-none">
</a>
<div class="sidebar-tools-main tools-wide">
<a href="https://github.com/palaeoverse-community" rel="" title="GitHub organization" class="quarto-navigation-tool px-1" aria-label="GitHub organization"><i class="bi bi-github"></i></a>
<a href="https://twitter.com/ThePalaeoverse" rel="" title="Twitter" class="quarto-navigation-tool px-1" aria-label="Twitter"><i class="bi bi-twitter"></i></a>
<a href="https://github.com/palaeoverse-community" title="GitHub organization" class="quarto-navigation-tool px-1" aria-label="GitHub organization"><i class="bi bi-github"></i></a>
<a href="https://twitter.com/ThePalaeoverse" title="Twitter" class="quarto-navigation-tool px-1" aria-label="Twitter"><i class="bi bi-twitter"></i></a>
<a href="" class="quarto-color-scheme-toggle quarto-navigation-tool px-1" onclick="window.quartoToggleColorScheme(); return false;" title="Toggle dark mode"><i class="bi"></i></a>
</div>
</div>
Expand Down Expand Up @@ -215,7 +220,7 @@ <h2 id="toc-title">On this page</h2>

<ul>
<li><a href="#summary" id="toc-summary" class="nav-link active" data-scroll-target="#summary">Summary</a></li>
<li><a href="#content-under-construction" id="toc-content-under-construction" class="nav-link" data-scroll-target="#content-under-construction">Content (UNDER CONSTRUCTION)</a>
<li><a href="#content-under-construction" id="toc-content-under-construction" class="nav-link" data-scroll-target="#content-under-construction">Content (under construction)</a>
<ul class="collapse">
<li><a href="#data-acquisition" id="toc-data-acquisition" class="nav-link" data-scroll-target="#data-acquisition">Data Acquisition</a></li>
<li><a href="#data-preparation" id="toc-data-preparation" class="nav-link" data-scroll-target="#data-preparation">Data Preparation</a></li>
Expand Down Expand Up @@ -252,10 +257,10 @@ <h1 class="title">Resources</h1>
<section id="summary" class="level2">
<h2 class="anchored" data-anchor-id="summary">Summary</h2>
<p>This unit of the workshop introduces a variety of resources that are of relevance to palaeobiological analyses and palaeontologists more broadly. The slides for the unit are available here and provide an overview to these commonly used resources, along with links to relevant websites and other content. This acts as both a summary of the resources mentioned in the other Units, as well as including additional resources which may be of interest.</p>
<p>This session is led by Christopher dean. If you encounter any issues while working with these resources, please contact him <a href="mailto:christopherdaviddean@gmail.com">here</a>. Additionally, our aim is to expand upon this content to make it a more widely available resource; if you have any resources that you use that you think might be helpful to others, please let Chris know and he will add them to the list.</p>
<p>This session is led by Christopher Dean. If you encounter any issues while working with these resources, please contact him <a href="mailto:christopherdaviddean@gmail.com">here</a>. Additionally, our aim is to expand upon this content to make it a more widely available resource; if you have any resources that you use that you think might be helpful to others, please let Chris know and he will add them to the list.</p>
</section>
<section id="content-under-construction" class="level2">
<h2 class="anchored" data-anchor-id="content-under-construction">Content (UNDER CONSTRUCTION)</h2>
<h2 class="anchored" data-anchor-id="content-under-construction">Content (under construction)</h2>
<section id="data-acquisition" class="level3">
<h3 class="anchored" data-anchor-id="data-acquisition">Data Acquisition</h3>
<p>These resources cover the acquisition of data for palaeontological analyses, including occurrence datasets and covariate/associated data.</p>
Expand Down Expand Up @@ -321,6 +326,11 @@ <h3 class="anchored" data-anchor-id="section">--</h3>
<section id="problem-solving-tips" class="level3">
<h3 class="anchored" data-anchor-id="problem-solving-tips">Problem Solving Tips</h3>
<p>--</p>
<div class="quarto-figure quarto-figure-right">
<figure class="figure">
<p><img src="images/logo.png" class="img-fluid figure-img" style="width:25.0%"></p>
</figure>
</div>


</section>
Expand Down
Loading

0 comments on commit e102f4c

Please sign in to comment.