No flags found
Use flags to group coverage reports by test type, project and/or folders.
Then setup custom commit statuses and notifications for each flag.
e.g., #unittest #integration
#production #enterprise
#frontend #backend
9a13d70
... +0 ...
ae889ce
Use flags to group coverage reports by test type, project and/or folders.
Then setup custom commit statuses and notifications for each flag.
e.g., #unittest #integration
#production #enterprise
#frontend #backend
90 | 90 | CI <- attr(object, "einfo")$Alpha*100 |
|
91 | 91 | } |
|
92 | 92 | thePlot <- thePlot + |
|
93 | - | ggplot2::geom_ribbon(data=alldata, ggplot2::aes_(x=~x, ymin=~lo, ymax=~hi, fill=ShadeColor), alpha=alpha) + |
|
93 | + | ggplot2::geom_ribbon(data=alldata, ggplot2::aes(x=.data$x, ymin=.data$lo, ymax=.data$hi, fill=ShadeColor), alpha=alpha) + |
|
94 | 94 | ggplot2::scale_fill_identity(name=LegendLabels[3], guide="legend", labels=paste(CI, "%", sep="")) |
|
95 | 95 | } |
|
96 | 96 |
136 | 136 | ||
137 | 137 | # Add lines to the plot |
|
138 | 138 | thePlot <- thePlot + |
|
139 | - | ggplot2::geom_line(data=Lines, ggplot2::aes_(x=~x, y=~value, colour=~variable, linetype=~variable)) + |
|
139 | + | ggplot2::geom_line(data=Lines, ggplot2::aes(x=.data$x, y=.data$value, colour=.data$variable, linetype=.data$variable)) + |
|
140 | 140 | # Merged legend if name and labels are identical |
|
141 | 141 | ggplot2::scale_colour_manual(name=ylab, values=col) + |
|
142 | 142 | ggplot2::scale_linetype_manual(name=ylab, values=lty) |
168 | 168 | ||
169 | 169 | # Plot the points |
|
170 | 170 | thePlot <- ggplot2::ggplot(thePoints) + |
|
171 | - | ggplot2::geom_point(ggplot2::aes_(x=~x, y=~y, size=~PointWeight, color=~PointType), alpha=alpha) + |
|
171 | + | ggplot2::geom_point(ggplot2::aes(x=.data$x, y=.data$y, size=.data$PointWeight, color=.data$PointType), alpha=alpha) + |
|
172 | 172 | ggplot2::coord_fixed() + ggplot2::scale_color_brewer(palette = palette) + |
|
173 | 173 | ggplot2::labs(title=main, x=xlab, y=ylab, size=labelSize, color=labelColor) |
|
174 | 174 |
180 | 180 | ymin=object$window$yrange[1], |
|
181 | 181 | ymax=object$window$yrange[2]) |
|
182 | 182 | thePlot <- thePlot + |
|
183 | - | ggplot2::geom_rect(theRectangle, mapping=ggplot2::aes_(xmin=~xmin, xmax=~xmax, ymin=~ymin, ymax=~ymax), |
|
183 | + | ggplot2::geom_rect(theRectangle, mapping=ggplot2::aes(xmin=.data$xmin, xmax=.data$xmax, ymin=.data$ymin, ymax=.data$ymax), |
|
184 | 184 | color=windowColor, fill=windowFill, alpha=0) |
|
185 | 185 | } |
|
186 | 186 | if (object$window$type == "polygonal") { |
|
187 | 187 | for (polygon in object$window$bdry) { |
|
188 | 188 | thePolygon <- data.frame(x=polygon$x, |
|
189 | 189 | y=polygon$y) |
|
190 | 190 | thePlot <- thePlot + |
|
191 | - | ggplot2::geom_polygon(thePolygon, mapping=ggplot2::aes_(x=~x, y=~y), |
|
191 | + | ggplot2::geom_polygon(thePolygon, mapping=ggplot2::aes(x=.data$x, y=.data$y), |
|
192 | 192 | color=windowColor, fill=windowFill, alpha=0) |
|
193 | 193 | } |
|
194 | 194 | } |
Files | Coverage |
---|---|
R | 81.65% |
src/CountNbd.cpp | 67.61% |
Project Totals (46 files) | 79.74% |
ae889ce
9a13d70