search for: epar

Displaying 8 results from an estimated 8 matches for "epar".

Did you mean: ear
2015 May 18
2
A "bug" in plot.dendrogram - can't plot lty with character color
...plot # works fine # Fails: dend %>% set("branches_lty", 1:2) %>% set("branches_col", as.character(1:2)) %>% plot ### Error: # Error in segments(x0, y0, x1, y1, col = col, lty = lty, lwd = lwd) : # invalid line type: must be length 2, 4, 6 or 8 # This is because edgePar has to hold both "lty" and "col" # Since "col" is a character, it forces "lty" to become a character also. dend %>% set("branches_lty", 1:2) %>% set("branches_col", as.character(1:2)) %>% unclass %>% str Possible solution...
2005 Oct 23
1
Coloring leaves, twigs and labels in plot.dendrogram()
...uld be a useful feature to have.... Or is there an easier way of doing this that I have missed? Walton Green * * * my.dend.plot <- function (x, type = c("rectangle", "triangle"), center = FALSE, edge.root = is.leaf(x) || !is.null(attr(x, "edgetext")), nodePar = NULL, edgePar = list(), leaflab = c("perpendicular", "textlike", "none"), dLeaf = NULL, xlab = "", ylab = "", xaxt = "n", yaxt = "s", horiz = FALSE, frame.plot = FALSE, twig.col = NULL, lab.col = NULL, leaf.col = NU...
2015 May 20
0
Probably a "bug" in the dendextend package
...quot;branches_col", > as.character(1:2)) %>% plot > ### Error: > # Error in segments(x0, y0, x1, y1, col = col, lty = lty, lwd = lwd) : > # invalid line type: must be length 2, 4, 6 or 8 Well, the above magrittr pipe mumbo-jumbo does not make it easy to deparse what you are doing ... and below you see why I think the bug is only in your 'dendextend' package. Please -- for supposed bugs in R, we do need reproducible examples *not* making use of external packages ! > # This is because edgePar has to hold both "lty" and "co...
2008 Jan 09
4
Using Prototype - Getting Javascript Error - "Object doesn't support this property or method"
...; so.write("videoPlayer"); } function assignB(o) { listItems = $("vidList").childElements("li"); listItems.each ( function(item) { $(item).className = $(item).className.replace("yellowdot",""); } ) var eElement = Event.element(o); eParents=eElement.ancestors(); eParents[0].className += "yellowdot"; } </script> --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Ruby on Rails: Spinoffs" group. To post to this group, send email...
2011 Oct 22
3
R for loop stops after 4 iterations
I have a data frame called e, dim is 27,3, the first 5 lines look like this: V1 V2 V3 V4 1 1673 0.36 0.08 Smith 2 167 0.36 0.08 Allen 3 99 0.37 0.06 Allen 4 116 0.38 0.07 Allen 5 95 0.41 0.08 Allen I am trying to calculate the proportion/percentage of V1 which would have values >0.42 if V2 was the mean of a normal distribution with V1
2010 Feb 05
2
Importing data coming from Splus into R.
..."factor", "numeric", "character", and so on) names(FMD.CR.test.classes) <- c("RTA","police", "mnt.rent.bnct", "mnt.rent.boni", "mnt.rent.cred.bnct", "mnt.rent.epar.bnct", "mnt.rent.snbn", "mnt.rent.trxl", "solde.eop", "solde.nenr.es", "solde.enr.es", "num.enreg", "trouve", and so on) FMD.CR.test <- read.table(file = "/home/j...
2006 Mar 23
5
[OT] building fastcgi
Following the instructions on Hivelogic, everything works flawlessly on my Powerbook until I do the ''sudo gem install fcgi. I''m getting no-definition errors all over the place. Any thoughts how to resolve this? Example of errors: No definition for fcgi_s_accept No definition for fcgi_s_each No definition for fcgi_s_each No definition for fcgi_s_iscgi -- View this message in
2013 Aug 29
2
Re: [PATCH V1 17/29] xen/arm: Mark each device used by Xen as disabled in DOM0 FDT
Hi Julien > On some board, there is no alias to the UART. To avoid modification in > the device tree, dt-uart should also search device by path. > > To distinguish an alias from a path, dt-uart will check the first character. > If it''s a / then it''s path, otherwise it''s an alias. > > Signed-off-by: Julien Grall <julien.grall@xxxxxxxxxx> >