search for: eci

Displaying 20 results from an estimated 56 matches for "eci".

Did you mean: ec2
2007 Feb 21
5
nut suddenly stopped working...
...ch - skipping No appropriate HID device found member The Internet Society (ISOC), The HTML Writers Guild. "You can't have in a democracy various groups with arms - you have to have the state with a monopoly on power." Condoleeza Rice, US Secretary of State Personal Website http://www.ecis.com/~alizard business Website http://www.reptilelabs.com backup address (if ALL else fails) alizard@gmail.com PGP 8.0 key available by request or keyserver. Download PGP from: http://www.pgpi.org for e-mail privacy. Disaster prep info: http://www.ecis.com/~alizard/y2k.html ***Looking for INTELLIGE...
2003 Jan 14
1
Help! My first VPN.
Hello everybody, I'm setting up my first virtual private network and I can't get thru with this problem. Here's my current configs: ***/etc/tinc/vpn/tinc.conf*** Name = eci-cebu ConnectTo = eci-sampaloc Device = /dev/net/tun PrivateKeyFile = /etc/tinc/vpn/rsa_key.priv *** ***/etc/tinc/vpn/tinc-up*** #!/bin/sh ifconfig $INTERFACE hw ether fe:fd:0:0:0:0 ifconfig $INTERFACE 10.10.10.1 netmask 255.255.0.0 -arp *** ***/etc/tinc/vpn/hosts/eci-cebu*** Address = 123.123.123...
2013 Jun 26
3
XYZ data
I have x, y, z data. The x, y fields dont change but Z does. How do I add a very small number onto the end of each x, y data point. For example: Original (X) Original (Y) Original (Z) 15 20 30 15 20 40 New (X) New (Y)
2010 Oct 15
1
Dealing with Non-Standard Hours
A data set I obtained has the hours running from 01 through 24 rather than the conventional 00 through 23. My favorite, strptime, balks at hour 24. I thought it would be easy to correct but it must be too late on Friday for my brain and caffeine isn't helping. TIA for a hint, Clint -- Clint Bowman INTERNET: clint at ecy.wa.gov Air Quality Modeler INTERNET: clint at math.utah.edu
2004 Jun 16
3
Aggregating on Water Year Rather Than Calendar Year
The US water year extends from 01 October yyyy-1 through 30 September yyyy and is referenced by the year starting on the included 01 January yyyy. I'd like to be able to find the annual means for the water year. To do so I've taken the input date-time, which is in the usual format "1991-10-07 10:35:00" changed it by: w$d<-as.POSIXct(w$date.time) Now I can add an
2012 Jan 13
2
Rozważania odnośnie storage?
...edniego serwera z postfix-em, kt?ry jest klientem NFS. Dane z jakiego serwera NFS host frontend z postfix-em powinien montowa? katalogi z poczt? s? w MySQL. Zastanawiamy si? nad zast?pieniem kilku host-?w storage jednym rozwi?zaniem, macierz? o odpowiedniej pojemno?ci dyskowej i wydajno?ci I/O. Mo?ecie podpowiedzie? plusy i minusy takiego rozwi?zania? Czy macierze zazwyczaj dysponuj? kilkukrotnie wi?ksz? wydajno?ci? I/O ni? pojedynczy serwer z dyskami SATA? Czy taka wydajno?? I/O jest skalowalna? Czy skalowa? przestrze? dyskow? w macierzach mo?na "bez ogranicze?"? Dzi?ki! Pozdrawiam,...
2004 Mar 29
1
Interesting Behavior in plot()
I have a 2 by 226200 table, conveniently read in by read.table(), which exhibits some strange behavior when plotted by plot(V1,V2). The general pattern for the range of windspeeds, [0<V1<50] is as expected -- the wind gust falls in the interval [V1<V2<65] except for certain values of V2. For V2 == c(15,26,37,48,59), the V2 values are positioned at one-tenth of the V1 (i.e., as if I
2013 Feb 20
3
NLS results different from Excel -- Tricky fortunes nomination
...the same for Excel 2003 and Excel 2007. The alleged > "improvements" for Excel 2010 have had not much practical effect. Excel > solver does have the virture that it will always produce an answer, > albeit one with zero accurate digits. > > To see an extended example of precisely how solver fails: > > B. D. McCullough > "Some Details of Nonlinear Estimation," Chapter Eight in > /Numerical Methods in Statistical Computing for the Social Sciences, / > Micah Altman, Jeff Gill and Michael P. McDonald, editors > New York: Wiley, 2004 > > I a...
2010 Sep 15
2
labeling outliers with subject numberss
How can I get the outlier in this boxplot of "Score" to be represented by the corresponding value in "SubNo"? score=c(6,6,7,14,5,7,6,8) SubNo=1:8 mydata=data.frame(SubNo, score) boxplot(mydata$score) Thanks! Kevin [[alternative HTML version deleted]]
2009 Feb 19
2
counting strings in a column
Dear All, I have a query : what is the command to count number of repeated words in a column. for ex: a = oranges oranges apples apples grape oranges apple pine the result should be oranges 3 apples 3 grape 1 pine 1 is there an easy way for this. Thanks, Nataraju GM R & D Bangalore -- "No relationship is Static .. You either Step up or Step down" [[alternative HTML
2009 Nov 20
2
how to draw image of a data distribution? Thanks
I have a file with 3 cols as: x y value 1 1 0.5000 1 2 1.8333 1 3 4.3333 2 1 0.7500 2 2 0.7500 2 3 4 3 1 0.7500 3 2 1.4167 3 3 5.1667 I read them in using p <- read.table("data.txt", header=TRUE) My questoin: how to draw a image to show the values at different positions (x, y)? I would like to see different colors for
2007 Feb 27
0
printing device node name (was Re: [Nut-upsuser] nut suddenly stopped working...)
On 2/27/07, A.Lizard <alizard@ecis.com> wrote: > terrarium:/home/alizard# /usr/local/ups/bin/newhidups -DDD -a belkin-ups > Network UPS Tools: 0.28 USB communication driver 0.28 - core 0.30 (2.0.5-pre2) > > debug level is '3' > Checking device (050D/0551) (002/006) the '002/006' part is "...
2011 Dec 21
1
Gps fraction of degrees function
Dear all,   I have the following written example > coords <- "51°30'48.58\"N" > > as.integer(strsplit(coords, "°")[[1]][1]) [1] 51 > as.integer(strsplit(strsplit(coords, "°")[[1]][2], "'")[[1]][1]) [1] 30 > as.numeric(strsplit(strsplit(strsplit(coords, "°")[[1]][2], "'")[[1]][2],
2011 Dec 27
2
importing NPDB
Does anyone have information about using the National Practitioner Data Bank (NPDB) in R? It's public use data available from the U.S. Department of Health and Human Services that can be downloaded as a .dat or .por file. I can't even figure out how to open the file in R. [[alternative HTML version deleted]]
2011 Feb 10
3
Finding length of unique numbers in a vector
Hello there, would you please look into my codes? Here I have following: > set.seed(100) > samp <- sample(c(1,-1,0), 20, replace=T); samp [1] 1 1 -1 1 -1 -1 0 -1 -1 1 -1 0 1 -1 0 0 1 -1 -1 0 Here I want to calculate the length of each unique number for above vector. How can I do that? Thanks in advance [[alternative HTML version deleted]]
2012 Apr 19
1
SmoothTrend in OpenAir
I'm trying to plot smooth trend using smoothTrend in OpenAir but I'm having problems. I used the following code. --------------------------------------------------------------------------------- #Set my working dir to the dir with my files setwd("c:/R") #Load the openair library library(openair) #Load the data mydata <- read.table("MCNP-pH.csv", header=TRUE,
2007 May 30
2
Smoothing a path in 2D
Hello, I'm currently trying to find a method to interpolate or smooth data that represent a trajectory in space. For example, I have an ordered (=time) set of (x,y) tuples which constitute a path in a 2D space. Is there a way using R to interpolate between these points in a way similar to spline interpolation so that I get a smooth path in space? Greetings, Dieter -- Dieter Vanderelst
2010 May 26
3
Peak Over Threshold values
Dear List I hope you can help me: I?ve got a dataframe (df) within which I am looking for Peak Over Threshold values as well as the length of the events. An event starts when walevel equals 5.8 and it should end when walevel equals the lower threshold value (5.35). I tried ?clusters (?)? from ?evd package?, and varied r (see example) but it did not work for all events (again
2014 Dec 22
0
hi VIPwatch -true! mggwhq deyanu
G00d day! unique watch .gratify your darling!- &#104;ttp&#58;/&#47;x.c&#111;/66&#113;&#53;A &#104;tt&#112;&#58;//x&#46;co/&#54;6q5&#67; &#104;&#116;tp:&#47;/x.&#99;o&#47;66q&#53;&#69; weu ecy lpvpt nia yj fivyp oicj nktmw k so kjy sx qdbg cmvm ejp z etxqa hcp sei mb i mybta ntaw s dwyl eaoj bwyb ud xiobk lu hvp wizhf
2004 Apr 06
2
Syntax Question
...] "1" I'd like to be able to retrieve, for example, the latitude as.numeric(strsplit(st,",")[[14395]][4]) and longitude as.numeric(strsplit(st,",")[[14395]][5]) for the entry in the structure where strsplit(st,",")[[14395]][5])=="KGEG" by specifying various station IDs. That is, if I had a simpler structure I could formulate a logical index which would have something along the lines of as.numeric(st[st[1]=="KSEA"][4]) and it would return 47.62139. Somewhere I'm getting all bollixed up with the indexing and keep getting...