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
| belief | y2015 | y2014 | |
|---|---|---|---|
| Improves the security posture of my organization | 0.75 | 0.71 | |
| Improves the security posture of the nations critical infrastructure | 0.63 | 0.64 | |
| Reduces the cost of detecting and preventing cyber attacks | 0.22 | 0.21 | |
| Improves situational awareness | 0.60 | 0.54 | |
| Fosters collaboration among peers and industry groups | 0.48 | 0.51 | |
| Enhances the timeliness of threat data | 0.11 | 0.16 | |
| Makes threat data more actionable | 0.21 | 0.24 |
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
| def validfilename(s): | |
| import string | |
| valid_chars = "-_.() %s%s" % (string.ascii_letters, string.digits) | |
| filename = ''.join(c for c in s if c in valid_chars) | |
| filename = filename.replace(' ','_') # I don't like spaces in filenames. | |
| return filename |
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(twitteR) | |
| library(tm) | |
| library(wordcloud) | |
| library(RColorBrewer) | |
| library(dplyr) | |
| library(ggplot2) | |
| # load tweets | |
| download.file("ftp://ftp.jax.org/petrs/other/IMGC14.rds", destfile = "IMGC14_tweets.rds", mode="wb") | |
| tweet <- readRDS("IMGC14_tweets.rds") |
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
| *gz |
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
| package org.cloudbus.cloudsim.examples; | |
| import java.util.List; | |
| import org.cloudbus.cloudsim.DatacenterBroker; | |
| import org.cloudbus.cloudsim.DatacenterCharacteristics; | |
| import org.cloudbus.cloudsim.Log; | |
| import org.cloudbus.cloudsim.Vm; | |
| import org.cloudbus.cloudsim.core.CloudSim; | |
| import org.cloudbus.cloudsim.core.CloudSimTags; |
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
| package org.cloudbus.cloudsim.examples; | |
| import java.util.ArrayList; | |
| import java.util.Collections; | |
| import java.util.Comparator; | |
| import java.util.Iterator; | |
| import java.util.LinkedList; | |
| import java.util.List; | |
| import org.cloudbus.cloudsim.Host; |
NewerOlder