-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdata.Rmd
More file actions
76 lines (57 loc) · 1.88 KB
/
Copy pathdata.Rmd
File metadata and controls
76 lines (57 loc) · 1.88 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
---
title: "data"
output: html_document
---
<!-- BANNER -->
</div> <!-- container-fluid main-container -->
<div class="jumbotron homepagebanner jumbotron-fluid">
<div class="container">
## PANDEMIC SYSTEMS GROUP<br>**Data** {.lead}
</div> <!--end container-->
</div> <!--end jumbotron-->
<!-- MAIN CONTENT -->
<div class="container-fluid main-container">
### Data sources
Curated data sources will be made available here.
<!--
```{r,setup,echo=FALSE,include=TRUE,results="asis"}
## Data on the publications is available here:
# DT::datatable(mtcars[1:10 ,1:4])
# get a list of all the files in the folder
file_list <- list.files(path = "updates", full.names = TRUE)
# initialize a data frame to store the file information
df <- data.frame(filename = character(),
date_created = character(),
stringsAsFactors = TRUE)
# loop through the files in the folder
for (file in file_list) {
# get the file name
file_name <- as.character(file)
# get the date created $mtime determines the time for the modification
date_created <- as.character(file.info(file)$mtime)
# add the file information to the data frame
df <- rbind(df, data.frame(filename = file_name,
date_created = date_created,
stringsAsFactors = FALSE))
}
# data frame in decreasing order of date
df <- df[order(df$date_created,decreasing= TRUE),]
#displaying the latest
# cat(htmltools::includeMarkdown(df[3,1]))
```
-->
### Code
Data and code for our demonstration projects will be made available here:
<p>
<a href="https://github.com/pandemicsystems/" taget="_blank">
<img src="images/GitHub-Mark-64px.png" id="github-icon" alt="GitHub organization"/>
GitHub.com/PandemicSystems
</a>
</p>
<!---to make the boxes disappear--->
<!-- <style> -->
<!-- pre { -->
<!-- border: 0; -->
<!-- } -->
<!-- </style> -->