Skip to content

Commit

Permalink
code style: add space after comma
Browse files Browse the repository at this point in the history
  • Loading branch information
stewid committed Nov 2, 2019
1 parent 6c69922 commit 0a2d416
Show file tree
Hide file tree
Showing 8 changed files with 39 additions and 44 deletions.
2 changes: 1 addition & 1 deletion R/ingoing-contact-chain.R
Original file line number Diff line number Diff line change
Expand Up @@ -186,7 +186,7 @@ setMethod("IngoingContactChain",
"for outgoing contacts")
}

return(length(setdiff(x@source,x@root)))
return(length(setdiff(x@source, x@root)))
}
)

Expand Down
2 changes: 1 addition & 1 deletion R/network-summary.R
Original file line number Diff line number Diff line change
Expand Up @@ -194,7 +194,7 @@
##'
##' ## When calculating the network summary for a data.frame of movements
##' ## a data.frame for each combination of root, tEnd and days are returned.
##' root <- c(1,2,3)
##' root <- c(1, 2, 3)
##' tEnd <- c("2005-09-01", "2005-10-01")
##' days <- c(30, 45)
##'
Expand Down
2 changes: 1 addition & 1 deletion R/outgoing-contact-chain.R
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,7 @@ setMethod("OutgoingContactChain",
stop("Unable to determine OutgoingContactChain for ingoing contacts")
}

return(length(setdiff(x@destination,x@root)))
return(length(setdiff(x@destination, x@root)))
}
)

Expand Down
2 changes: 1 addition & 1 deletion R/plot.R
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ setMethod("plot",
if (is.null(vertices)) {
vertices <- tree$outgoing
} else {
vertices <- rbind(vertices, tree$outgoing[-1,])
vertices <- rbind(vertices, tree$outgoing[-1, ])
}
}

Expand Down
13 changes: 6 additions & 7 deletions R/report.R
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ html_detailed_table <- function(contacts, direction) {
arrow <- "&rarr;"
}

contacts <- contacts[order(contacts$t, contacts$id, decreasing = FALSE),]
contacts <- contacts[order(contacts$t, contacts$id, decreasing = FALSE), ]

contacts$id <- as.character(contacts$id)
contacts$id[is.na(contacts$id)] <- "&nbsp;"
Expand Down Expand Up @@ -100,8 +100,7 @@ html_detailed_table <- function(contacts, direction) {
})))
}

