Skip to content

Commit

Permalink
Render site
Browse files Browse the repository at this point in the history
  • Loading branch information
actions-user committed Feb 28, 2024
1 parent a10beab commit d253867
Show file tree
Hide file tree
Showing 8 changed files with 927 additions and 7 deletions.
493 changes: 493 additions & 0 deletions CODE_OF_CONDUCT.html

Large diffs are not rendered by default.

51 changes: 50 additions & 1 deletion calendly.html
Original file line number Diff line number Diff line change
Expand Up @@ -308,7 +308,7 @@


<h1 class="title toc-ignore">Calendly</h1>
<h4 class="date">22 February, 2024</h4>
<h4 class="date">28 February, 2024</h4>

</div>

Expand All @@ -318,6 +318,55 @@ <h2>Setting up Calendly</h2>
</div>
<div id="preview" class="section level2">
<h2>Preview</h2>
<pre><code>## Rows: 1 Columns: 8
## ── Column specification ────────────────────────────────────────────────────────
## Delimiter: &quot;\t&quot;
## chr (4): event_type, name, status, uri
## dttm (4): created_at, end_time, start_time, updated_at
##
## ℹ Use `spec()` to retrieve the full column specification for this data.
## ℹ Specify the column types or set `show_col_types = FALSE` to quiet this message.</code></pre>
<pre class="r"><code>knitr::kable(calendly)</code></pre>
<table>
<colgroup>
<col width="7%" />
<col width="7%" />
<col width="28%" />
<col width="6%" />
<col width="7%" />
<col width="2%" />
<col width="7%" />
<col width="30%" />
</colgroup>
<thead>
<tr class="header">
<th align="left">created_at</th>
<th align="left">end_time</th>
<th align="left">event_type</th>
<th align="left">name</th>
<th align="left">start_time</th>
<th align="left">status</th>
<th align="left">updated_at</th>
<th align="left">uri</th>
</tr>
</thead>
<tbody>
<tr class="odd">
<td align="left">2024-01-10 14:29:21</td>
<td align="left">2024-01-17 14:30:00</td>
<td align="left"><a
href="https://api.calendly.com/event_types/d39d7211-9c78-4121-8271-208cfaa34989"
class="uri">https://api.calendly.com/event_types/d39d7211-9c78-4121-8271-208cfaa34989</a></td>
<td align="left">30 Minute Meeting</td>
<td align="left">2024-01-17 14:00:00</td>
<td align="left">active</td>
<td align="left">2024-01-10 14:29:22</td>
<td align="left"><a
href="https://api.calendly.com/scheduled_events/ac7a3d65-37ee-4277-a057-c308bdc7a067"
class="uri">https://api.calendly.com/scheduled_events/ac7a3d65-37ee-4277-a057-c308bdc7a067</a></td>
</tr>
</tbody>
</table>
</div>


Expand Down
51 changes: 50 additions & 1 deletion cran.html
Original file line number Diff line number Diff line change
Expand Up @@ -308,7 +308,7 @@


<h1 class="title toc-ignore">CRAN</h1>
<h4 class="date">22 February, 2024</h4>
<h4 class="date">28 February, 2024</h4>

</div>

