Displaying 20 results from an estimated 2000 matches similar to: "Installing On Solaris"
2003 Apr 28
1
Sorry
On my previous message I gave incorrect URL's for the configuration output.
They should be
www.phineas.pwp.blueyonder.co.uk/config.log and
www.phineas.pwp.blueyonder.co.uk/config.out
Also this technique appears to work with Netscape on Solaris, but not IE on
Windows. If this is not a sensible way to post diagnostic output let me know
and I will post them in a different way.
Phineas Campbell
2003 Mar 24
1
Install on Solaris 5.9
I'm trying to install R-1.6.2 on a Sparc machine running Solaris 5.9. I download and unpack R, run ./Configure from the R directory. Configure fails.The last line on the Configure script prints is 'Checking for Fortran 77 name-mangling scheme', This output and the config.log files are available at:
http://www.phineas.pwp.blueyonder.co.uk/config.log
and
2005 Dec 08
1
Loading namespaces
I'm creating a package for my own use that uses some S4 classes but no
methods.
I have a file called NAMESPACE it contains the line:
exportClasses("foo")
and at the top of the R file I have
setClass("foo", representation(x="numeric")
and the line:
.onLoad<-function(libname,pkgname)
When I run R CMD check I get Syntax error in the only R file. If I
2004 Jun 08
4
off topic publication question
Dear R People:
Please excuse the off topic question, but I
know that I'll get a good answer here.
If a single author is writing a journal article,
should she use "We performed a test"
or "I performed a test",
please?
I had learned to use "we" without regard to the number
of authors. Is that true, please?
Thanks for the off topic help.
Sincerely,
Erin
2007 May 10
1
CombineZ5
Hello
I am trying to run Combine Z5 under wine (my version is 0.9.4)
and have several probems
has anyone succeeded in running this very useful program for
macrophotography ?
http://www.hadleyweb.pwp.blueyonder.co.uk/CZ5/combinez5.htm
Thanks
Fungi
2009 Jan 28
1
limit source bitrate
Hi Karl ,
I' using your latest branch , I downloaded it here
http://www.icecast.pwp.blueyonder.co.uk/.
I try your instruction , adding the <limit-rate> tag before the
closure of </mount> tag.
Now I'm trying using the value 300000 ( are byte?) 300K (using the big K
not k and seems to runs very good) and soon I will use the value 0.3M or
1M or 1.3 M
If I use a bitrate
2006 Mar 14
3
Can anybody tell me step by step how validate data on form?
Hi,
I am new to ROR. I have created a form with foru fields in ROR. Now its
working fine for all CRUD operations. But I want to validate data on
form for "validates_presence_of" validation. How to do this?
I tried it by putting line "validates_presence_of :description" . But
its not working. Its throws error like "undefined method `each'' for
2005 May 23
3
skewness and kurtosis in e1071 correct?
I wonder whether the functions for skewness and kurtosis in the e1071
package are based on correct formulas.
The functions in the package e1071 are:
# --------------------------------------------
skewness <- function (x, na.rm = FALSE)
{
if (na.rm)
x <- x[!is.na(x)]
sum((x - mean(x))^3)/(length(x) * sd(x)^3)
}
# --------------------------------------------
and
#
2004 Nov 23
3
Wiki Choices
I have selected 4 software packages for us to evaluate in order to
decide on the best possible engine for the much-requested cAos
Community Wiki. All 4 samples are now up and running for you to try
out, play around with, and evalute. The URL's are as follows:
https://caos.nplus1.net/c-arbre/
https://caos.nplus1.net/dokuwiki/
https://caos.nplus1.net/pwp/
https://caos.nplus1.net/tikiwiki/
2004 Oct 26
2
Empirical P Value
I am trying to return the p value for a stat from the ECDF. That is the
index of the first occurrence,
on an ordered vector, of a value either greater than or equal to a given
value.
Ideally I would not have to order the vector beforehand.
Currently I use:
PValue<-function(stat, ECDF){
###Get the length of the ECFD
L<-length(ECDF)
###Loop through the ECDF until the p value is
2005 Dec 26
4
Books for Beginners
I have experience in PHP/MySQL, but absolutely no experience at all in
Ruby (and Rails) and would love to get a few quality books aimed at
absolutley newbies. Any suggestions?
Thanks,
Jim
--
Posted via http://www.ruby-forum.com/.
2009 May 08
3
targeted ads
Hi there,
I work at an internet radio station. My management thought it might be
a good idea to enhance our radio with targeted ads. Do you know of any
streaming server that is capable of inserting targeted ads into the
stream? So far I have only found Ando Media's Targeted Ad Injector
(http://andomedia.com/) which claims to be open source but I can't
find the source anywhere.
Regards,
2008 Feb 02
3
IE, flash and icecast
I'm having trouble getting an IE client to hear mp3 streams through a
flash player. It appears to be the same problem as described at
http://icecast.imux.net/viewtopic.php?t=2039 - the flash player connects
to the icecast server and begins downloading the audio data, but never
actually plays it.
I've tried all the suggestions from that thread - I patched icecast so
that the Content-length
2005 Jan 20
0
Compile R-2.0.1 on SPARC Solaris 5.9
I'm using GCC 3.4.2 to build R-2.0.1 from sources downloaded from the
University of Bristol mirror.
bash-2.05$./configure
<SNIP>
R is now configured for sparc-sun-solaris2.9
Source directory: .
Installation directory: /usr/local
C compiler: gcc -g -O2
C++ compiler: g++ -g -O2
Fortran compiler: g77 -g -O2
Interfaces
2005 Dec 15
1
precision of rnorm
How many distinct values can rnorm return?
I assume that rnorm manipulates runif in some way, runif uses the Mersenne
Twister, which has a period of 2^19937 - 1. Given that runif returns a 64
bit precision floating point number in [0,1], the actual period of the
Mersenne Twister in a finite precision world must be significantly less.
One of the arguments for Monte Carlo over the bootstrap is
2011 Nov 01
1
predict lmer
Dear all,
I've been reading for many days trying to predict with lmer but I haven't
managed to do it.
I've fitted an allometric model for trees where I have included climatic
variables and diameter in the fixed part and
in the random part I've included the experimental sites where trees are and
also their provenance region.
The model is like this :
2010 Dec 07
3
understanding output of tapply/by cumsum
Dear R-users,
I have a dataset with categories and numbers.
I would like to compute and add cumulative numbers
to the dataset.
I do not understand the structure of by(...) or
tapply(...) output enough to handle it.
Here a small example
--------------
d<-expand.grid(a=1:5,b=1:3,c=1:2)
d$n = 10 * d$a + d$b +0.1* d$c
Sn<-by(d$n,list(d$a,d$c),cumsum)
str(Sn)
---------
List of 10
$ : num
2008 May 08
1
Reading multiple tables from file
Dear R-users,
I have output files having a variable number of tables
in the following format:
-------------
1
Pietje
I1 I2 Value
1 1 0.11
1 2 0.12
2 1 0.21
2
Jantje
I1 I2 I3 Value
1 1 1 0.111
3 3 3 0.333
...
-------------
Would there be an easy way
of turning this into (a list of) data.frames
with names Pietje, Jantje
and variables I1,I2,...Value?
(I1,I2 are string or categorical,
2007 Aug 01
2
Simple table with frequency variable
Hallo,
Im trying to find out how to tabulate frequencies
of factors when the data have a frequency variable.
e,g:
i<-rep(1:5,2)
j<-rep(1:2,5)
N<-10*i+j
table(i,j) gives a table of ones
as each combination occurs only once.
How does one get a table with the corresponding N's?
Thanks!
Gerrit.
--
Gerrit Draisma
Department of Public Health
Erasmus MC, University Medical Center
2011 Jan 22
1
Plotting by factor with xts
Hi all,
I've got an xts time series of stock symbols and closing prices.
> head(x)
symbol close
2010-01-04 "AFB" "13.46"
2010-01-04 "AKP" "12.80"
2010-01-04 "APX" " 8.78"
2010-01-04 "AYN" "13.15"
2010-01-04 "BAF" "13.50"
2010-01-04 "BBF" "12.86"
>