Skip to content

Commit e006444

Browse files
updated folder for some stats
1 parent 21ab54d commit e006444

File tree

2 files changed

+50
-0
lines changed

2 files changed

+50
-0
lines changed

README.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,15 @@ Take a look to the [website](https://phuse-org.github.io/git-in-statistical-prog
3030
# R use
3131

3232
This repository will be using quarto. To support this, there is an renv lock file which is currently bare bones.
33+
(This means we can keep traceability of the R packages we are using within this repo)
34+
35+
```R
36+
# reinstall environment packages
37+
renv::restore() # to install packages required
38+
39+
# if you made changes to the environment (installing new packages) you can save them by:
40+
renv::snapshot()
41+
```
3342

3443
# How to Contribute
3544

script_ideas/croca_git_numbers.qmd

Lines changed: 41 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,41 @@
1+
---
2+
title: "croca_git_numbers"
3+
author: "croca"
4+
format: html
5+
editor: visual
6+
jupyter: python3
7+
---
8+
9+
## Idea 1. Git in numbers
10+
11+
Try to get some real world numbers around Git
12+
(So far I will focus in Github)
13+
14+
### How is the adoption of Git around the world from the last 5 years till now?
15+
16+
17+
- We can see that the adoption increase across the world since 202 till 2025
18+
19+
info at https://innovationgraph.github.com/
20+
21+
22+
### How many "statisticians in healthcare" use Git.
23+
24+
25+
26+
## Running Code
27+
28+
When you click the **Render** button a document will be generated that includes both content and the output of embedded code. You can embed code like this:
29+
30+
```{python}
31+
1 + 1
32+
```
33+
34+
You can add options to executable code like this
35+
36+
```{python}
37+
#| echo: false
38+
2 * 2
39+
```
40+
41+
The `echo: false` option disables the printing of code (only output is displayed).

0 commit comments

Comments
 (0)