Expand All @@ -318,6 +318,55 @@ <h2>Setting up CRAN</h2>
</div>
<div id="preview" class="section level2">
<h2>Preview</h2>
<pre class="r"><code>library(tidyverse)</code></pre>
<pre><code>## ── Attaching core tidyverse packages ──────────────────────── tidyverse 2.0.0 ──
## ✔ dplyr 1.1.4 ✔ readr 2.1.5
## ✔ forcats 1.0.0 ✔ stringr 1.5.1
## ✔ ggplot2 3.4.4 ✔ tibble 3.2.1
## ✔ lubridate 1.9.3 ✔ tidyr 1.3.1
## ✔ purrr 1.0.2
## ── Conflicts ────────────────────────────────────────── tidyverse_conflicts() ──
## ✖ dplyr::filter() masks stats::filter()
## ✖ dplyr::lag() masks stats::lag()
## ℹ Use the conflicted package (&lt;http://conflicted.r-lib.org/&gt;) to force all conflicts to become errors</code></pre>
<pre><code>## Rows: 745 Columns: 3
## ── Column specification ────────────────────────────────────────────────────────
## Delimiter: &quot;\t&quot;
## chr (1): package
## dbl (1): count
## date (1): date
##
## ℹ Use `spec()` to retrieve the full column specification for this data.
## ℹ Specify the column types or set `show_col_types = FALSE` to quiet this message.</code></pre>
<pre class="r"><code>cran %&gt;% dplyr::summarize(download_total = sum(count))</code></pre>
<pre><code>## # A tibble: 1 × 1
## download_total
## &lt;dbl&gt;
## 1 7852</code></pre>
<pre class="r"><code>cran %&gt;% dplyr::group_by(package) %&gt;%
dplyr::summarize(download_total = sum(count))</code></pre>
<pre><code>## # A tibble: 2 × 2
## package download_total
## &lt;chr&gt; &lt;dbl&gt;
## 1 metricminer 428
## 2 ottrpal 7424</code></pre>
<pre class="r"><code>cran_stats &lt;- cran %&gt;%
separate(date, into=c(&quot;year&quot;, &quot;month name&quot;, &quot;day&quot;), sep = &quot;-&quot;) %&gt;%
unite(&quot;Month&quot;, c(&quot;year&quot;, &quot;month name&quot;), sep=&#39;-&#39;, remove=TRUE) %&gt;%
group_by(Month, package) %&gt;%
summarise(monthly_downloads = sum(count)) %&gt;% #summarize monthly downloads by package
filter(monthly_downloads &gt; 0) #drop the 0&#39;s </code></pre>
<pre><code>## `summarise()` has grouped output by &#39;Month&#39;. You can override using the
## `.groups` argument.</code></pre>
<pre class="r"><code>ggplot(cran_stats, aes(Month, monthly_downloads, group=package, color = package)) +
geom_line() +
geom_point() +
theme(panel.background = element_blank(), panel.grid = element_blank()) +
theme(axis.text.x = element_text(angle = 90)) +
labs(x = NULL,
y = &quot;Monthly Downloads&quot;,
color = &quot;R Packages&quot;)</code></pre>
<p><img src="cran_files/figure-html/unnamed-chunk-4-1.png" width="672" /></p>
</div>


Expand Down
50 changes: 49 additions & 1 deletion github.html
Original file line number Diff line number Diff line change
Expand Up @@ -308,7 +308,7 @@


<h1 class="title toc-ignore">GitHub</h1>
<h4 class="date">22 February, 2024</h4>
<h4 class="date">28 February, 2024</h4>

</div>

Expand All @@ -318,6 +318,54 @@ <h2>Setting up GitHub</h2>
</div>
<div id="preview" class="section level2">
<h2>Preview</h2>
<pre><code>## Rows: 2 Columns: 6
## ── Column specification ────────────────────────────────────────────────────────
## Delimiter: &quot;\t&quot;
## chr (1): repo_name
## dbl (4): num_contributors, total_contributions, num_stars, health_percentage
## lgl (1): num_forks
##
## ℹ Use `spec()` to retrieve the full column specification for this data.
## ℹ Specify the column types or set `show_col_types = FALSE` to quiet this message.</code></pre>
<pre class="r"><code>knitr::kable(github)</code></pre>
<table style="width:100%;">
<colgroup>
<col width="22%" />
<col width="10%" />
<col width="17%" />
<col width="20%" />
<col width="10%" />
<col width="18%" />
</colgroup>
<thead>
<tr class="header">
<th align="left">repo_name</th>
<th align="left">num_forks</th>
<th align="right">num_contributors</th>
<th align="right">total_contributions</th>
<th align="right">num_stars</th>
<th align="right">health_percentage</th>
</tr>
</thead>
<tbody>
<tr class="odd">
<td align="left">fhdsl/metricminer</td>
<td align="left">NA</td>
<td align="right">4</td>
<td align="right">406</td>
<td align="right">1</td>
<td align="right">37</td>
</tr>
<tr class="even">
<td align="left">fhdsl/metricminer.org</td>
<td align="left">NA</td>
<td align="right">2</td>
<td align="right">28</td>
<td align="right">0</td>
<td align="right">37</td>
</tr>
</tbody>
</table>
</div>


Expand Down
167 changes: 166 additions & 1 deletion googleanalytics.html
Original file line number Diff line number Diff line change
Expand Up @@ -308,7 +308,7 @@


<h1 class="title toc-ignore">Google Analytics</h1>
<h4 class="date">22 February, 2024</h4>
<h4 class="date">28 February, 2024</h4>

</div>

Expand All @@ -318,6 +318,171 @@ <h2>Setting up Google Analytics</h2>
</div>
<div id="preview" class="section level2">
<h2>Preview</h2>
<pre><code>## Rows: 2 Columns: 10
## ── Column specification ────────────────────────────────────────────────────────
## Delimiter: &quot;\t&quot;
## chr (1): website
## dbl (9): activeUsers, newUsers, totalUsers, eventCountPerUser, screenPageVie...
##
## ℹ Use `spec()` to retrieve the full column specification for this data.
## ℹ Specify the column types or set `show_col_types = FALSE` to quiet this message.
## Rows: 5 Columns: 6
## ── Column specification ────────────────────────────────────────────────────────
## Delimiter: &quot;\t&quot;
## chr (4): website, month, country, fullPageUrl
## dbl (2): day, year
##
## ℹ Use `spec()` to retrieve the full column specification for this data.
## ℹ Specify the column types or set `show_col_types = FALSE` to quiet this message.
## Rows: 3 Columns: 2
## ── Column specification ────────────────────────────────────────────────────────
## Delimiter: &quot;\t&quot;
## chr (2): website, linkUrl
##
## ℹ Use `spec()` to retrieve the full column specification for this data.
## ℹ Specify the column types or set `show_col_types = FALSE` to quiet this message.</code></pre>
<pre class="r"><code>knitr::kable(ga_metrics)</code></pre>
<table>
<colgroup>
<col width="10%" />
<col width="7%" />
<col width="5%" />
<col width="7%" />
<col width="11%" />
<col width="15%" />
<col width="5%" />
<col width="15%" />
<col width="10%" />
<col width="9%" />
</colgroup>
<thead>
<tr class="header">
<th align="left">website</th>
<th align="right">activeUsers</th>
<th align="right">newUsers</th>
<th align="right">totalUsers</th>
<th align="right">eventCountPerUser</th>
<th align="right">screenPageViewsPerUser</th>
<th align="right">sessions</th>
<th align="right">averageSessionDuration</th>
<th align="right">screenPageViews</th>
<th align="right">engagementRate</th>
</tr>
</thead>
<tbody>
<tr class="odd">
<td align="left">dummy-website-2</td>
<td align="right">2</td>
<td align="right">2</td>
<td align="right">2</td>
<td align="right">4</td>
<td align="right">1.00</td>
<td align="right">2</td>
<td align="right">4.617533</td>
<td align="right">2</td>
<td align="right">0.0000000</td>
</tr>
<tr class="even">
<td align="left">dummy-website</td>
<td align="right">4</td>
<td align="right">4</td>
<td align="right">4</td>
<td align="right">15</td>
<td align="right">4.25</td>
<td align="right">6</td>
<td align="right">54.992872</td>
<td align="right">17</td>
<td align="right">0.6666667</td>
</tr>
</tbody>
</table>
<pre class="r"><code>knitr::kable(ga_dimensions)</code></pre>
<table>
<colgroup>
<col width="19%" />
<col width="4%" />
<col width="7%" />
<col width="6%" />
<col width="17%" />
<col width="45%" />
</colgroup>
<thead>
<tr class="header">
<th align="left">website</th>
<th align="right">day</th>
<th align="left">month</th>
<th align="right">year</th>
<th align="left">country</th>
<th align="left">fullPageUrl</th>
</tr>
</thead>
<tbody>
<tr class="odd">
<td align="left">dummy-website-2</td>
<td align="right">11</td>
<td align="left">01</td>
<td align="right">2024</td>
<td align="left">Germany</td>
<td align="left">metricminer.github.io/my-cool-repo/</td>
</tr>
<tr class="even">
<td align="left">dummy-website-2</td>
<td align="right">11</td>
<td align="left">01</td>
<td align="right">2024</td>
<td align="left">United States</td>
<td align="left">metricminer.github.io/my-cool-repo/</td>
</tr>
<tr class="odd">
<td align="left">dummy-website</td>
<td align="right">10</td>
<td align="left">01</td>
<td align="right">2024</td>
<td align="left">Germany</td>
<td align="left">metricminer.github.io/dummy-website/</td>
</tr>
<tr class="even">
<td align="left">dummy-website</td>
<td align="right">10</td>
<td align="left">01</td>
<td align="right">2024</td>
<td align="left">Russia</td>
<td align="left">metricminer.github.io/dummy-website/</td>
</tr>
<tr class="odd">
<td align="left">dummy-website</td>
<td align="right">10</td>
<td align="left">01</td>
<td align="right">2024</td>
<td align="left">United States</td>
<td align="left">metricminer.github.io/dummy-website/</td>
</tr>
</tbody>
</table>
<pre class="r"><code>knitr::kable(ga_link_clicks)</code></pre>
<table>
<thead>
<tr class="header">
<th align="left">website</th>
<th align="left">linkUrl</th>
</tr>
</thead>
<tbody>
<tr class="odd">
<td align="left">dummy-website-2</td>
<td align="left">NA</td>
</tr>
<tr class="even">
<td align="left">dummy-website</td>
<td align="left">NA</td>
</tr>
<tr class="odd">
<td align="left">dummy-website</td>
<td align="left"><a href="https://www.metricminer.org/"
class="uri">https://www.metricminer.org/</a></td>
</tr>
</tbody>
</table>
</div>


Expand Down
Loading

0 comments on commit d253867

Please sign in to comment.