search for: sps

Displaying 20 results from an estimated 124 matches for "sps".

Did you mean: ops
2005 Aug 15
3
How to repeat code snippet for several variables in a data frame?
...colnames(tmp) <- c("bins", "groups", "abc") tmp #pltName <- paste("line_datGrassChem_", "abc", ".eps", sep="") #postscript(pltName) labs <- c("-15/-9","-9/-6","-6/-3","-3/0") sps <- trellis.par.get("superpose.symbol") sps$pch <- 1:4 trellis.par.set("superpose.symbol", sps) xyplot( abc ~ bins, data = tmp, groups = groups, type = list("p", "l"), scales = list(x = list(labels=labs)), layout = c(1,1), ke...
2008 Nov 24
2
how to read .sps (SPSS file extension)?
Hi everyone, I'm trying to import .sps (SPSS portable file) file. the read.spss function (library foreign) doesn't allow to import such files. should I import in spss and then save as sav file? there is not other solutions available? what I mostly like from spss file is that they have variable labels. want is really wish to keep are...
2005 Sep 17
4
xyplot and abline
Dear All, I wonderif there is a simple way to draw a regression line in the xyplot: more specifically, let: age <- c(20:30, 31:40 ) age.cut <- cut(age, breaks = 2 ) y<- rnorm(20) x <- rnorm(20,4,1) xyplot(y ~ x| age.cut, xlab="x", ylab="y") How to draw (in the plot given by xyplot) the two regression lines (y ~ x) corresponding to the two category
2013 Nov 08
2
Salicru SPS One in Debian
Hello, I have a Salicru SPS One 700VA device, I want to manage it with Debian Whezzy. I read some information in the net about how to configure but I can not get it working. Could you help with this? This is the log when I connect the USB: [ 3194.688204] usb 4-4: new low-speed USB device number 2 using ohci_hcd [ 3194.857...
2011 Sep 28
2
apply lm function to dataset split by two variables
Dear all, I am not fluent in R and am struggling to 1) apply a lm to a weight-size dataset, thus the model has to run separately for each species, each year; 2) extract coefs, r-squared, n, etc. The data look like this: year sps cm w 2009 50 16 22 2009 50 17 42 2009 50 18 45 2009 51 15 45 2009 51 16 53 2009 51 17 73 2010 50 15 22 2010 50 16 41 2010 50 16 21 2010 50 17 36 2010 51 15 43 2010 51 16 67 2010 51 17 79 The following script works for data from a single year, but I don...
2013 Nov 02
4
[LLVMdev] get function local debug info?
...opt. Do I need to enable any other analysis passes in order to populate the data? My related snippet of code is like the following: NamedMDNode *M_Nodes = M.getNamedMetadata("llvm.dbg.cu"); for (unsigned i = 0, e = M_Nodes->getNumOperands(); i != e; ++i) { DIArray SPs = CU.getSubprograms(); for (unsigned i = 0, e = SPs.getNumElements(); i != e; ++ i) { DISubprogram SP(SPs.getElement(i)); DIArray Vars = SP.getVariables(); for (unsigned i2 = 0, e2 = Vars.getNumElements(); i2 != e2; ++i2) { DIVariable DV(Vars.getElement(...
2011 Oct 28
3
[LLVMdev] DIBuilder - what's with the null compile units?
...e in AllSubprograms. > > // Create a named metadata so that we do not lose this mdnode. > > > AllSubprograms.push_back(Node); > > And follow AllSubprograms in DIBuilder::finalize() > > I traced through the code in DIBuilder::finalize(): *for* (*unsigned* i = 0, e = SPs.getNumElements(); i != e; ++i) { DISubprogram SP(SPs.getElement(i)); *if* (NamedMDNode *NMD = getFnSpecificMDNode(M, SP)) { SmallVector<Value *, 4> Variables; *for* (*unsigned* ii = 0, ee = NMD->getNumOperands(); ii != ee; ++ii) It looks as if getFnSpecificMDNode() is...
2013 Nov 09
0
Salicru SPS One in Debian
On Nov 8, 2013, at 3:23 AM, Josu Lazkano wrote: > Hello, I have a Salicru SPS One 700VA device, I want to manage it with > Debian Whezzy. > > I read some information in the net about how to configure but I can > not get it working. I'm assuming you mean this blog post? http://blog.ciberterminal.net/2013/04/28/ups-salicru-en-nut/ > Could you help with t...
2005 Apr 22
1
Help needed with lattice graph!
...) tmp <- expand.grid(geology = c("Sand","Clay","Silt","Rock"), species = c("ArisDiff","BracSera","CynDact","ElioMuti","EragCurS","EragPseu"), dist = seq(1,9,1) ) tmp$height <- rnorm(216) sps <- trellis.par.get("superpose.symbol") sps$pch <- 1:6 trellis.par.set("superpose.symbol", sps) xyplot( height ~ dist | geology, data = tmp, groups = species, type = "b", cex = 1.2, layout = c(2,2), lines = list(col="grey"), key =...
2011 Oct 28
0
[LLVMdev] DIBuilder - what's with the null compile units?
...> AllSubprograms.push_back(Node); > > And follow AllSubprograms in DIBuilder::finalize() > > I traced through the code in DIBuilder::finalize(): > for (unsigned i = 0, e = SPs.getNumElements(); i != e; ++i) { > DISubprogram SP(SPs.getElement(i)); > if (NamedMDNode *NMD = getFnSpecificMDNode(M, SP)) { > SmallVector<Value *, 4> Variables; > for (unsigned ii = 0, ee = NMD->getNumOperands(); ii != ee; ++ii) > > It looks as if g...
2013 Nov 09
1
Salicru SPS One in Debian
...es. With arno's words: "We are currently merging a new driver to replace blazer_* and would also appreciate feedback on this if you can." 2013/11/9 Charles Lepple <clepple at gmail.com>: > On Nov 8, 2013, at 3:23 AM, Josu Lazkano wrote: > >> Hello, I have a Salicru SPS One 700VA device, I want to manage it with >> Debian Whezzy. >> >> I read some information in the net about how to configure but I can >> not get it working. > > I'm assuming you mean this blog post? > > http://blog.ciberterminal.net/2013/04/28/ups-salicru-en...
2005 Feb 10
1
xyplot() question
...lot() where different plotting symbols are used for subgroups (originally used within S-Plus, but hopefully it?s also applicable to R users). How can I fit separate regression lines for every subgroup? So far, I can only plot the overall fitted line. The code looks like this: trellis.device() sps<-trellis.par.get("superpose.symbol") sps$pch<-1:7 trellis.par.set("superpose.symbol",sps) spl <- trellis.par.get("superpose.line") ps$lty <- 1:7 trellis.par.set("superpose.line",spl) xyplot(a~b|factor+treatment, groups=external,data=o...
2009 Jun 19
1
Adding site id to xyplot
...ons in each site. I was able to make a graph using xyplot, however, I can't find how to add site IDs within the graph not adding them in the legend. Overall, I would like to be able to recognize lines matching respective site IDs. Here is the code (source: MASS) I used below: library(lattice) sps <- trellis.par.get("superpose.symbol") sps$pch <- 1:13 trellis.par.set("superpose.symbol", sps) xyplot(CADapt~Date, data= omni.sb08, groups=Plot2, panel = panel.superpose, type="b" ) Thank you very much in advance! Steve Hong
2009 Jan 16
2
Questions on the state of the UPS market
...abandoned, though it is still visible in the model numbers in the pictures on the boxes. The source of my confusion is this. I learned years ago to distinguish between three categories of product: 1. Line conditioners (LCs) and surge suppressors. The are just spike filters, with no battery. 2. SPS = Standby power supply. These normally filter mains power, switching to a battery when the mains have a dropout. 3. UPS = Uninterruptible Power Supply. These continuuosly feed power to a battery, which discharges continuously to run the equipment. When the mains go down, the battery stops chargi...
2010 Dec 06
3
Please help with write.foreign(SPSS)
Dear all, I get stuck when i try to export the data into SPSS format/file using "write.foreign()" Do you know how to do it exactly? What i have done is 1) First i type the following code in R: df<-data.frame(id,year,res1) names(df)<-c("idcode","year","resarrvl") write.foreign(df,"z:/daten/res.dat",&qu...
2010 Apr 27
0
NULL variable read in from SPS
Hello all, I'm having difficulty getting one particular variable into R from SPSS v. 16.0 for mac. R version is 2.10.1. I saved the relevant variables from SPSS into a .csv file and then read them into R. All the variables worked fine, except for one (enviro_spending). In the SPSS file it is correctly coded as a nominal variable and there is nothing that I can tell...
2005 Jun 09
0
Flash Hook won't work with Asterisk@Home and SPS-2002
Greetings, I have one PSTN line connected to my Asterisk@ Home box with call waiting. I also have an SPA-2002 connected to an analog phone. When I am calling on the PSTN and a call waiting beep comes through, I can hear it, but when I press the flash key, nothing happens. It is as if the Sipura is not passing the flash through. I monitor the asterisk box with the verbosity turned up, but
2013 Jan 02
1
Dell EMC 118031985 SPS - nothing but questions
I was wondering if anyone has seen anything like this standby power supply for Dell servers. http://www.ebay.co.uk/itm/200824909297?ssPageName=STRK:MEWNX:IT&_trksid=p3984.m1497.l2649 I made up a cable and can connect to it at 9600 baud 8N1. The problem is that all it ever does is respond with a "?" and ends it with a LF it does this whenever it recieves a LF - I'm begining to
2013 Nov 03
0
[LLVMdev] get function local debug info?
...le any other analysis passes in order to populate the data? > > My related snippet of code is like the following: > > NamedMDNode *M_Nodes = M.getNamedMetadata("llvm.dbg.cu"); > for (unsigned i = 0, e = M_Nodes->getNumOperands(); i != e; ++i) { > DIArray SPs = CU.getSubprograms(); > for (unsigned i = 0, e = SPs.getNumElements(); i != e; ++ i) { > DISubprogram SP(SPs.getElement(i)); > DIArray Vars = SP.getVariables(); > for (unsigned i2 = 0, e2 = Vars.getNumElements(); i2 != e2; ++i2) { > DIVariable...
2013 Nov 03
0
[LLVMdev] get function local debug info?
...;> data? >>> >>> My related snippet of code is like the following: >>> >>> NamedMDNode *M_Nodes = M.getNamedMetadata("llvm.dbg.cu"); >>> for (unsigned i = 0, e = M_Nodes->getNumOperands(); i != e; ++i) { >>> DIArray SPs = CU.getSubprograms(); >>> for (unsigned i = 0, e = SPs.getNumElements(); i != e; ++ i) { >>> DISubprogram SP(SPs.getElement(i)); >>> DIArray Vars = SP.getVariables(); >>> for (unsigned i2 = 0, e2 = Vars.getNumElements(); i2 != e2; &...