search for: ds1

Displaying 20 results from an estimated 194 matches for "ds1".

Did you mean: ds
2002 May 27
2
hist failed with unused arguments
Hello, I urgently need a histogram of the vector geo1$ds1 but: > hist(geo1$ds1) Error in hist(geo1$ds1) : unused argument(s) ( ...) I can use density, summary, boxplot and stem with this vector but not hist ? Any suggestions ? Thanks in advance, Detlef Groth > density(geo1$ds1) Call: density(x = geo1$ds1) Data: geo1$ds1 (1412 obs.);...
2012 Mar 21
1
nlme error on dimensions in multiplication
...ject [34] In addition: Warning message: In conLin$Xy * varWeights(object) : longer object length is not a multiple of shorter object length Below is an example that generates this message on Windows XP R 2.14.0 nlme 3.1-103 --- library(nlme) #load(file="tmp/exampleNmleError.RData") #ds1, fm1, ctrl con <- url("http://www.bgc-jena.mpg.de/~twutz/tmp/exampleNmleError.RData") load(file=con) #ds1, fm1, ctrl close(con) ds1 <- subset(ds1, select=c("ColNoM","minT","resp")) head(ds1) plot( resp ~ minT, col=rainbow(length(unique(ColNoM)))[ColN...
2008 Apr 01
2
Applying rbind() to a sequence of data frame names
I have a set of data frames ds1, ds2, ... each having the same columns and column names: ds1 <- data.frame(x=c(1,2,3,4), y=c(5,6,7,8)) ds1 <- data.frame(x=c(9,10,11,12), y=c(13,14,15,16)) ... and I would like to combine them into just one data frame like ds <- rbind(ds1, ds2, ...) Because there are so many of...
2005 May 13
3
List and Column Names in a Function?
In this simple function, how can I pass strings for index and column names to the function? I've posted this type of question before and received no response. Maybe this example will be easier to understand and troubleshoot. ds <- function(myds, vec) {myds[[vec]]*2} ds1 <- c(X=list(1:10), Y=list(11:20)) ds(get("ds1"),get("Y")) khobson at odot.org Kenneth Ray Hobson, P.E. Oklahoma DOT - QA & IAS Manager Oklahoma City, OK 73105-3204
2007 Feb 22
4
Crosstabbing multiple response data
...comments from this list from 2002 and 2004, but the questioners appear to assume more knowledge than I have in use of R; the example in the posting guide was also more complex than I was ready for, I'm afraid.) Sample of some of my efforts: library(reshape) melt(ratings,id=c("id")) ds1 <- melt(ratings,id=c("id")) table(ds1$variable, ds1$variable) # returns only rowcounts, 3 along diagonal xtabs(formula = value ~ ds1$variable + ds1$variable , data=ds1) # returns only a single row of collapsed counts, appears to not allow 1 variable in multiple uses I suspect I am clo...
2005 Aug 10
2
ZAP bchan and dchan HELP!!
We have install a DS3 with 28 DS1's we have an Adtran MUX breaking out the DS1's, we are trying to setup the system with 2 dchannels for each 4 DS1's. Everything looks fine when modprobe zaptel and wct4xxp and ztcfg -vvvvvv but when I asterisk asterisk it says: Aug 10 16:33:32 ERROR[8954]: chan_zap.c:6750 mkintf: Ch...
2008 May 21
1
R help needed
...I have tried to upload data in R but it showing some error in command window. It's should be noted that I am using Mac version of R. I am using Mac-text for writing my data. I am getting following message on the command window. > source("/Users/kamleshkumar/Desktop/DS1.txt") Error in source("/Users/kamleshkumar/Desktop/DS1.txt") : /Users/kamleshkumar/Desktop/DS1.txt: unexpected symbol at 1: x y I am attaching the the DS1.txt file also with this mail. Please go through it and guide me about this. I am waiting for a reply...
2001 Jun 02
2
inout() in splancs working properly?
...r FreeBSD4.3-STABLE. The following script produces and draws points and a polygon-surrounded area. Repeating the same script many times shows, that points on the polygon-line often, but not always, are outside of the polygon-area. library(splancs) # dataset with polygon (convex hull) ds1 <- as.points(rnorm(10),rnorm(10)) ds1.poly <- ds1[chull(ds1),] # plot area within convex hull plot(ds1, type="n") polymap(ds1.poly, border="lightblue", col="lightblue", lwd=1) # Next dataset in and out of first one ds2 <- as.points(rn...
2005 May 18
1
from list to dataframe
I was wondering if someone can help me figure out the following: I have two patient datasets, ds1 and ds2. ds1 has fields "patid", "date", and "lab1". ds2 has "patid", "date", and "lab2". I want to find all the patids that have at least 2 dated records for each lab. I started by splitting each dataset by patid, to create ds1.lis...
2004 Apr 15
2
T1 Line install.. (UK Muppet)
...) In the UK when I asked for a E1, number of trunks required and the number of DID numbers, then they stick the socket on the wall! No mass question... I feel I'm a little out of my depth. Thanks in Advance for any help. David Stubbs ============= Questionnaire Follows ================= 1. DS1 Facilities Required: - Superframe or Extended (ESF/SF)? - Line Coding (B8ZS,AMI,. Etc.)? - Number of DS1 facilities required? - Channel numbers used for this trunk group? 2. Circuit Signaling (DS0 or DS1 Signal): DSO Analog Line Trunk Interface 2 wire, 4 wire, (or "na", not appl...
2004 May 07
1
Lattice xyplot - problem trying to produce multiple output files with a 'for' loop
........... lev <- levels(ds$TR) for (byvar in lev) { file.png <- paste("u:/data/R/Scatter_CTY_HWY_CO_TR", byvar, ".png", sep="") trellis.device( device="png", file=file.png, width=1000, height=1000, pointsize=20, bg="transparent" ) ds1 <- subset(ds, TR == byvar, select=c(CTY, HWY, CO)) xyplot( ds1$CTY ~ ds1$HWY, groups=ds1$CO, auto.key=list(space="right"), ylab="CTY", xlab="HWY") dev.off() } ......................................................... --Rich Richard Kittler AMD TDG 408-74...
2009 Sep 28
6
SAS user now converting to R - Help with Transpose
...2.4 TURB 10.2 14.6 18.5 17.3 and so on with more chemicals.... I would like to transpose my data so that it looks like this: Chemical WellID Value BOD Well1 13.2 BOD Well2 14.2 BOD Well3 15.5 BOD Well4 14.2 O2 Well1 7.8 O2 Well2 2.6 .... and so on In sas I would code it like this: proc sort data=ds1; by chemical; run; Proc Transpose data=ds1 out=ds2; by chemical; var Well1 Well2 Well3 Well4; run; data ds3; set ds2; rename _name_ = WellID; rename col1 = value; run; How can I do this in R?? Any help is much appreciated. Thanks! -- View this message in context: http://www.nabble.com/SAS-user-...
2016 Apr 30
4
Removing NAs from dataframe (for use in Vioplot)
...and a relative R newbie.... I am using the vioplot library to produce some violin plots. I have an input CSV with columns off irregular length that contain NAs. I want to strip the NAs out and produce a multiple violin plot automatically labelled using the headers. At the moment I do this Code:? ds1 = read.csv("http://www.lecturematerials.co.uk/data/spelling.csv") library(vioplot) y6<-na.omit(ds1$y6) y5<-na.omit(ds1$y5) y4<-na.omit(ds1$y4) y3<-na.omit(ds1$y3) y2<-na.omit(ds1$y2) y1<-na.omit(ds1$y1) vioplot(y6, y5, y4,y3,y2,y1,horizontal=TRUE, names=c("Y6",...
2013 Jun 12
1
ILEC Interconnect
Hello Everyone, We are looking to interconnect with a local ILEC over an OC-n transport layer. They basically gave us two options in terms of mapping the SONET to the DS3: * VT1.5s mapping * DS1s mapping The second option is quite clear. We would MUX the connection, and plug the lines into qaud t1 cads etc... The tech mentioned that with the second option we would also need a DACS to convert back to M13 mapping. I was scared to tell him that I could not follow can someone explain that to...
2009 Dec 31
1
xyplot - help with multiple Y's vs. X of a member data in multiple panels
Dear R experts, Wish you all a HAPPY NEW YEAR! How do I go about plotting (using lattice) overlays of an ID (group=ID) observed, fitted data in each panel of a multiple panel plot (each panel identified by DS1 + DS2 + DS3)? "x" variable is X1 in the accompanying section of a dataset. each individual is identified by color and Y's are identified by "pch" or "lty". I guess the code goes something like the one below, but could not get the proper use of panel functions.......
2002 Jul 10
3
2 simple doubts
...... 1) I couldn't discover what is the command for a concatenation of 2 variable strings. 2) For example, if I have three variable strings, and each one has the name of a variable in a data matrix: a<-V1 b<-V2 c<-V3 , is it possible to construct a command like this: tree(a~b+c,data=DS1) , that would do the job of tree(V1~V2+V3,data=DS1) ? I know that how I've written here doesn't work, but I hope I've explained well what I'd like to do. Thanks. Sincerely, -- Frederico Zanqueta Poleto fred at poleto.com - ICQ# 4129787 -.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-....
2004 Apr 15
2
TE405P + Adit 600 and FXO module - should this work?
...ngs flying, I do: modprobe zaptel modprobe wct4xxp which causes the TE405P card to activate, but show a single flashing red alarm on the configured span. The Adit's TDM controller also displays a solid red LED. Here's its status: Adit 600> status a:1 SLOT A: Status for DS1 1: Receive: Loss of Signal Transmit: RAI/Yellow Alarm Loopback: OFF Adit 600> I'm not sure I have the DS1 configured appropriately. It says: Adit 600> show a:1 SLOT A: Settings for DS1 1: Circuit ID...
2013 Oct 06
0
Options to turn off/on for reliable virtual machinewrites & write performance
...of the cluster is that it should survive an unclean node death (test scenario by hard removing disks or cutting power, etc...), by which I need to make sure all writes are completed on both nodes before gluster returns the operation as completed. For now, I have this: gluster> volume info ha-ds1 Volume Name: ha-ds1 Type: Replicate Volume ID: da2fb668-2f3e-4839-a5da-4a51d5fcba05 Status: Started Number of Bricks: 1 x 2 = 2 Transport-type: tcp Bricks: Brick1: 10.255.255.1:/vol/gluster/ha-ds1 Brick2: 10.255.255.2:/vol/gluster/ha-ds1 Options Reconfigured: cluster.self-heal-daemon: on...
2007 Sep 03
3
plotting predicted curves with log scale in lattice
...led a bug, I haven't picked up an indication that would lead me to expect this in the documentation. I admit that if I had a deeper understanding of lattice and/or grid, it might be clearer why... Here is a toy example illustrating the behavior (there may be a more efficient way to do this), ds1 <- data.frame( RR = rep(seq(0, 1, len = 5)^2, 2) + rnorm(10, sd = 0.1), LL = rep(10^seq(1, 5), 2), FF = factor(rep(letters[1:2], each = 5)) ) ds2 <- data.frame(RR = rep(seq(0, 1, len = 20)^2, 2), LL = rep(10^seq(1, 5, len = 20), 2), FF = factor(rep(lett...
2013 Jun 25
2
[LLVMdev] tablegen question
...ify in a tablegen pattern that all destination registers are also source registers? I know I could just duplicate them, but I was wondering if there was a way it could be done without doing this. Basically an inplace operation. So for example, take a hypothetical swap w/ sqrt. if I had swap $ds0, $ds1 which swaps ds1 and ds0 and applies sqrt on the registers afterwards. Micah -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20130625/76068770/attachment.html>