search for: sup

Displaying 20 results from an estimated 270 matches for "sup".

Did you mean: smp
2011 Jan 11
0
modified FAST Script from package SensoMineR for the R community - Reg
...result from the ##function execution can't be more than one per code chunk). The nearest workaround would mean saving each graphical output as a image and reinserting the stored image of plots through multiple ##code chunks or a code chunk executing image insert in loops.. a bit tedious i suppose!). ## Decluttering overlapping labels produced by plot.MCA and plot.MFA function in SensoMineR (Refer the functions plot.MCA2 and plot.MFA2 for this feature) ##The fastmod function includes a call to plot.MCA2 and plot.MFA2 as well so the final output is also decluttered of overlapping lab...
2012 Apr 12
3
Remove superscripts from HTML objects
Is there some way to remove superscripts from objects returned by html/xmlParse (XML package)? h <- "<html><p>Cat<sup>a</sup></p><p>Dog</p></html>" doc <- htmlParse(h) xpathSApply(doc, "//p", xmlValue) [1] "Cata" "Dog" I could probabl...
2013 Apr 02
2
R Commander and FactoMineR
...ee variables (which is totally fine). Running the code (output of the point-and-click method) EuTop100.MCA<-EuTop100[, c("ország", "szektor", "székhely")] res<-MCA(EuTop100.MCA, ncp=5, graph = FALSE) plot.MCA(res, axes=c(1, 2), col.ind="black", col.ind.sup="blue", col.var="darkred", col.quali.sup="darkgreen", label=c("ind", "ind.sup", "quali.sup", "var", "quanti.sup"), invisible=c("", new.plot=TRUE)) plot.MCA(res, axes=c(1, 2), choix="var", col.var...
2013 May 15
0
[PATCH 1/2] Update comparison.html
I cleaned up comparison.html, making the comparison more fair and removing manufacturers that no longer have any new hardware supporting a certain format. The table is more readable now too. --- comparison.html | 86 +++++++++++++++++++++++++++++-------------------------- 1 file changed, 45 insertions(+), 41 deletions(-) diff --git a/comparison.html b/comparison.html index 9f36381..be88205 100644 --- a/comparison.html +++...
2013 Jun 01
1
error about MCA
Hi,all: I want to perform multiple correspondance analysis via MCA{FactoMineR}. The data is in the attachment. My code: dat<-read.delim("e:\\mydata.txt",header=T) MCA(dat,quanti.sup=7,quali.sup=1:6) Error in `[.data.frame`(tab, , i) : undefined columns selected My question: Why does the error happen? Many thanks. Best. -------------- next part -------------- An embedded and charset-unspecified text was scrubbed... Name: mydata.txt URL: <https://stat.ethz.ch/pipermail/r...
2006 Nov 29
1
sup 0.0.1 Released -- rubies for emails
Do you use rubies to read your emails? Well, sup version 0.0.1 has been released! http://sup.rubyforge.org Sup is an attempt to take the UI innovations of web-based email readers (ok, really just GMail) and to combine them with the traditional wholesome goodness of a console-based email client. Sup is designed to work with massive amounts of...
2012 Apr 12
1
Generate combination of strings
...positions of the 'objects' as in the future the number of 'objects' could increase. Is there a way to loop over these objects and generate the same output? The same goes for the 'maxspacer'. Thanks a whole bunch! Bart code: objects<-c('OCT','ASS','SUP') maxspacer<-c(2,3) for(x in 0:maxspacer[1]){ for(y in 0:maxspacer[2]){ combo<-c(objects[1],rep('',x),objects[2],rep('',y),objects[3]) print(combo) } } -- View this message in context: http://r.789695.n4.nabble.com/Generate-combination-of-strings-tp4552952p4552952.html...
2001 Sep 11
2
Differential Equations Using R?
To whom it may concern, I am a student at Macaleste College, and next semester Macalester is going to offer a course for CellBio that is mainly statistically based. For the most part the students will be using R for analysis. The problem is there will be some simple differential equations for the students to solve. The committee that in charge of the classes corriculam would like only to
2008 Mar 10
3
Only 5 tests out of 376 currently failing!
Good news! SuperRedCloth is down to just five failing tests! I was down to 10 or so in mid-February but then I added test cases from "The official reference manual for Textile 2", which added 97 new tests, many of them failing. I''m happy to say, they''re almost all passing now...
2012 Sep 11
1
lapply with different size lists?
...ctions (a and b) a = function(n) { matrix (runif(n*2,0.0,1), n) } > > > b = function (m, matrix) { > n=nrow (matrix) > p=ceiling (n/m) > lapply (1:p, function (l,n,m) { > inf = ((l-1)*m)+1 > if (l<p) sup=((l-1)*m)+m > else sup=n > data.frame (matrix (lapply (inf: sup, function(i) > c(i, Inf, matrix[i,1], matrix[i,2]) ), nrow=m ) ) > }, n=n, m=m > ) > } > > >my.matrix = a(7) > >my.matrix...
2007 Feb 12
0
sup 0.0.7 Released
And now, for some news about the only Ferret project that doesn''t involve Rails: sup version 0.0.7 has been released! http://sup.rubyforge.org Sup is a console-based email client that combines the best features of GMail, mutt, and emacs. Sup matches the power of GMail with the speed and simplicity of a console interface. Sup makes it easy to: - Handle massive amounts of email....
2012 Aug 06
1
cannot find function "simpleRDA2"
...,2,scale,center=TRUE,scale=Yscale) SS.Y <- sum(Y^2) X.out <- c(1:m) ## Find the first variable X to include in the model R2prev <- 0 R2cum <- 0 for(j in 1:m) { toto <- simpleRDA2(Y,X[,j],SS.Y) if(toto$Rsquare > R2cum) { R2cum <- toto$Rsquare no.sup <- j } } mm <- 1 FP <- FPval(R2cum,R2prev,n,mm,p) if(FP$pval <= alpha) { adjRsq <- RsquareAdj(R2cum,n,mm) res1 <- var.names[no.sup] res2 <- no.sup res3 <- R2cum res4 <- R2cum res5 <- adjRsq res6 <- FP$Fstat res7 <- FP$p...
2006 Nov 20
4
[LLVMdev] libstdc++ as bytecode, and compiling C++ to C
I've compiled all the object files that make up libstdc++ and libsupc++ into LLVM bytecode: http://goanna.cs.rmit.edu.au/~emil/libstdcxx.tar.bz2 (438KB) A simple test program, x.cpp: #include <iostream> int main() { std::cout << "hello world\n"; return 0; } $ llvm-g++ -emit-llvm -c x.cpp $ llvmc -o=out x.o std/*.o sup/*.o $ lli out.bc Seg...
2009 Dec 11
12
Literature analysis
Dear all, i am new in R. I am writing a review paper about batteries. However, i am interested in analyzing all the papers by keywords, author, references and year. This could be done by "refviz" a software, which is only running on windows machines and which is not free. So my question to you is, is it somehow possible to write a script that can do all of this work? And if yes, with
2008 Jan 06
1
Error .. missing value where TRUE/FALSE needed
Can any explain the following error: Error in if ((seedCount <= seedNumber) && (valueDiff > sup)) { : missing value where TRUE/FALSE needed which I get upon running this script: seedNumber <- 10 seeds <- array(dim = seedNumber) seedCount <- 1 maxValue <- 100 sup <- maxValue / 2 fcsPar <- array(as.integer(rnorm(100, 50, 10))) while (seedCount <= seedNumber) { fo...
2008 Jan 06
1
Error: missing value where TRUE/FALSE needed
Can any explain the following error: Error in if ((seedCount <= seedNumber) && (valueDiff > sup)) { : missing value where TRUE/FALSE needed which I get upon running this script: seedNumber <- 10 seeds <- array(dim = seedNumber) seedCount <- 1 maxValue <- 100 sup <- maxValue / 2 fcsPar <- array(as.integer(rnorm(100, 50, 10))) while (seedCount <= seedNumber) { fo...
2008 Jul 30
1
Converting to subscripts and superscripts
Hi, I am reading in a CSV file of chemical reactions where the subscripts and superscripts are encoded in angle brackets, like below: 2 H<SUP>+</SUP> + 2 O<SUB>2</SUB><SUP>-</SUP> Is there a way to convert these to actual sub/superscripts and save them in another excel file? I greatly appreciate the help! Thanks, -Nina PS. I asked this bef...
1995 Nov 20
0
Yet another sup server available (Australia)
I've setup a sup server on sup.physics.usyd.edu.au for use by people in Australia. It has current, ports and stable (except des, etc). The max number of connections is currently set to 10, and the daily sup updates begin at 3am local time (if a different time would be better, let me know). This machine is locate...
2011 Sep 02
0
No subject
...agent? My queue ring strategy= is set to ringall. I am using Polycom KIRK wireless DECT SIP phones. And i= t looks like the KIRK wireless server may need a split send to realize all = wireless phones are no longer ringing (busy) after 1 call rings &amp; is un= answered, prior to sending a 2<sup>nd</sup> call.<o:p></o:p></p><p class=3D= MsoNormal><o:p>&nbsp;</o:p></p><p class=3DMsoNormal>In other words, I think= that what we are currently experiencing is this: Incoming call gets routed= to our queue. It rings all phones. In the...
2013 Jun 04
3
Nokogiri::XML methods example
Hi, I am not able to find out a simple example to find out the how the method works: > Nokogiri::XML::EntityReference::new (http://nokogiri.org/Nokogiri/XML/EntityReference.html#method-c-new) > Nokogiri::XML::Document#canonicalize (http://nokogiri.org/Nokogiri/XML/Document.html#method-i-canonicalize) Thanks -- Posted via http://www.ruby-forum.com/. -- You received this message