Displaying 20 results from an estimated 120 matches similar to: "Who Are We? Research Survey - Thanks!!"
2009 Aug 13
2
Coding problem: How can I extract substring of function call within the function
In order to ease my students into the R environment I am developing a package which installs a variety of utility functions as well as slightly modified versions of some standard R functions -- e.g. mean, hist, barplot, .... In my versions of these standard R functions I either add options or alter some defaults that seem to create difficulties for most of my students -- for example, when they do
2004 Aug 07
0
improve energy levels
speelser thyat tomkwong_slaptm
bas
p_harm from u`s.a & 0ve'rnight deliv~er
http://www.welcome2your-rxworld.com
Slowly he ascended, this time to a height of nearly twenty feet
-----Original Message-----
From: Val Boyd [mailto:cbwwbyywr at in.com]
To: frankie gamboa; loren silvers; jamey reven; monroe jara; esteban mazar
Sent: Saturday, October, 2004 11:51 AM
Subject: improve
2003 Dec 03
0
looking for a job as a UNIX/FreeBSD system administrator
Hello!
My name is Egor Rukhvadze. I'm looking for a job in US as a UNIX/FreeBSD system administrator and/or network administrator that lets me utilize my experience in an Internet Service Providing (ISP).
Name: Egor M. Rukhvadze.
Birthday: April 13 1973.
Contacts:
Phone number: home +7 (095) 126-41-84 (8AM-1PM PST or 8AM-4PM EST).
Cell: +7 (903) 792-31-53
e-mail: gara@mail.ru
ICQ#
2013 Sep 23
0
400 bad request
Hi,
Im using nginx and rails for my site which contains url with georgian
letters ie განცხადებები so something like
http://gancxadebebi.ge/ka/%E1%83%92%E1%83%90%E1%83%9C%E1%83%AA%E1%83%AE%E1%83%90%E1%83%93%E1%83%94%E1%83%91%E1%83%94%E1%83%91%E1%83%98
It is mainly working perfectly but sometimes I receive request with
truncated url ie
1 -
2005 Apr 05
1
Dendrogram for a type unbalanced ANOVA
Hi-
I have about 20 groups for which I know the mean, variance, and number of
points per group. Is here an R function where I can plot (3 group example)
something like
| |----- 2
| |-----------|
| | |----- 1
| |
|------|
| |----------------- 3
|
|
0 25 50 75 100
ie 1 and 2 are different at 75% level of confidence
1 2 combined are
2012 Aug 07
1
looking for accessibility help (blind student)
I will have a blind student in my AP Statistics class this year.
I'm thinking about using R as his calculator. It seems like it's core text-in text-out nature may match screen reading software well. And I'd like to explore directing visualizations to tactile graphics output.
I'm wondering if anyone could give me suggestions (people, websites, organizations) where I could discover
2006 Mar 22
0
Lighttpd aliased does not render css or images - please help!
Hello all,
I''m very badly in need of help here. I''m sooo close to this solution, and I
WILL be blogging this when I finally have it working.
I''m using Lighttpd + Mongrel + aliased app. I have the basic alias
working. http://localhost/myapp/ renders the routed :controller/:action as
does http//localhost/myapp/controller/action for production pages.
The page source
2005 Sep 12
0
WIN32OLE file context during unit test
Hello all,
I''m having trouble with the WIN32 file opening. I don''t'' know how to
tell if this is a WIN32OLE issue or an issue with the application (Adobe
Illustrator CS2)
Review the included files below, which exist within a rails application.
When IllustratorMinimalTest is run, #testFullPath succeeds,
#testFileName fails.
Thanks in advance for any advice on how to
2002 Aug 09
0
percentile labels in qqnorm
Hi-
I wanted percentage labels on a qqnorm x axis. I used the following:
#make up some data
jt<-rnorm(100)
#qqnorm with percentile x labels
qqnorm(jt,axes=F,xlab="Percentiles")
box()
l<-c(1,5,10,30,50,70,90,95,99)
axis(1,at=qnorm(l/100),label=l)
which was ok for this data set.
Does anyone have a more general solution which would allow one to
specify the number of x labels
2005 Aug 08
0
RE: Rails is a Hammer? (was Rails is Mainstream ?)
No. Garage full of wood and tools collecting dust.
Isn''t that the definition of "hobby" ?
Peter J. Fitzgibbons
Applications Manager
Lakewood Homes - "The American Dream Builder"(r)
Peter.Fitzgibbons-STCS76aLmhk1y/cD6r8xzl6hYfS7NtTn@public.gmane.org
(847) 884-8800
-----Original Message-----
From: rails-bounces-1W37MKcQCpIf0INCOvqR/iCwEArCW2h5@public.gmane.org
2001 Sep 07
2
dxf() like bmp() or postscript()?
hi-
I have been using postscript()and contour() to do quick plots of geological
sufaces and it would be handy to be able to dump a plot as an autocad dxf
file for vector import into autocad. A search of rhelp of 99 thru 01 gave no matches for dxf. Any suggestions for a dxf or dump of a plot as vectors?
Thanx
Thanx
Robert (Bob) L Sandefur
Principal Geostatistician
Pincock Allen & Holt
2001 Aug 28
2
fitting a mixture of distributions with optim and max log likelihood ?
hi
Suppose I have a mixture of 2 distributions generated by
rtwonormals <- function(npnt,m1,s1,m2,s2,p2){
rv<-vector(npnt,mode="numeric")
for( i in seq(1:npnt)){
if(runif(1,0,1)<=p2){
rv[i]<-rnorm(1,m2,s2)
}
else{
rv[i]<-rnorm(1,m1,s1)
}
}
return(rv)
}
x <- rtwonormals(50000,0,100,500,500,0.05)
#and I try to fit these with (based on thread: [R]
2000 Nov 01
5
Performance note: Preallocating helps? and two questions
hi-
in r 1.1 on windows 2000
with length(AU) of 35833
AUcap30<-0
for(i in 1:length(AU))AUcap30[i]<-min(30,AU[i])
took over an hour on pentium II 300 mhertz (I esc'ed before it finished)
but
AUcap30<-AU
for(i in 1:length(AU))AUcap30[i]<-min(30,AU[i])
is very quick (a few seconds)
Is this performance difference common in r (ie is linux the same way)?
Are there other tricks
2000 Nov 01
5
Performance note: Preallocating helps? and two questions
hi-
in r 1.1 on windows 2000
with length(AU) of 35833
AUcap30<-0
for(i in 1:length(AU))AUcap30[i]<-min(30,AU[i])
took over an hour on pentium II 300 mhertz (I esc'ed before it finished)
but
AUcap30<-AU
for(i in 1:length(AU))AUcap30[i]<-min(30,AU[i])
is very quick (a few seconds)
Is this performance difference common in r (ie is linux the same way)?
Are there other tricks
2007 Mar 28
3
The Best Language Tools - Best Dictionaries of all languages
The Best Language Tools - Best Dictionaries of all languages
The most popular language sites worldwide and its unmatched translation
tools are in daily use in such prestigious organizations as the World
Intellectual Property Organisation or the European Community Translation
Services.
http://info-booster.blogspot.com/
has plenty of links to Mono-lingual and Language Translation dictionaries,
2003 Dec 01
0
No subject
entries)
[2002/06/07 12:46:16, 0] smbd/service.c:(614)
1001627gefage (3.61.235.23) Can't change directory to /tmproot (Permission
denied)
[2002/06/07 12:46:17, 0] rpc_client/cli_netlogon.c:(157)
cli_net_auth2: Error NT_STATUS_NO_TRUST_SAM_ACCOUNT
[2002/06/07 12:46:17, 0] rpc_client/cli_login.c:(74)
cli_nt_setup_creds: auth2 challenge failed
[2002/06/07 12:46:17, 0]
2001 Mar 12
4
1.2.2 under M$ windows 2000 lots of plots out of memory?
hi-
If I source the following
for(k in seq(1:20)){
x<-runif(20000,min=-500,max=2000)
y<-runif(20000,min=-500,max=2500)
z<-runif(20000,min=-10,max=10)
cat(k,"file",memory.size())
cc<-rainbow(11)
plot(x,y,asp=1i,xlim=c(-500,2000),ylim=c(-500,2500),main=k,cex=1.0)
for(i in seq(-10,10,2)){
points(x[z > i],y[z > i],col=cc[(12+i)/2],cex=1.0)
}
rm(x,y,z)
2007 Jul 13
8
More sorting problems with untokenized index
I''m having problems sorting on untokenized fields. I have one field that
sorts fine, but there are others that seem to sort on a different field.
Here''s the index description:
acts_as_ferret
:remote=>true,:fields=>{:name=>{:boost=>2},:name_for_sort=>{:index =>
:untokenized},
:city=>{:boost=>2}, :city_for_sort=>{:index=>:untokenized},
2011 Oct 21
0
Wine release 1.3.31
The Wine development release 1.3.31 is now available.
What's new in this release (see below for details):
- BiDi text support in the single-line edit control.
- Support for StretchDIBits and AlphaBlend in the DIB engine.
- A number of audio fixes.
- VBScript improvements.
- Various bug fixes.
The source is available from the following locations:
2010 Sep 03
0
Wine release 1.3.2
The Wine development release 1.3.2 is now available.
What's new in this release (see below for details):
- Update of the Gecko engine, now including a 64-bit version.
- New implementation of console support on Unix terminals.
- Many new functions in the C runtime dlls.
- Various bug fixes.
The source is available from the following locations: