This file contains hidden or 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
| City | State | Latitude | Longitude | |
|---|---|---|---|---|
| San Francisco | CA | 37.7782251 | -122.4424955 | |
| New York | NY | 40.7142691 | -74.0059729 | |
| Los Angeles | CA | 34.0522342 | -118.2436849 | |
| Chicago | IL | 41.850033 | -87.6500523 | |
| Dallas | TX | 32.7830556 | -96.8066667 | |
| Columbus | GA | 32.4609764 | -84.9877094 | |
| Columbus | OH | 39.9611755 | -82.9987942 |
This file contains hidden or 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
| <!DOCTYPE html> | |
| <meta charset="utf-8"> | |
| <html> | |
| <head> | |
| <title>Click Circle</title> | |
| <link rel="stylesheet" href="http://cdn.leafletjs.com/leaflet-0.6.4/leaflet.css" /> | |
| <!--[if lte IE 8]> | |
| <link rel="stylesheet" href="http://cdn.leafletjs.com/leaflet-0.6.4/leaflet.ie.css" /> | |
| <![endif]--> | |
| <script src="http://cdn.leafletjs.com/leaflet-0.6.4/leaflet.js"></script> |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains hidden or 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
| str(ChickWeight$Diet) | |
| table(ChickWeight$Diet) | |
| ols <- lm(weight ~ Time + Diet, | |
| data = ChickWeight) | |
| summary(ols) | |
| ChickWeight$Diet <- relevel(ChickWeight$Diet, | |
| ref = 4) |
This file contains hidden or 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
| ols <- lm(Temp ~ Solar.R, | |
| data = airquality) | |
| summary(ols) | |
| str(ols) | |
| plot(Temp ~ Solar.R, | |
| data = airquality) | |
| abline(ols) |
This file contains hidden or 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
| <!DOCTYPE html> | |
| <meta charset="utf-8"> | |
| <html> | |
| <head> | |
| <title>Cities I've Been To</title> | |
| <link rel="stylesheet" href="http://cdn.leafletjs.com/leaflet-0.6.4/leaflet.css" /> | |
| <!--[if lte IE 8]> | |
| <link rel="stylesheet" href="http://cdn.leafletjs.com/leaflet-0.6.4/leaflet.ie.css" /> | |
| <![endif]--> | |
| <script src="http://cdn.leafletjs.com/leaflet-0.6.4/leaflet.js"></script> |
This file contains hidden or 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
| bus tracker | |
| trash collection 404-620-5025 | |
| budget app http://public.tableausoftware.com/views/Expenses_2_0/DepartmentDashboard#1 | |
| innovations app | |
| APS parent portal | |
| form flow | |
| votified http://votified.com/ | |
| geoincentives wordpress plugin | |
| vendor application | |
| municiplanner http://municiplanner.org/ |
This file contains hidden or 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
| <!DOCTYPE html> | |
| <meta charset="utf-8"> | |
| <html> | |
| <head> | |
| <title>Quick Start</title> | |
| <link rel="stylesheet" href="http://cdn.leafletjs.com/leaflet-0.6.4/leaflet.css" /> | |
| <!--[if lte IE 8]> | |
| <link rel="stylesheet" href="http://cdn.leafletjs.com/leaflet-0.6.4/leaflet.ie.css" /> | |
| <![endif]--> | |
| <script src="http://cdn.leafletjs.com/leaflet-0.6.4/leaflet.js"></script> |
This file contains hidden or 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(OIdata) | |
| data(birds) | |
| library(ggplot2) | |
| levels(birds$effect) <- gsub(" ", "\n", levels(birds$effect)) | |
| ggplot(birds, | |
| aes(x = effect, | |
| y = speed)) + | |
| geom_boxplot() + | |
| coord_flip() |
This file contains hidden or 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(OIdata) | |
| library(RColorBrewer) | |
| library(classInt) | |
| # load state data from OIdata package: | |
| data(state) | |
| # set constants: | |
| nclr <- 8 # number of bins | |
| min <- 0 # theoretical minimum |