html_report <- function(x)
{
html_report <- function(x) {
lines <- c("<html>",
"<head>",
sprintf("<title>%s</title>", x@root),
Expand Down Expand Up @@ -174,9 +173,9 @@ html_report <- function(x)
df$rhs <- df$source

lines <- c(lines,
html_detailed_table(df[df$destination == df$root,], "in"))
html_detailed_table(df[df$destination == df$root, ], "in"))

df <- df[df$destination != df$root,]
df <- df[df$destination != df$root, ]
if (nrow(df) > 0) {
lines <- c(lines,
"<hr/>",
Expand All @@ -196,9 +195,9 @@ html_report <- function(x)
df$lhs <- df$source
df$rhs <- df$destination

html_detailed_table(df[df$source == df$root,], "out")
html_detailed_table(df[df$source == df$root, ], "out")

df <- df[df$source != df$root,]
df <- df[df$source != df$root, ]
if (nrow(df) > 0) {
lines <- c(lines,
"<hr/>",
Expand Down
18 changes: 8 additions & 10 deletions R/shortest-paths.R
Original file line number Diff line number Diff line change
Expand Up @@ -133,23 +133,22 @@ setGeneric("ShortestPaths",
##' @export
setMethod("ShortestPaths",
signature(x = "ContactTrace"),
function(x)
{
function(x) {
ns <- NetworkStructure(x)
ns.in <- ns[ns$direction == "in",]
ns.out <- ns[ns$direction == "out",]
ns.in <- ns[ns$direction == "in", ]
ns.out <- ns[ns$direction == "out", ]

result <- NULL
if (nrow(ns.in)) {
ns.in <- ns.in[order(ns.in$distance, ns.in$source),]
ns.in <- ns.in[!duplicated(ns.in$source),]
ns.in <- ns.in[order(ns.in$distance, ns.in$source), ]
ns.in <- ns.in[!duplicated(ns.in$source), ]
ns.in$destination <- NA_character_
result <- ns.in
}

if (nrow(ns.out)) {
ns.out <- ns.out[order(ns.out$distance, ns.out$destination),]
ns.out <- ns.out[!duplicated(ns.out$destination),]
ns.out <- ns.out[order(ns.out$distance, ns.out$destination), ]
ns.out <- ns.out[!duplicated(ns.out$destination), ]
ns.out$source <- NA_character_
result <- rbind(result, ns.out)
}
Expand All @@ -175,8 +174,7 @@ setMethod("ShortestPaths",
inBegin = NULL,
inEnd = NULL,
outBegin = NULL,
outEnd = NULL)
{
outEnd = NULL) {
## Check that arguments are ok from various perspectives...

## Check the data.frame x with movements
Expand Down
30 changes: 15 additions & 15 deletions R/trace.R
Original file line number Diff line number Diff line change
Expand Up @@ -455,10 +455,10 @@ Trace <- function(movements,


trace_contacts <- .Call("traceContacts",
as.integer(factor(movements$source, levels=levels(nodes))),
as.integer(factor(movements$destination, levels=levels(nodes))),
as.integer(factor(movements$source, levels = levels(nodes))),
as.integer(factor(movements$destination, levels = levels(nodes))),
as.integer(julian(movements$t)),
as.integer(factor(root, levels=levels(nodes))),
as.integer(factor(root, levels = levels(nodes))),
as.integer(julian(inBegin)),
as.integer(julian(inEnd)),
as.integer(julian(outBegin)),
Expand Down Expand Up @@ -488,12 +488,12 @@ Trace <- function(movements,
root = root[i],
tBegin = inBegin[i],
tEnd = inEnd[i],
source = contacts[,1],
destination = contacts[,2],
t = contacts[,3],
id = contacts[,4],
n = contacts[,5],
category = contacts[,6],
source = contacts[, 1],
destination = contacts[, 2],
t = contacts[, 3],
id = contacts[, 4],
n = contacts[, 5],
category = contacts[, 6],
index = index,
distance = distance,
direction = "in")
Expand All @@ -516,12 +516,12 @@ Trace <- function(movements,
root = root[i],
tBegin = outBegin[i],
tEnd = outEnd[i],
source = contacts[,1],
destination = contacts[,2],
t = contacts[,3],
id = contacts[,4],
n = contacts[,5],
category = contacts[,6],
source = contacts[, 1],
destination = contacts[, 2],
t = contacts[, 3],
id = contacts[, 4],
n = contacts[, 5],
category = contacts[, 6],
index = index,
distance = distance,
direction = "out")
Expand Down
14 changes: 6 additions & 8 deletions R/tree.R
Original file line number Diff line number Diff line change
Expand Up @@ -27,14 +27,13 @@
##' \code{data.frame} with the tree. The fields are \code{NULL} if
##' there are no in- or outgoing contacts.
##' @keywords internal
build_tree <- function(network_structure)
{
build_tree <- function(network_structure) {
stopifnot(is.data.frame(network_structure))
root <- unique(network_structure$root)
stopifnot(identical(length(root), 1L))

tree.in <- network_structure[network_structure$direction == "in",]
tree.out <- network_structure[network_structure$direction == "out",]
tree.in <- network_structure[network_structure$direction == "in", ]
tree.out <- network_structure[network_structure$direction == "out", ]

result <- list(ingoing=NULL, outgoing=NULL)

Expand All @@ -46,7 +45,7 @@ build_tree <- function(network_structure)
if (nrow(tree.in)) {
i <- order(tree.in$distance, tree.in$source)
tree.in <- tree.in[i, c("source", "distance")]
tree.in <- tree.in[!duplicated(tree.in$source),]
tree.in <- tree.in[!duplicated(tree.in$source), ]
tree.in$parent <- NA_character_
colnames(tree.in)[1:2] <- c("node", "level")
tree.in <- tree.in[, colnames(root_node)]
Expand Down Expand Up @@ -76,7 +75,7 @@ build_tree <- function(network_structure)
if (nrow(tree.out)) {
i <- order(tree.out$distance, tree.out$destination)
tree.out <- tree.out[i, c("destination", "distance")]
tree.out <- tree.out[!duplicated(tree.out$destination),]
tree.out <- tree.out[!duplicated(tree.out$destination), ]
tree.out$parent <- NA_character_
colnames(tree.out)[1:2] <- c("node", "level")
tree.out <- tree.out[, colnames(root_node)]
Expand Down Expand Up @@ -142,8 +141,7 @@ position_tree <- function(tree,
left_size = 1,
right_size = 1,
top_size = 1,
bottom_size = 1)
{
bottom_size = 1) {
## Clean up the positioning of small sibling subtrees
apportion <- function(node) {
left_most <- first_child(node)
Expand Down

1 comment on commit 0a2d416

@lintr-bot
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

R/network-structure.R:135:1: style: Lines should not be more than 80 characters.

i <- tmp[seq_len(length(tmp) - 1)] != tmp[seq_len(length(tmp))[-1]]
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

R/network-summary.R:248:1: style: Lines should not be more than 80 characters.

inDays = as.integer(x@ingoingContacts@tEnd - x@ingoingContacts@tBegin),
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

R/network-summary.R:251:1: style: Lines should not be more than 80 characters.

outDays = as.integer(x@outgoingContacts@tEnd - x@outgoingContacts@tBegin),
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

R/network-summary.R:254:1: style: Lines should not be more than 80 characters.

ingoingContactChain = IngoingContactChain(x@ingoingContacts),
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

R/network-summary.R:255:1: style: Lines should not be more than 80 characters.

outgoingContactChain = OutgoingContactChain(x@outgoingContacts))
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

R/network-summary.R:261:1: style: functions should have cyclomatic complexity of less than 15, this has 38.

setMethod("NetworkSummary",
^

R/network-summary.R:315:1: style: Lines should not be more than 80 characters.

## so test that root is a integer the same way as binom.test test x
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

R/network-summary.R:323:20: style: Only use double-quotes.

​              stop('invalid class of root')
                   ^~~~~~~~~~~~~~~~~~~~~~~

R/network-summary.R:331:1: style: Lines should not be more than 80 characters.

if (!all(is.null(inBegin), is.null(inEnd), is.null(outBegin), is.null(outEnd))) {
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

R/network-summary.R:332:1: style: Lines should not be more than 80 characters.

​                  stop("Use either tEnd and days or inBegin, inEnd, outBegin and outEnd in call to NetworkSummary")
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

R/network-summary.R:343:1: style: Lines should not be more than 80 characters.

## Test that days is a nonnegative integer the same way as binom.test test x
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

R/network-summary.R:345:1: style: Lines should not be more than 80 characters.

if (any(is.na(days) | (days < 0)) || max(abs(days - daysr)) > 1e-07) {
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

R/network-summary.R:365:1: style: Lines should not be more than 80 characters.

​          } else if (all(!is.null(inBegin), !is.null(inEnd), !is.null(outBegin), !is.null(outEnd))) {
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

R/network-summary.R:370:1: style: Lines should not be more than 80 characters.

​                  stop("Use either tEnd and days or inBegin, inEnd, outBegin and outEnd in call to NetworkSummary")
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

R/network-summary.R:373:1: style: Lines should not be more than 80 characters.

​              stop("Use either tEnd and days or inBegin, inEnd, outBegin and outEnd in call to NetworkSummary")
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

R/network-summary.R:456:1: style: Lines should not be more than 80 characters.

​              stop("root, inBegin, inEnd, outBegin and outEnd must have equal length")
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

R/network-summary.R:468:24: style: Put spaces around all infix operators.

contact_chain<- .Call("networkSummary",
                      ~^

R/network-summary.R:469:1: style: Lines should not be more than 80 characters.

​                                as.integer(factor(x$source, levels = levels(nodes))),
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

R/network-summary.R:470:1: style: Lines should not be more than 80 characters.

​                                as.integer(factor(x$destination, levels = levels(nodes))),
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

R/network-summary.R:472:1: style: Lines should not be more than 80 characters.

​                                as.integer(factor(root, levels = levels(nodes))),
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

R/network-summary.R:489:1: style: Lines should not be more than 80 characters.

ingoingContactChain = contact_chain[["ingoingContactChain"]],
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

R/network-summary.R:490:1: style: Lines should not be more than 80 characters.

outgoingContactChain = contact_chain[["outgoingContactChain"]]))
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

R/out-degree.R:119:1: style: Lines should not be more than 80 characters.

##'     Get the OutDegree for a data.frame with movements, see details and examples.
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

R/outgoing-contact-chain.R:67:1: style: Lines should not be more than 80 characters.

##'     The \code{\link{OutgoingContactChain}} of the root within the time-interval
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

R/outgoing-contact-chain.R:77:1: style: Lines should not be more than 80 characters.

##'     Get the OutgoingContactChain for a data.frame with movements, see examples.
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

R/outgoing-contact-chain.R:137:1: style: Lines should not be more than 80 characters.

​                  stop("Unable to determine OutgoingContactChain for ingoing contacts")
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

R/plot.R:82:1: style: Lines should not be more than 80 characters.

tree$ingoing$bg <- ifelse(tree$ingoing$level > 0, "white", "black")
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

R/plot.R:95:1: style: Lines should not be more than 80 characters.

tree$outgoing$bg <- ifelse(tree$outgoing$level > 0, "gray", "black")
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

R/report.R:30:8: style: Place a space before left parenthesis, except in a function call.

for(i in seq_len(nrow(contacts))) {
       ^

R/report.R:35:1: style: Lines should not be more than 80 characters.

​                   paste(rep("<td>&nbsp;</td>", 2L * (contacts$distance[i] - 1L)), collapse = ""),
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

R/report.R:44:1: style: Lines should not be more than 80 characters.

2L * (max(contacts$distance - 1L) - (contacts$distance[i] - 1L))),
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

R/report.R:73:1: style: Lines should not be more than 80 characters.

​    as.character(unlist(by(contacts, sprintf("%s - %s", contacts$lhs, contacts$rhs), function(x) {
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

R/report.R:78:1: style: Lines should not be more than 80 characters.

​                   sprintf('<h3><a name="%s-%s-%s">%s %s %s</a></h3>', direction,
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

R/report.R:81:1: style: Lines should not be more than 80 characters.

"<tr><th>Date</th><th>Id</th><th>N</th><th>Category</th><th>Source</th><th>Destination</th></tr>")
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

R/report.R:83:12: style: Place a space before left parenthesis, except in a function call.

for(i in seq_len(nrow(x))) {
           ^

R/report.R:112:1: style: Lines should not be more than 80 characters.

​               sprintf("<h3 align='center'>Version: %s</h3>", packageVersion("EpiContactTrace")),
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

R/report.R:117:1: style: Lines should not be more than 80 characters.

​               sprintf("<tr><td>In begin date:</td><td>%s</td></tr>", x@ingoingContacts@tBegin),
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

R/report.R:118:1: style: Lines should not be more than 80 characters.

​               sprintf("<tr><td>In end date:</td><td>%s</td></tr>", x@ingoingContacts@tEnd),
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

R/report.R:119:1: style: Lines should not be more than 80 characters.

​               sprintf("<tr><td>In days:</td><td>%i</td></tr>", x@ingoingContacts@tEnd - x@ingoingContacts@tBegin),
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

R/report.R:120:1: style: Lines should not be more than 80 characters.

​               sprintf("<tr><td>In degree:</td><td>%i</td></tr>", InDegree(x@ingoingContacts)),
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

R/report.R:121:1: style: Lines should not be more than 80 characters.

​               sprintf("<tr><td>Ingoing contact chain:</td><td>%i</td></tr>", IngoingContactChain(x@ingoingContacts)),
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

R/report.R:135:1: style: Lines should not be more than 80 characters.

lines <- c(lines, "<p>No ingoing contacts during the search period.</p>")
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

R/report.R:143:1: style: Lines should not be more than 80 characters.

​               sprintf("<tr><td>Out begin date:</td><td>%s</td></tr>", x@outgoingContacts@tBegin),
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

R/report.R:144:1: style: Lines should not be more than 80 characters.

​               sprintf("<tr><td>Out end date:</td><td>%s</td></tr>", x@outgoingContacts@tEnd),
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

R/report.R:145:1: style: Lines should not be more than 80 characters.

​               sprintf("<tr><td>Out days:</td><td>%i</td></tr>", x@outgoingContacts@tEnd - x@outgoingContacts@tBegin),
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

R/report.R:146:1: style: Lines should not be more than 80 characters.

​               sprintf("<tr><td>Out degree:</td><td>%i</td></tr>", OutDegree(x@outgoingContacts)),
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

R/report.R:147:1: style: Lines should not be more than 80 characters.

​               sprintf("<tr><td>Outgoing contact chain:</td><td>%i</td></tr>", OutgoingContactChain(x@outgoingContacts)),
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

R/report.R:161:1: style: Lines should not be more than 80 characters.

lines <- c(lines, "<p>No outgoing contacts during the search period.</p>")
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

R/report.R:237:1: style: Lines should not be more than 80 characters.

##' available. To generate pdf files a TeX installation must exist to compile the
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

R/report.R:260:1: style: Lines should not be more than 80 characters.

##' @param template the Sweave template file to use. If none is provided, the default
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

R/report.R:345:1: style: Lines should not be more than 80 characters.

​              writeLines(html_report(object), con = sprintf("%s.html", object@root))
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

R/report.R:348:1: style: Lines should not be more than 80 characters.

template <- system.file("Sweave/speak-latex.rnw", package = "EpiContactTrace")
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

R/report.R:351:45: style: Put spaces around all infix operators.

utils::Sweave(template, syntax="SweaveSyntaxNoweb")
                                           ~^~

R/report.R:352:1: style: Lines should not be more than 80 characters.

tools::texi2pdf(sub("rnw$", "tex", basename(template)), clean = TRUE)
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

R/report.R:353:1: style: Lines should not be more than 80 characters.

​              file.rename(sub("rnw$", "pdf", basename(template)), sprintf("%s.pdf", object@root))
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

R/report.R:400:1: style: Opening curly braces should never go on their own line and should always be followed by a new line.

​{
^

R/shortest-paths.R:168:1: style: functions should have cyclomatic complexity of less than 15, this has 41.

setMethod("ShortestPaths",
^

R/shortest-paths.R:239:1: style: Lines should not be more than 80 characters.

if (!all(is.null(inBegin), is.null(inEnd), is.null(outBegin), is.null(outEnd))) {
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

R/shortest-paths.R:240:1: style: Lines should not be more than 80 characters.

​                  stop("Use either tEnd and days or inBegin, inEnd, outBegin and outEnd in call to ShortestPaths")
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

R/shortest-paths.R:254:1: style: Lines should not be more than 80 characters.

if (any(is.na(days) | (days < 0)) || max(abs(days - daysr)) > 1e-07) {
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

R/shortest-paths.R:274:1: style: Lines should not be more than 80 characters.

​          } else if (all(!is.null(inBegin), !is.null(inEnd), !is.null(outBegin), !is.null(outEnd))) {
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

R/shortest-paths.R:279:1: style: Lines should not be more than 80 characters.

​                  stop("Use either tEnd and days or inBegin, inEnd, outBegin and outEnd in call to ShortestPaths")
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

R/shortest-paths.R:282:1: style: Lines should not be more than 80 characters.

​              stop("Use either tEnd and days or inBegin, inEnd, outBegin and outEnd in call to ShortestPaths")
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

R/shortest-paths.R:365:1: style: Lines should not be more than 80 characters.

​              stop("root, inBegin, inEnd, outBegin and outEnd must have equal length")
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

R/shortest-paths.R:411:1: style: Lines should not be more than 80 characters.

destination = x$destination[sp$outRowid],
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

R/show.R:76:7: style: Opening curly braces should never go on their own line and should always be followed by a new line.

​      {
      ^

R/show.R:88:1: style: Lines should not be more than 80 characters.

​              cat(sprintf("%sgoing contact chain: %i\n\n", prefix, OutgoingContactChain(object)))
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

R/show.R:91:1: style: Lines should not be more than 80 characters.

​              cat(sprintf("%sgoing contact chain: %i\n\n", prefix, IngoingContactChain(object)))
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

R/show.R:102:1: style: Lines should not be more than 80 characters.

## Rename source and destination to lhs and rhs, with respect to direction
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

R/show.R:111:18: style: Place a space before left parenthesis, except in a function call.

for(i in seq_len(nrow(ns))) {
                 ^

R/show.R:113:1: style: Lines should not be more than 80 characters.

​                              paste(rep(" ", (ns$distance[i] - 1) * (width + 5)), collapse=""),
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

R/show.R:113:91: style: Put spaces around all infix operators.

​                              paste(rep(" ", (ns$distance[i] - 1) * (width + 5)), collapse=""),
                                                                                         ~^~

R/show.R:119:1: style: Lines should not be more than 80 characters.

​              cat(sprintf("No %sgoing contacts during the search period.\n", object@direction))
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

R/trace.R:167:1: style: functions should have cyclomatic complexity of less than 15, this has 56.

Trace <- function(movements,
^

R/trace.R:207:1: style: Lines should not be more than 80 characters.

if (any(is.factor(movements$destination), is.integer(movements$destination))) {
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

R/trace.R:252:1: style: Lines should not be more than 80 characters.

if (any(is.factor(movements$category), is.integer(movements$category))) {
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

R/trace.R:306:1: style: Lines should not be more than 80 characters.

if (!all(is.null(inBegin), is.null(inEnd), is.null(outBegin), is.null(outEnd))) {
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

R/trace.R:307:1: style: Lines should not be more than 80 characters.

​            stop("Use either tEnd and days or inBegin, inEnd, outBegin and outEnd in call to Trace")
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

R/trace.R:318:1: style: Lines should not be more than 80 characters.

## Test that days is a nonnegative integer the same way as binom.test test x
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

R/trace.R:335:31: style: Put spaces around all infix operators.

root <- rep(root, each=n.tEnd*n.days, length.out=n)
                             ~^~

R/trace.R:335:38: style: Put spaces around all infix operators.

root <- rep(root, each=n.tEnd*n.days, length.out=n)
                                    ~^~

R/trace.R:335:57: style: Put spaces around all infix operators.

root <- rep(root, each=n.tEnd*n.days, length.out=n)
                                                       ~^~

R/trace.R:336:32: style: Put spaces around all infix operators.

inEnd <- rep(tEnd, each=n.days, length.out=n)
                              ~^~

R/trace.R:336:51: style: Put spaces around all infix operators.

inEnd <- rep(tEnd, each=n.days, length.out=n)
                                                 ~^~

R/trace.R:337:42: style: Put spaces around all infix operators.

inBegin <- inEnd - rep(days, each=1, length.out=n)
                                        ~^~

R/trace.R:337:56: style: Put spaces around all infix operators.

inBegin <- inEnd - rep(days, each=1, length.out=n)
                                                      ~^~

R/trace.R:340:1: style: Lines should not be more than 80 characters.

​    } else if (all(!is.null(inBegin), !is.null(inEnd), !is.null(outBegin), !is.null(outEnd))) {
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

R/trace.R:345:1: style: Lines should not be more than 80 characters.

​            stop("Use either tEnd and days or inBegin, inEnd, outBegin and outEnd in call to Trace")
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

R/trace.R:348:1: style: Lines should not be more than 80 characters.

​        stop("Use either tEnd and days or inBegin, inEnd, outBegin and outEnd in call to Trace")
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

R/trace.R:458:1: style: Lines should not be more than 80 characters.

​                            as.integer(factor(movements$source, levels = levels(nodes))),
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

R/trace.R:459:1: style: Lines should not be more than 80 characters.

​                            as.integer(factor(movements$destination, levels = levels(nodes))),
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

R/trace.R:471:16: style: Put spaces around all infix operators.

j <- (i-1) * 4
              ~^~

R/trace.R:481:1: style: Lines should not be more than 80 characters.

## Create an index to contacts, so that the result matrix can be reconstructed
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

R/trace.R:483:12: style: Commented code should be removed.

## contacts_all <- cbind(contacts[index,], distance)
           ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

R/trace.R:484:1: style: Lines should not be more than 80 characters.

index <- match(apply(contacts_all, 1, function(x) paste(x, collapse="\r")),
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

R/trace.R:484:76: style: Put spaces around all infix operators.

index <- match(apply(contacts_all, 1, function(x) paste(x, collapse="\r")),
                                                                          ~^~

R/trace.R:485:72: style: Put spaces around all infix operators.

​                       apply(contacts, 1, function(x) paste(x, collapse="\r")))
                                                                      ~^~

R/trace.R:509:1: style: Lines should not be more than 80 characters.

## Create an index to contacts, so that the result matrix can be reconstructed
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

R/trace.R:511:12: style: Commented code should be removed.

## contacts_all <- cbind(contacts[index,], distance)
           ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

R/trace.R:512:1: style: Lines should not be more than 80 characters.

index <- match(apply(contacts_all, 1, function(x) paste(x, collapse="\r")),
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

R/trace.R:512:76: style: Put spaces around all infix operators.

index <- match(apply(contacts_all, 1, function(x) paste(x, collapse="\r")),
                                                                          ~^~

R/trace.R:513:72: style: Put spaces around all infix operators.

​                       apply(contacts, 1, function(x) paste(x, collapse="\r")))
                                                                      ~^~

R/trace.R:535:1: style: Lines should not be more than 80 characters.

## Name each list item with ContactTrace objects to the name of the ContactTrace root.
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

R/trace.R:536:1: style: Lines should not be more than 80 characters.

​    names(result) <-  sapply(result, function(listItem) listItem@ingoingContacts@root)
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

R/tree.R:38:27: style: Put spaces around all infix operators.

result <- list(ingoing=NULL, outgoing=NULL)
                         ~^~

R/tree.R:38:42: style: Put spaces around all infix operators.

result <- list(ingoing=NULL, outgoing=NULL)
                                        ~^~

R/tree.R:53:12: style: Place a space before left parenthesis, except in a function call.

for(lev in rev(seq_len(max(tree.in$level)))) {
           ^

R/tree.R:54:16: style: Place a space before left parenthesis, except in a function call.

for(src in tree.in$node[tree.in$level == lev]) {
               ^

R/tree.R:64:38: style: Put spaces around all infix operators.

​                stopifnot(length(dst)>0)
                                    ~^~

R/tree.R:83:12: style: Place a space before left parenthesis, except in a function call.

for(lev in rev(seq_len(max(tree.out$level)))) {
           ^

R/tree.R:84:16: style: Place a space before left parenthesis, except in a function call.

for(dst in tree.out$node[tree.out$level == lev]) {
               ^

R/tree.R:94:38: style: Put spaces around all infix operators.

​                stopifnot(length(src)>0)
                                    ~^~

R/tree.R:131:1: style: Lines should not be more than 80 characters.

##'   \item John Q. Walker II, A node positioning algorithm for general tress.\cr
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

R/tree.R:134:1: style: functions should have cyclomatic complexity of less than 15, this has 48.

position_tree <- function(tree,
^

R/tree.R:152:14: style: Place a space before left parenthesis, except in a function call.

while(all(!is.null(left_most),
             ^

R/tree.R:162:16: style: Place a space before left parenthesis, except in a function call.

for(i in seq_len(compare_depth)) {
               ^

R/tree.R:182:22: style: Place a space before left parenthesis, except in a function call.

while(all(!is.null(temp_node),
                     ^

R/tree.R:194:26: style: Place a space before left parenthesis, except in a function call.

while(!identical(temp_node, ancestor_neighbor)) {
                         ^

R/tree.R:196:1: style: Lines should not be more than 80 characters.

​                        set_modifier(temp_node, modifier(temp_node) + move_distance)
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

R/tree.R:226:29: style: Put spaces around all infix operators.

if (length(children)>0) {
                           ~^~

R/tree.R:241:18: style: Place a space before left parenthesis, except in a function call.

while(all(is.null(left_most),
                 ^

R/tree.R:273:30: style: Put spaces around all infix operators.

return(n[i[1]-1])
                            ~^~

R/tree.R:389:26: style: Put spaces around all infix operators.

return(s[i[1]-1])
                        ~^~

R/tree.R:398:26: style: Put spaces around all infix operators.

return(s[i[1]+1])
                        ~^~

R/tree.R:431:18: style: Place a space before left parenthesis, except in a function call.

while(has_right_sibling(right_most)) {
                 ^

tests/arguments.R:172:1: style: Lines should not be more than 80 characters.

## Use either tEnd and days or inBegin, inEnd, outBegin and outEnd in call to Trace
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

tests/arguments.R:224:1: style: Lines should not be more than 80 characters.

tools::assertError(Trace(movements = data.frame(source = 1L, destination = 2L, t = 1),
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

tests/arguments.R:235:44: style: Commas should always have a space after.

source = c(1L,NA),
                                           ^

tests/arguments.R:236:49: style: Commas should always have a space after.

destination = c(2L,3L),
                                                ^

tests/arguments.R:248:44: style: Commas should always have a space after.

source = c(1L,2L),
                                           ^

tests/arguments.R:249:49: style: Commas should always have a space after.

destination = c(2L,NA),
                                                ^

tests/arguments.R:261:44: style: Commas should always have a space after.

source = c(1L,2L),
                                           ^

tests/arguments.R:262:49: style: Commas should always have a space after.

destination = c(2L,3L),
                                                ^

tests/arguments.R:274:44: style: Commas should always have a space after.

source = c(1L,2L),
                                           ^

tests/arguments.R:275:49: style: Commas should always have a space after.

destination = c(2L,3L),
                                                ^

tests/arguments.R:394:4: style: Commented code should be removed.

## inEnd < inBegin
   ^~~~~~~~~~~~~~~

tests/arguments.R:407:4: style: Commented code should be removed.

## outEnd < outBegin
   ^~~~~~~~~~~~~~~~~

tests/contact-chain.R:37:31: style: Only use double-quotes.

inBegin = as.Date('2010-08-22'),
                              ^~~~~~~~~~~~

tests/contact-chain.R:38:29: style: Only use double-quotes.

inEnd = as.Date('2010-10-01'),
                            ^~~~~~~~~~~~

tests/contact-chain.R:39:32: style: Only use double-quotes.

outBegin = as.Date('2010-08-01'),
                               ^~~~~~~~~~~~

tests/contact-chain.R:40:30: style: Only use double-quotes.

outEnd = as.Date('2010-08-31'))
                             ^~~~~~~~~~~~

tests/contact-chain.R:51:1: style: Put spaces around all infix operators.

= "Date"), individual = c(NA_character_, NA_character_, NA_character_,
^

tests/contact-chain.R:57:31: style: Only use double-quotes.

inBegin = as.Date('2010-07-22'),
                              ^~~~~~~~~~~~

tests/contact-chain.R:58:29: style: Only use double-quotes.

inEnd = as.Date('2010-08-21'),
                            ^~~~~~~~~~~~

tests/contact-chain.R:59:32: style: Only use double-quotes.

outBegin = as.Date('2010-08-01'),
                               ^~~~~~~~~~~~

tests/contact-chain.R:60:30: style: Only use double-quotes.

outEnd = as.Date('2010-08-31'))
                             ^~~~~~~~~~~~

tests/contact-chain.R:71:31: style: Do not place spaces around code in parentheses or square brackets.

​c(NA_character_, NA_character_ ), n = c(NA_integer_, NA_integer_)),
                              ^

tests/contact-chain.R:73:1: style: Put spaces around all infix operators.

= c(NA, -2L), class = "data.frame")
^

tests/contact-chain.R:76:31: style: Only use double-quotes.

inBegin = as.Date('2010-08-02'),
                              ^~~~~~~~~~~~

tests/contact-chain.R:77:29: style: Only use double-quotes.

inEnd = as.Date('2010-09-01'),
                            ^~~~~~~~~~~~

tests/contact-chain.R:78:32: style: Only use double-quotes.

outBegin = as.Date('2010-09-01'),
                               ^~~~~~~~~~~~

tests/contact-chain.R:79:30: style: Only use double-quotes.

outEnd = as.Date('2010-10-01'))
                             ^~~~~~~~~~~~

tests/contact-chain.R:91:1: style: Put spaces around all infix operators.

= c(NA_character_, NA_character_, NA_character_, NA_character_,
^

tests/contact-chain.R:95:28: style: Do not place spaces around code in parentheses or square brackets.

"n"), row.names = c(NA, -7L ), class = "data.frame")
                           ^

tests/contact-chain.R:98:31: style: Only use double-quotes.

inBegin = as.Date('2010-08-02'),
                              ^~~~~~~~~~~~

tests/contact-chain.R:99:29: style: Only use double-quotes.

inEnd = as.Date('2010-09-01'),
                            ^~~~~~~~~~~~

tests/contact-chain.R:100:32: style: Only use double-quotes.

outBegin = as.Date('2010-08-01'),
                               ^~~~~~~~~~~~

tests/contact-chain.R:101:30: style: Only use double-quotes.

outEnd = as.Date('2010-11-09'))
                             ^~~~~~~~~~~~

tests/contact-chain.R:112:31: style: Do not place spaces around code in parentheses or square brackets.

​c(NA_character_, NA_character_ ), n = c(NA_integer_, NA_integer_)),
                              ^

tests/contact-chain.R:114:1: style: Put spaces around all infix operators.

= c(NA, -2L), class = "data.frame")
^

tests/contact-chain.R:117:31: style: Only use double-quotes.

inBegin = as.Date('2010-07-02'),
                              ^~~~~~~~~~~~

tests/contact-chain.R:118:29: style: Only use double-quotes.

inEnd = as.Date('2010-08-01'),
                            ^~~~~~~~~~~~

tests/contact-chain.R:119:32: style: Only use double-quotes.

outBegin = as.Date('2010-08-01'),
                               ^~~~~~~~~~~~

tests/contact-chain.R:120:30: style: Only use double-quotes.

outEnd = as.Date('2010-08-31'))
                             ^~~~~~~~~~~~

tests/contact-chain.R:137:31: style: Only use double-quotes.

inBegin = as.Date('2010-10-10'),
                              ^~~~~~~~~~~~

tests/contact-chain.R:138:29: style: Only use double-quotes.

inEnd = as.Date('2010-10-20'),
                            ^~~~~~~~~~~~

tests/contact-chain.R:139:32: style: Only use double-quotes.

outBegin = as.Date('2010-10-10'),
                               ^~~~~~~~~~~~

tests/contact-chain.R:140:30: style: Only use double-quotes.

outEnd = as.Date('2010-10-20'))
                             ^~~~~~~~~~~~

tests/contact-chain.R:156:37: style: Put spaces around all infix operators.

ns <- NetworkSummary(movements, root=1, tEnd="2010-10-20", days=10)
                                   ~^~

tests/contact-chain.R:156:45: style: Put spaces around all infix operators.

ns <- NetworkSummary(movements, root=1, tEnd="2010-10-20", days=10)
                                           ~^~

tests/contact-chain.R:156:64: style: Put spaces around all infix operators.

ns <- NetworkSummary(movements, root=1, tEnd="2010-10-20", days=10)
                                                              ~^~

tests/degree.R:32:1: style: Lines should not be more than 80 characters.

t = structure(c(14834, 14838, 14836, 14841), class = "Date"),
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

tests/degree.R:33:1: style: Lines should not be more than 80 characters.

individual = c(NA_character_, NA_character_, NA_character_, NA_character_),
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

tests/degree.R:34:1: style: Lines should not be more than 80 characters.

n = c(NA_integer_, NA_integer_, NA_integer_, NA_integer_)),
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

tests/degree.R:35:1: style: Lines should not be more than 80 characters.

.Names = c("source", "destination", "t", "individual", "n"),
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

tests/degree.R:40:31: style: Only use double-quotes.

inBegin = as.Date('2010-08-02'),
                              ^~~~~~~~~~~~

tests/degree.R:41:29: style: Only use double-quotes.

inEnd = as.Date('2010-09-01'),
                            ^~~~~~~~~~~~

tests/degree.R:42:32: style: Only use double-quotes.

outBegin = as.Date('2010-08-01'),
                               ^~~~~~~~~~~~

tests/degree.R:43:30: style: Only use double-quotes.

outEnd = as.Date('2010-08-31'))
                             ^~~~~~~~~~~~

tests/degree.R:53:1: style: Lines should not be more than 80 characters.

t = structure(c(14834, 14838, 14836, 14841), class = "Date"),
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

tests/degree.R:54:1: style: Lines should not be more than 80 characters.

individual = c(NA_character_, NA_character_, NA_character_, NA_character_),
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

tests/degree.R:55:1: style: Lines should not be more than 80 characters.

n = c(NA_integer_, NA_integer_, NA_integer_, NA_integer_)),
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

tests/degree.R:56:1: style: Lines should not be more than 80 characters.

.Names = c("source", "destination", "t", "individual", "n"),
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

tests/degree.R:59:50: style: Only use double-quotes.

ns <- NetworkSummary(movements, root = 4, tEnd = '2010-09-01', days = 30)
                                                 ^~~~~~~~~~~~

tests/degree.R:67:1: style: Lines should not be more than 80 characters.

t = structure(c(14834, 14838, 14836, 14841), class = "Date"),
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

tests/degree.R:68:1: style: Lines should not be more than 80 characters.

individual = c(NA_character_, NA_character_, NA_character_, NA_character_),
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

tests/degree.R:69:1: style: Lines should not be more than 80 characters.

n = c(NA_integer_, NA_integer_, NA_integer_, NA_integer_)),
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

tests/degree.R:70:1: style: Lines should not be more than 80 characters.

.Names = c("source", "destination", "t", "individual", "n"),
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

tests/degree.R:73:50: style: Only use double-quotes.

ns <- NetworkSummary(movements, root = 4, tEnd = '2010-08-31', days = 30)
                                                 ^~~~~~~~~~~~

tests/degree.R:81:1: style: Lines should not be more than 80 characters.

t = structure(c(14834, 14838, 14836, 14841), class = "Date"),
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

tests/degree.R:82:1: style: Lines should not be more than 80 characters.

individual = c(NA_character_, NA_character_, NA_character_, NA_character_),
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

tests/degree.R:83:1: style: Lines should not be more than 80 characters.

n = c(NA_integer_, NA_integer_, NA_integer_, NA_integer_)),
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

tests/degree.R:84:1: style: Lines should not be more than 80 characters.

.Names = c("source", "destination", "t", "individual", "n"),
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

tests/degree.R:89:31: style: Only use double-quotes.

inBegin = as.Date('2010-08-27'),
                              ^~~~~~~~~~~~

tests/degree.R:90:29: style: Only use double-quotes.

inEnd = as.Date('2010-09-01'),
                            ^~~~~~~~~~~~

Please sign in to comment.