I "experiment" with the Fedora distribution at home but am very satisfied
with the Scientific Linux distribution here at work--I'm currently using
SL7.2.
Clint BowmanINTERNET: cl...@ecy.wa.gov
Air Quality Modeler INTERNET: cl..
Mark,
I did something similar a couple of year ago by coding non-events as 0,
positive events as +1 and negative events as -1 then summing the value
through time. In my case the patterns showed up quite clearly and I used
other criteria to define the actual periods.
Clint
Clint Bowman
After:
survey <-
read.csv(file="http://www.maths.usyd.edu.au/u/UG/IM/STAT2012/r/survey.csv";)
do:
summary(survey)
then bone up on "attach" and "with".
Clint BowmanINTERNET: cl...@ecy.wa.gov
Air Quality Modeler IN
Hanna,
lili<-read.table("lili.txt",header=T) # don't forget to label the row
number if it's in your data
with(lili,plot(y,conc,pch=sample,col=sample))
Clint
Clint BowmanINTERNET: cl...@ecy.wa.gov
Air Quality Modeler INTERNET:
with(lili,plot(y,conc,pch=sample,col=sample,log="y"))
gives a better plot
Clint BowmanINTERNET: cl...@ecy.wa.gov
Air Quality Modeler INTERNET: cl...@math.utah.edu
Department of Ecology VOICE: (360) 407-6815
PO
Perhaps:
dog <- 1:3
cat <- 2:4
tree <- 5:7
big.char <- cbind(dog,cat,tree)
big.char
dog cat tree
[1,] 1 25
[2,] 2 36
[3,] 3 47
colnames(big.char)<-c("dog","cat","tree")
big.char
dog cat tree
[1,] 1 25
?source
as in source("pairwise-plots-continuous-vars.R")
then
plotpairs(first,second,third,wise,title)
should get you going
Clint BowmanINTERNET: cl...@ecy.wa.gov
Air Quality Modeler INTERNET: cl...@math.utah.edu
Department
Any problem with
colSums(md==5, na.rm=T)
Clint BowmanINTERNET: cl...@ecy.wa.gov
Air Quality Modeler INTERNET: cl...@math.utah.edu
Department of Ecology VOICE: (360) 407-6815
PO Box 47600FAX:(360) 407
It would help if I could see beyond my allergy meds.
A start could be:
colSums(subset(md,md$device==1)==5,na.rm=T)
colSums(subset(md,md$device==2)==5,na.rm=T)
colSums(subset(md,md$device==3)==5,na.rm=T)
Clint BowmanINTERNET: cl...@ecy.wa.gov
Air Quality Modeler
May want to add headers but the following provides the device number with
each set fo sums:
for (dev in (unique(md$device)))
{cat(colSums(subset(md,md$device==dev)==5,na.rm=T),dev,"\n")}
Clint BowmanINTERNET: cl...@ecy.wa.gov
Air Quality Modeler
Thanks, Dimitri. Burt is the real wizard here--I'll bet he can conjure up
an elegant solution.
For me, just reaching a desired endpoint is enough.
Clint
Clint BowmanINTERNET: cl...@ecy.wa.gov
Air Quality Modeler INTERNET: cl...@math.uta
utions.
Clint
Clint BowmanINTERNET: cl...@ecy.wa.gov
Air Quality Modeler INTERNET: cl...@math.utah.edu
Department of Ecology VOICE: (360) 407-6815
PO Box 47600FAX:(360) 407-7534
Olympia, WA 98504-7600
1 1 0 0 0 0 0
8 8 2015 1 4 0.617127 1 1 0 1 0 1 0 0 0 15
9 9 2015 1 4 0.399207 1 1 0 0 0 0 0 0 0 10
Clint
Clint BowmanINTERNET: cl...@ecy.wa.gov
Air Quality Modeler INTERNET: cl...@math.utah.edu
Departme
I'd also suggest plotting a wind rose for each month (try openair) to
understand the statistical test results.
Clint BowmanINTERNET: cl...@ecy.wa.gov
Air Quality Modeler INTERNET: cl...@math.utah.edu
Department of Ecology
Ian,
ls() is your friend. To learn more about ls(), type ?ls
Clint
Clint BowmanINTERNET: cl...@ecy.wa.gov
Air Quality Modeler INTERNET: cl...@math.utah.edu
Department of Ecology VOICE: (360) 407-6815
PO Box 47600
Alexandra, Although you may not have control over the installation of R,
2.15.1 is very old and should be upgraded--the current is 3.1.2
Clint BowmanINTERNET: cl...@ecy.wa.gov
Air Quality Modeler INTERNET: cl...@math.utah.edu
Department of Ecology
or:
with(yourData,table(year,month,yourData[["rain"]]>0))
Clint BowmanINTERNET: cl...@ecy.wa.gov
Air Quality Modeler INTERNET: cl...@math.utah.edu
Department of Ecology VOICE: (360) 407-6815
PO Box 47600
Jim,
Have you looked at:
names: group labels which will be printed under each boxplot. Can
be a character vector or an expression (see plotmath).
You could use "" where you want a blank. I believe that "at" may work
here also.
Clint
Clint Bowman
Try:
plot(Date,MORTSBu,lwd=2,lty="dashed",axes=F,xlab="",ylab="")
Clint BowmanINTERNET: cl...@ecy.wa.gov
Air Quality Modeler INTERNET: cl...@math.utah.edu
Department of Ecology VOICE:
Agreed--I neglected to add the secondary y-axis (shouldn't hit send so
fast.)
Clint BowmanINTERNET: cl...@ecy.wa.gov
Air Quality Modeler INTERNET: cl...@math.utah.edu
Department of Ecology VOICE: (360) 407-6815
PO Box
Because the range is so different between the two series, I'd suggest
using log="y", ylim=c(500,2)
Clint BowmanINTERNET: cl...@ecy.wa.gov
Air Quality Modeler INTERNET: cl...@math.utah.edu
Department of Ecology VOICE:
Your question seems to need an answer to, "How do you find a convex hull
on a sphere?" Google has many references.
Clint BowmanINTERNET: cl...@ecy.wa.gov
Air Quality Modeler INTERNET: cl...@math.utah.edu
Department of Ecology
I'm in a similar situation and am looking seriously at a pair of E5-2643v3
(6 cores each-hyperthreaded).
Clint BowmanINTERNET: cl...@ecy.wa.gov
Air Quality Modeler INTERNET: cl...@math.utah.edu
Department of Ecology VOICE: (360
?write.csv 2nd line of Usage: example
Clint BowmanINTERNET: cl...@ecy.wa.gov
Air Quality Modeler INTERNET: cl...@math.utah.edu
Department of Ecology VOICE: (360) 407-6815
PO Box 47600FAX:(360) 407-7534
?rle
Clint BowmanINTERNET: cl...@ecy.wa.gov
Air Quality Modeler INTERNET: cl...@math.utah.edu
Department of Ecology VOICE: (360) 407-6815
PO Box 47600FAX:(360) 407-7534
Olympia, WA 98504-7600
?read.fortran
Clint BowmanINTERNET: cl...@ecy.wa.gov
Air Quality Modeler INTERNET: cl...@math.utah.edu
Department of Ecology VOICE: (360) 407-6815
PO Box 47600FAX:(360) 407-7534
Olympia, WA 98504-7600
Eliza,
Would transforming to UTM coordinates work?
Clint
Clint BowmanINTERNET: cl...@ecy.wa.gov
Air Quality Modeler INTERNET: cl...@math.utah.edu
Department of Ecology VOICE: (360) 407-6815
PO Box 47600FAX
step. Similarity of vectors could be an indication of interaction.
Clint
Clint BowmanINTERNET: cl...@ecy.wa.gov
Air Quality Modeler INTERNET: cl...@math.utah.edu
Department of Ecology VOICE: (360) 407-6815
PO Box 47600
t;tz="PST".
I hope I've been missing something simple--any suggestions?
TIA
Clint
Clint BowmanINTERNET: cl...@ecy.wa.gov
Air Quality Modeler INTERNET: cl...@math.utah.edu
Department of Ecology VOICE: (360) 407-6815
PO Box
Martin,
I grew up in the Midwest of the United States--about as native English
speaker as you could find. I was taught exactly the same as you have
learned.
Clint
Clint BowmanINTERNET: cl...@ecy.wa.gov
Air Quality Modeler INTERNET: cl
Are you rying to find clusters of variables according to some distance
metric?
Clint BowmanINTERNET: cl...@ecy.wa.gov
Air Quality Modeler INTERNET: cl...@math.utah.edu
Department of Ecology VOICE: (360) 407-6815
PO Box 47600
ect.org/posting-guide.html
and provide commented, minimal, self-contained, reproducible code.
--
Clint BowmanINTERNET: cl...@ecy.wa.gov
Air Quality Modeler INTERNET: cl...@math.utah.edu
Department of Ecology VOICE: (360) 407-6815
PO Bo
d provide commented, minimal, self-contained, reproducible code.
__
R-help@r-project.org mailing list
https://stat.ethz.ch/mailman/listinfo/r-help
PLEASE do read the posting guide http://www.R-project.org/posting-guide.html
and provide commented, minim
forgotten too much
of my fortran and C programming skills to contribute directly to
the R Project.
Clint
--
Clint BowmanINTERNET: cl...@ecy.wa.gov
Air Quality Modeler INTERNET: cl...@math.utah.edu
Department of Ecology VOICE: (360) 4
or y
values to obtain the desired effect).
Clint BowmanINTERNET: cl...@ecy.wa.gov
Air Dispersion Modeler INTERNET: cl...@math.utah.edu
Air Quality Program VOICE: (360) 407-6815
Department of Ecology FAX:(360) 407
Charlotte,
Try:
birds.lo <- loess(piproute~year,span=.25)
# play with span to see your desired pattern
birds.pr<-predict(birds.lo, data.frame(year = seq(1967, 2009, 1)),
se = FALSE)
#
plot($year,birds.pr$fit,ylim=c(0,5))
par(new=T)
plot(year,birds.pr$fit,pch="+",col=2,ylim=c(
Charlotte,
Try:
library(msProcess) # you may have to install msProcess
year[peaks(birds.pr$fit)]
--
Clint BowmanINTERNET: cl...@ecy.wa.gov
Air Quality Modeler INTERNET: cl...@math.utah.edu
Department of Ecology VOICE: (360) 407
th a sensor. Do we also have to detect the
pawing of a "micro-mouse" as well?
The collected data also seem to have other parameters which would
be valuable--are you limited to just temperature?
Clint
--
Clint BowmanINTERNET: cl...@ecy.wa.gov
Air Quality Mo
that you expect
a day-of-week dependence? If so, I'd be more comfortable if you
used more than one week to develop it.
I fear that you've gotten me quite interested in this analysis,
good luck.
Clint
--
Clint BowmanINTERNET: cl...@ecy.wa.gov
Air Quality Mod
with(p,plot(x,y,pch=20,col=1+as.integer(value)))
--
Clint BowmanINTERNET: cl...@ecy.wa.gov
Air Quality Modeler INTERNET: cl...@math.utah.edu
Department of Ecology VOICE: (360) 407-6815
PO Box 47600FAX
Most Windows computers in my neighborhood have been upgraded to 64 bit.
Clint BowmanINTERNET: cl...@ecy.wa.gov
Air Quality Modeler INTERNET: cl...@math.utah.edu
Department of Ecology VOICE: (360) 407-6815
PO Box 47600
I'm sure the OP has reasons to reorder the months as shown but his data
seems to argue that he shouldn't split the wet season (Oct - Apr) but
should, instead, tack the 1972 months (Jan - Aug after the 1971 months
(Sep - Dec).
Clint
Clint BowmanINTERNET
Sure looks as if that second "--..." line is causing
another attempt at parsing for varkey and unitkey which for 70.0 and 59.6
just won't make sense to getsonde.
It's a pain but I'd experiment by removing that second "----..." line.
Clint
nalysis System--am I
missing something?
Clint
Clint BowmanINTERNET: cl...@ecy.wa.gov
Air Quality Modeler INTERNET: cl...@math.utah.edu
Department of Ecology VOICE: (360) 407-6815
PO Box 47600FAX:(360) 407-75
Second item in Google, searching for "Liddle Exact test McNemar test" was
"cran.r-project.org/web/packages/exact2x2/vignettes/exactMcNemar.pdf"
Guess you should have looked before asking.
Clint BowmanINTERNET: cl...@ecy.wa.gov
Air Quality Modeler
agic will display them as if they are.
A little digging into the r-help archives will find further explanation.
Clint
Clint BowmanINTERNET: cl...@ecy.wa.gov
Air Quality Modeler INTERNET: cl...@math.utah.edu
Department of Ecology VOICE:
I suspect the OP may want
rep(1:length(unique(x)), rle(x[order(x)])$lengths)[order(order(x))]
to allow for variable numbers of unique values.
Clint
Clint BowmanINTERNET: cl...@ecy.wa.gov
Air Quality Modeler INTERNET: cl...@math.utah.edu
Department
John,
That still leaves a string of identical numbers in the vector.
Shane,
?jitter
perhaps jitter(X,1,0.0001)
Clint
Clint BowmanINTERNET: cl...@ecy.wa.gov
Air Quality Modeler INTERNET: cl...@math.utah.edu
Department of Ecology VOICE
perhaps
x<-x+0.1*seq(1,length(x))
Clint BowmanINTERNET: cl...@ecy.wa.gov
Air Quality Modeler INTERNET: cl...@math.utah.edu
Department of Ecology VOICE: (360) 407-6815
PO Box 47600FAX:(360)
1),TRUE, rep(FALSE, 36-start+1))]
# [1] 37 74 111 148 185 222 259 296 333 370 407 444
Clint BowmanINTERNET: cl...@ecy.wa.gov
Air Quality Modeler INTERNET: cl...@math.utah.edu
Department of Ecology VOICE: (360) 407-6815
?duplicated
Clint BowmanINTERNET: cl...@ecy.wa.gov
Air Quality Modeler INTERNET: cl...@math.utah.edu
Department of Ecology VOICE: (360) 407-6815
PO Box 47600FAX:(360) 407-7534
Olympia, WA 98504-7600
A bit kludgey but how about:
dimMat <- matrix(0, 1000, 4)
for(i in 1:1000){
while(sum(dimMat[i, ] <- sample(c(0,1), 4, replace = TRUE, prob = c(.3, .7)))==0)
dimMat[i, ] <- sample(c(0,1), 4, replace = TRUE, prob = c(.3, .7))
}
table(rowSums(dimMat))
Clint Bowman
?sort,
?unique, and
subset come to mind.
Clint BowmanINTERNET: cl...@ecy.wa.gov
Air Quality Modeler INTERNET: cl...@math.utah.edu
Department of Ecology VOICE: (360) 407-6815
PO Box 47600FAX:(360) 407
There is the error message:
Error : package ‘lattice’ was built before R 3.0.0: please re-install it
Perhaps the problem lies there.
Clint BowmanINTERNET: cl...@ecy.wa.gov
Air Quality Modeler INTERNET: cl...@math.utah.edu
Department of Ecology
Don,
Thanks for the brilliant summary of my thoughts.
Clint
Clint BowmanINTERNET: cl...@ecy.wa.gov
Air Quality Modeler INTERNET: cl...@math.utah.edu
Department of Ecology VOICE: (360) 407-6815
PO Box 47600FAX
Clint BowmanINTERNET: cl...@ecy.wa.gov
Air Quality Modeler INTERNET: cl...@math.utah.edu
Department of Ecology VOICE: (360) 407-6815
PO Box 47600FAX:(360) 407-7534
Olympia, WA 98504-7600
USPS
Jason,
Thanks--I've found an RSS feed from EPA very useful and will check
Stackoverflow's.
Clint
Clint BowmanINTERNET: cl...@ecy.wa.gov
Air Quality Modeler INTERNET: cl...@math.utah.edu
Department of Ecology VOICE: (360
Azam,
If you also have z ~ f(x,y) you can produce contours.
Otherwise, you could look at package hexbin.
Clint
Clint BowmanINTERNET: cl...@ecy.wa.gov
Air Quality Modeler INTERNET: cl...@math.utah.edu
Department of Ecology VOICE
Greg,
For some authors the 4th page from the back should be the first page.
Not so for you, however.
Clint
Clint BowmanINTERNET: cl...@ecy.wa.gov
Air Quality Modeler INTERNET: cl...@math.utah.edu
Department of Ecology VOICE: (360
I suspect the space in the filename could be the throwing the parser
off--you may need some "" around the filename or fill the space with an
underscore.
Clint
Clint BowmanINTERNET: cl...@ecy.wa.gov
Air Quality Modeler INTERNET: cl...@mat
5.2 won't go into 4 but there may be more problems.
32-bit or 64 bit operating system?
RAM is cheap but will your motherboard support more than 4 GB?
And don't forget there are other processes that need to run while you are
using R.
Clint BowmanINTERNET
You are close--think "names", not "titles", as in rownames or colnames (no
reason to completely spell out column). Summary already gave you the
column names, so type "?rownames" to learn more.
Clint BowmanINTERNET: cl...@
or
with(score.plot(X1, X2))
Clint BowmanINTERNET: cl...@ecy.wa.gov
Air Quality Modeler INTERNET: cl...@math.utah.edu
Department of Ecology VOICE: (360) 407-6815
PO Box 47600FAX:(360) 407-7534
Olympia
ind,data.diff,type="b"))
abline(h=0)
there is also a pretty strong two week signal--is that of any interest?
Now you should be able to decide how to proceed.
Clint
Clint BowmanINTERNET: cl...@ecy.wa.gov
Air Quality Modeler INTERNET:
Just guessing, would the following help?
list1 <- c("john", "eric", "steve", "john", "eric", "scott", "john")
list2 <- c("john", "john", "john", "eric", "eric"
?which.max should start you down the right path
Clint BowmanINTERNET: cl...@ecy.wa.gov
Air Quality Modeler INTERNET: cl...@math.utah.edu
Department of Ecology VOICE: (360) 407-6815
PO Box 47600FAX:(360
SubNo[identify(rep(1,8),mydata$score)]
--
Clint BowmanINTERNET: cl...@ecy.wa.gov
Air Quality Modeler INTERNET: cl...@math.utah.edu
Department of Ecology VOICE: (360) 407-6815
PO Box 47600FAX:(360) 407
Clint
--
Clint BowmanINTERNET: cl...@ecy.wa.gov
Air Quality Modeler INTERNET: cl...@math.utah.edu
Department of Ecology VOICE: (360) 407-6815
PO Box 47600FAX:(360) 407-7534
Olympia, WA 98504
x<-runif(10,1,10) # generate 10 numbers
as.integer(log(x,10)+1)
--
Clint BowmanINTERNET: cl...@ecy.wa.gov
Air Quality Modeler INTERNET: cl...@math.utah.edu
Department of Ecology VOICE: (360) 407-6815
PO Box 47
May also wish to "or" in a check for holidays.
--
Clint BowmanINTERNET: cl...@ecy.wa.gov
Air Quality Modeler INTERNET: cl...@math.utah.edu
Department of Ecology VOICE: (360) 407-6815
PO Box 47600
n paste them together and then as.Date().
Clint
--
Clint BowmanINTERNET: cl...@ecy.wa.gov
Air Quality Modeler INTERNET: cl...@math.utah.edu
Department of Ecology VOICE: (360) 407-6815
PO Box 47600FAX:(
ping instead of
transforming your data.
Clint
--
Clint BowmanINTERNET: cl...@ecy.wa.gov
Air Quality Modeler INTERNET: cl...@math.utah.edu
Department of Ecology VOICE: (360) 407-6815
PO Box 47600FAX:(360) 407-7
You are compiling a subroutine not a program and you compile line
should read:
gfortran testit.f -c testit.o
You then reference that object code testit.o in your final loading
stage after compiling other routiens and the main program.
--
Clint BowmanINTERNET: cl
with(fcv,shapiro.test(case))
--
Clint BowmanINTERNET: cl...@ecy.wa.gov
Air Quality Modeler INTERNET: cl...@math.utah.edu
Department of Ecology VOICE: (360) 407-6815
PO Box 47600FAX:(360) 407-7534
I'd be tempted to do a robust fit (loess?) to the data with a
relatively small span (I'm assuming that there are errors in the
measurements and some degree of smoothing is acceptable) then
predict the fit at a regular interval (e.g., every 30 minutes).
--
Cl
n subtract each succeeding reading from that to obtain the
amount of feed dispensed. Now plot that value every 30 minutes.
If you are interested in the variation of feed dispensed over a
half hour interval, that can be easily obtained by accummulating
those half-hour readings.
You may be happy using:
strptime(paste(Date,Time,sep=" "),"%m/%d/%y %H:%M")$hour
--
Clint BowmanINTERNET: cl...@ecy.wa.gov
Air Quality Modeler INTERNET: cl...@math.utah.edu
Department of Ecology VOICE: (360) 4
obably
want to ignore the end point at length(walevel).
--
Clint BowmanINTERNET: cl...@ecy.wa.gov
Air Quality Modeler INTERNET: cl...@math.utah.edu
Department of Ecology VOICE: (360) 407-6815
PO Box 47600FAX:
?rle
--
Clint BowmanINTERNET: cl...@ecy.wa.gov
Air Quality Modeler INTERNET: cl...@math.utah.edu
Department of Ecology VOICE: (360) 407-6815
PO Box 47600FAX:(360) 407-7534
Olympia, WA 98504-7600
Dominique,
Let's call your dataframe, df.
Then try:
with(df, boxplot(runoff ~ month))
which will plot the daily runoff distribution by month.
Clint
--
Clint BowmanINTERNET: cl...@ecy.wa.gov
Air Quality Modeler INTERNET: cl...@math.uta
Amen. Ditto for "-999.000", "-999.00" and all of the other ones
that various (usually Fortran) programmers have used. Has the most
recent Fortran standard come around to understanding NA?
--
Clint BowmanINTERNET: cl...@ecy.wa.gov
Steve,
I use filled.contour but have a semicolon, ";", between the two
axis calls. Do you need one after
"axis(1, seq(45 , 58, by = 1))"
?
Clint
--
Clint BowmanINTERNET: cl...@ecy.wa.gov
Air Quality Modeler
?all.equal
--
Clint BowmanINTERNET: cl...@ecy.wa.gov
Air Quality Modeler INTERNET: cl...@math.utah.edu
Department of Ecology VOICE: (360) 407-6815
PO Box 47600FAX:(360) 407-7534
Olympia, WA 98504-7600
will define your optimum solution.
Soap bubbles with micropipets to inflate them may work equally well.
Clint
Clint BowmanINTERNET: cl...@ecy.wa.gov
Air Quality Modeler INTERNET: cl...@math.utah.edu
Department of Ecology VOICE: (360) 407
strptime("04-MAY-11 1428",format="%d-%b-%y %H%M")
[1] "2011-05-04 14:28:00"
--
Clint BowmanINTERNET: cl...@ecy.wa.gov
Air Quality Modeler INTERNET: cl...@math.utah.edu
Department of Ecology VOICE:
?strptime
--
Clint BowmanINTERNET: cl...@ecy.wa.gov
Air Quality Modeler INTERNET: cl...@math.utah.edu
Department of Ecology VOICE: (360) 407-6815
PO Box 47600FAX:(360) 407-7534
Olympia, WA 98504-7600
yy[!yy%in%xx]
Clint BowmanINTERNET: cl...@ecy.wa.gov
Air Quality Modeler INTERNET: cl...@math.utah.edu
Department of Ecology VOICE: (360) 407-6815
PO Box 47600FAX:(360) 407-7534
Olympia, WA 98504-7600
I think I've avoided tendonitis by carefully stretching the affected area
when I begin to feel discomfort and, as John suggests, "Carefully watch
posture and arm/hand actions to reduce strain".
Clint BowmanINTERNET: cl...@ecy.wa.gov
Air
library(openair)
?windRose
--
Clint BowmanINTERNET: cl...@ecy.wa.gov
Air Quality Modeler INTERNET: cl...@math.utah.edu
Department of Ecology VOICE: (360) 407-6815
PO Box 47600FAX:(360) 407-7534
Olympia
#x27;")[[1]][2], "\"")[[1]][1])
nswe<-strsplit(strsplit(strsplit(coords, "?")[[1]][2],
"'")[[1]][2], "\"")[[1]][2]
deg.frac<-((sec/60+min)/60+deg
deg.frac<-ifelse(nswe=="S"|nswe=="E",-deg.frac,deg.frac)
Cli
I see my pre-coffee fingering hit an incorrect key in the final
line--"E" is positive, "W" is negative.
--
Clint BowmanINTERNET: cl...@ecy.wa.gov
Air Quality Modeler INTERNET: cl...@math.utah.edu
Department of Ecology
erate quite a list.
Perhaps you can take it from there.
Clint
--
Clint BowmanINTERNET: cl...@ecy.wa.gov
Air Quality Modeler INTERNET: cl...@math.utah.edu
Department of Ecology VOICE: (360) 407-6815
PO Box 47600FA
Or does the middle number have two digits switched? 76131.17 would
round up to 8 very nicely.
--
Clint BowmanINTERNET: cl...@ecy.wa.gov
Air Quality Modeler INTERNET: cl...@math.utah.edu
Department of Ecology VOICE: (360) 407
I'm also very impressed with openair
<http://www.openair-project.org/>,
also
Clint
--
Clint BowmanINTERNET: cl...@ecy.wa.gov
Air Quality Modeler INTERNET: cl...@math.utah.edu
Department of Ecology VOICE: (360) 407-
e more important than number of
messages. Reproducible code usually is sufficient to demonstrate
the problem.
Clint
--
Clint BowmanINTERNET: cl...@ecy.wa.gov
Air Quality Modeler INTERNET: cl...@math.utah.edu
Department of Ecology VOICE:
?quantile on the individual bins, make your deciles, then plot the ten
series as usual with your x values at the midpoint of the bins.
Clint BowmanINTERNET: cl...@ecy.wa.gov
Air Quality Modeler INTERNET: cl...@math.utah.edu
Department of Ecology
I was able to get the plot by converting the dates in the "date" column to
dates, e.g.,
mytable<-read.csv("MCNP-pH.csv")
newdate<-with(mytable,strptime(date,"%m/%d/%Y"))
mytable$date<-newdate
smoothTrend(mytable, pollutant = "pH")
C
The easy way around that is to create an account, "Mathworks", with a
common group that all who will use MatLab belong, then su - Mathworks
should satisfy the license manager.
Clint BowmanINTERNET: [EMAIL PROTECTED]
Air Dispersion Modeler INTERNET:
I'm familiar with mazes that have a designated starting and ending points
but don't see any here (or is this just a maze
Clint BowmanINTERNET: [EMAIL PROTECTED]
Air Dispersion Modeler INTERNET: [EMAIL PROTECTED]
Air Quality Program
So how does SAS compare with one of the specialty languages such as perl.
I've found the combination of perl and R to work quite satisfactorily (as
long as I don't confuse the syntax and functions available in each.)
Clint
Clint BowmanINTERNET: [EMAIL PROT
1 - 100 of 104 matches
Mail list logo