Displaying 4 results from an estimated 4 matches for "nodeattr".
Did you mean:
nodeattrs
2006 Jul 06
1
Rgraphviz: How to control the colours of edges in a graph
...L[[tmp[2]]]$edges <- c(edL[[tmp[2]]]$edges, tmp[1])
}
G <- new("graphNEL", nodes=V, edgeL=edL)
nAttrs <- list()
nAttrs$fillcolor <- c("red","red","blue","blue")
names(nAttrs$fillcolor) <- V
plot(G, "neato",nodeAttrs=nAttrs)
2006 Aug 31
1
problem with postscript output of R-devel on Windows
...quot;1.1.8" "1.11.29"
fileName<-paste(experiment, contrast, "FDR", FDR, "Graph", "ps", sep=".")
postscript(file=fileName, paper="special",width=width, height=height) #set up graphics device
plot(result.gN, layout.param, nodeAttrs = nAttrs, edgeAttrs = eAttrs,
main=paste(paste("Experiment:", experiment, "; Contrast:", contrast,"; FDR:", FDR, sep=""), paste("Min. connections ==", min.edges, "Min. citations per connection ==", min.cites, "Additional se...
2009 Jul 29
9
partials...
I am getting a blank page, no errors, just a blank page.
I have 2 files...
reports/city_taxes_print.erb
reports/_city_taxes_print.erb
and my method is city_taxes_print and after getting variables from the
controller, my erb file which is fairly basic...
<% # City of Scottsdale
@taxauthids = [ "32", "40" ]
@report_title = "Scottsdale Sales Tax Detail Report for
2006 Jul 06
1
Rgraphviz: Setting the edge width
...;red","blue","blue")
names(nAttrs$fillcolor) <- V
eAttrs <- list(color = c("A~B" = "green", "B~C" = "green", "C~D" = "yellow",
"A~C" = "yellow"))
plot(G, "neato", nodeAttrs = nAttrs, edgeAttrs = eAttrs)