This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
GOVERNMENT OF THE DISTRICT OF COLUMBIA | |
ADMINISTRATIVE ISSUANCE SYSTEM | |
Mayor’s Order 2020-054 | |
March 30, 2020 | |
SUBJECT: Stay at Home Order | |
ORIGINATING AGENCY: Office of the Mayor | |
By virtue of the authority vested in me as Mayor of the District of Columbia pursuant to section |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<head> | |
<script src="https://d3js.org/d3.v5.min.js"></script> | |
</head> | |
<body> | |
<svg></svg> | |
<button>Toggle Pane Position</button> | |
</body> | |
<script> | |
//Data represents different layers of a multigraph | |
//a seperate layer for each node type |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
library(igraph) | |
library(animation) | |
node_clr <- scales::brewer_pal()(6) | |
###===============================### | |
### initiate full graph influence ### | |
###===============================### | |
addSimAtt <- function(g){ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<head> | |
<meta charset="utf-8" /> | |
</head> | |
<body> | |
<svg></svg> | |
</body> | |
<script src="d3.v5.min.js"></script> | |
<!-- <script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/vue.js"></script> --> | |
<script src="d3-jetpack.js"></script> | |
<script> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#Urban Complexity | |
library(tidyverse) | |
library(tmap) | |
library(tmaptools) | |
library(osmdata) | |
library(sf) | |
library(stplanr) | |
library(igraph) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
```{r, message=F} | |
library(tidyverse) | |
library(imager) | |
library(cowplot) | |
library(animation) | |
library(tweenr) | |
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
library(tidyverse) | |
library(rvest) | |
library(igraph) | |
########## | |
## Pull Data from website | |
########## | |
html <- read_html("http://ccs2018.web.auth.gr/schedule") |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
library(tidyverse) | |
library(igraph) | |
###Fake Taxonomy | |
g <- make_tree(20, 2) %>% | |
set_edge_attr('arrow.size', value = .5) %>% | |
set_vertex_attr('name', value = 1:vcount(.)) %>% | |
set_vertex_attr('label.cex', value = .7) %>% | |
set_graph_attr('layout', layout_as_tree(.)) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
library(tidyverse) | |
library(igraph) | |
library(animation) | |
library(grid) | |
library(gridGraphics) | |
############ | |
## Only working with 3 possible colora | |
############ |
NewerOlder