Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
rossarmstrong authored Jul 20, 2023
1 parent 4f3e617 commit f40a213
Showing 1 changed file with 10 additions and 8 deletions.
18 changes: 10 additions & 8 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -38,14 +38,14 @@ The following table provides an overview of the data that will be extracted and
## Data Dictionary

<details>
<summary><h3>&nbsp;Views and Unique Users</h3></summary>
<summary><h3>&nbsp;User Traffic</h3></summary>


The <a href="https://github.com/analyticsinmotion/github-stats/blob/main/data/views.csv">views.csv</a> file contains time series information relating to views and unique visitors to each repository for each day.
The <a href="https://github.com/analyticsinmotion/github-stats/blob/main/data/traffic.csv">traffic.csv</a> file contains time series information relating to views, unique visitors, clones and unique cloners to each repository.

**File Details**
<br />
*Filename:* views
*Filename:* traffic
<br />
*Extension:* .csv
<br />
Expand All @@ -59,9 +59,11 @@ The <a href="https://github.com/analyticsinmotion/github-stats/blob/main/data/vi
| Column Name | Data Type | Description |
| ------------- | ------------- | ------------- |
| date | Date (yyyy-mm-dd) | The date when the data was recorded |
| repo | Text | The name of the repository |
| repository | Text | The name of the repository |
| views | Numeric | The number of repository views |
| visitors | Numeric | The number of unique visitors to the repository |
| unique_visitors | Numeric | The number of unique visitors to the repository |
| clones | Numeric | The number of times a repository is cloned |
| unique_cloners | Numeric | The number of unique cloners of the repository |

</details>

Expand All @@ -73,15 +75,15 @@ The <a href="https://github.com/analyticsinmotion/github-stats/blob/main/data/vi
github-stats
├── .github
│ └── workflows
│ └── views.yml
│ └── traffic.yml
├── data
│ └── views.csv
│ └── traffic.csv
├── .gitignore
├── CHANGELOG.md
├── README.md
├── requirements.txt
├── LICENSE
└── views.py
└── traffic.py
<br /><br />


0 comments on commit f40a213

Please sign in to comment.