Displaying 20 results from an estimated 3000 matches similar to: "(no subject)"
2003 Jun 13
1
Problem with Rcmd SHLIB
Dear R-helpers,
i am trying to make a shared library from a Fortran subroutine, and i therefore used (after reading the documentation):
Rcmd SHLIB forfile.f #(R1.70, Win2000)
And the error is:
" 'perl' is not recognized as an internal or external command,operable program or batch file."
So i went ahead and tried to install Perl (from the suggested website in
2003 Aug 20
1
Neural Networks in R
Hello!
We are a group of three students at Bielefeld University currently working
on a statistical projects about neural networks. Within the framework of this
project we are supposed to use the nnet-function in R and explain how it
works. Since anyone of us has much experience in using R we hoped to find some
information on your homepage. Unfortunatelly, we haven't been very successfull
so
2003 May 29
2
install-packages
When I try 'install-packages' (from menu) in R-1.7.0 (Windows), I get
> install.packages(choose.files('',filters=Filters[c('zip','All'),]),
.libPaths()[1], CRAN = NULL)
Error in file(file, "r") : unable to open connection
In addition: Warning message:
cannot open file `eha060/DESCRIPTION'
>
but it works with R-1.6.2. It also works if I
2002 Apr 08
1
Still having a problem with Rcmd - TMPDIR
Hello R-users:
I'm experiencing difficulty in building a package in R 1.4.1 under Windows
2000. When I run Rcmd I get this:
F:\r\library>f:\r\bin\rcmd check ringsim
Please set TMPDIR to a valid temporary directory
F:\r\library>f:\r\bin\rcmd build ringsim
Please set TMPDIR to a valid temporary directory
This problem was discussed over a year ago - the problem was attributed to a
Perl
2005 Jun 06
1
Building a R package under Windows XP
Hi all,
I downloaded all the required r-tools from Dr.Brian Ripley's website. RCMD build dAnal
It built the tar file for me.
After which i tried RCMD check dAnal and i get the following error.
Making package dAnal
adding build stamp to DESCRIPTION file
installing R files
installing data files
installing man source files
installing indices
Error in
2001 Feb 18
2
No subject
Hi,
How can we use the command BATCH (or where could I find help), there is not
enough help in the help command.
-what the structure of infile ?
-what can we do with BATCH ?
-Is it possible to analyse with the same stat method many file or dataset ?
thanks in advance
N.VALIERE
************************************************
VALIERE Nathaniel
Laboratoire Biom?trie et Biologie Evolutive
2006 Jul 20
5
How can I make has_many prevent a delete that would lead to orphans?
e.g.
class Asset < ActiveRecord::Base
validates_presence_of :asset_number, :make, :model, :location,
:name, :serial_number
validates_numericality_of :asset_number
validates_uniqueness_of :asset_number
belongs_to :user
belongs_to :location
belongs_to :asset_type, :foreign_key => ''type_id''
end
class Location < ActiveRecord::Base
validates_presence_of :name
2002 Mar 26
2
compling C code in R for Windows
I have used Splus 3.4 for UNIX and I have a C file that I compiled using
"Splus COMPILE" and later called with dyn.load() and .C(). It works in Splus.
I want to do the same thing in R, as in just use my .s and .c files and
find the equivalent of "Splus COMPILE". I've ran into lots of problems
trying to do this in Windows so far, so please help!
My questions are:
- Do
2006 Jul 25
4
Sorting by two fields
I have a list of TimeSheet objects from an ealier AR query, which I
can sort by the full name of the user like so:
@time_sheet_entries.sort! { |a,b| a.user.full_name <=> b.user.full_name }
I can sort by the started time like so:
@time_sheet_entries.sort! { |a,b| a.start_time <=> b.start_time }
My question is how do I do a sort so that the list is sorted primarily
by user.full_name
2010 Jun 03
3
[LLVMdev] Generating Floating point constants
Le 3 juin 2010 à 16:00, Martin Guy a écrit :
> [off list]
>
>> 0.8f get converted in 0x3FE99999A0000000 by LLVM
>
> single precision
>
>> http://babbage.cs.qc.edu/IEEE-754/Decimal.html gives:
>>
>> 0x3FE999999999999A instead and this value cannot be read back by "llc"...
>
> double precision
>
> M
Well
For float 0.8 :
2003 Jul 23
3
Boosting, bagging and bumping. Questions about R tools and predictions.
I'm interested in further understanding the differences in using many
classification trees to improve classification rates. I'm also interested
in finding out what I can do in R and which methods will allow prediction.
Can anybody point me to a citation or discussion?
Specifically, I want to classify remotely sensed imagery where training
data is extracted on class membership by the user.
2003 Oct 09
3
Source package installation for WinXPpro
Hi
I d like to compile the source code from last Affy package for WinXPpro under
R18beta
however the doc is pretty poor regarding this process...
I went to FAQ R Win then to http://www.stats.ox.ac.uk/pub/Rtools/ and
downloaded in The essentials, tools and Perl 5.8.0, then MingW from www.mingw.org and
I wonder if I need any other stuff from this page ? I m not sure but I dont
think I need the
2003 May 26
5
Randomness
Hi,
I am very new to R and cannot seem to find how it generates random numbers. I
am currently involved with a project that requires a random number generator
and have developed one. I am, however, unsure of just how random it is and was
wanting to compare my generator with that of R (as well as others).
If anyone knows how the random numbers are generated or have any ideas on
testing or
2005 Jan 29
4
format question
how can I get a float to always print two decimal places?
Thanks,
Jamie
2003 Jun 25
0
Rcmd SHLIB on Windows
Hi all,
I would like to preform an autologistic regression analysis on my thesis data. This is a form of logistic regression that accounts for spatial autocorrelation within and between predictor variables. To this end I have received some script from Dr. Fred Huffer which will allow for the analysis in R. It consists of an R script (autolog.R) that calls a compiled Fortran script (combo.o).
2001 Oct 18
3
Rcmd SHLIB in rw1031 (R for Win)
Thanks for the answers on readme.packages.
I have installed Rw1031 from SetupR.exe including the option
for compiling source files and, following directions in
www.stats.ox.ac.ul/pub/Rtools, have installed:
-tools.zip
-Perl (Active Perl)
-mingw-1.1.tar.gz
-copied sh.exe to c:\bin\sh.exe
After Perl installation, its directory is added to my path. I have also
added the directory where the R
2006 Jul 21
5
Reports in Rails
Hi,
In my rails application I want to include a reporting mechanism that will
allow the users of application to view statistics of various operations
graphically.
Does rails provide inbuilt reporting capabilities? what are different
appraoches I can follow to achieve reporting in rails?
On googling I found following as some of the options,
1.Gruff Graphs for Ruby
2.SVG
3. using Apache FOP.
2003 Jan 10
1
Creating packages
I am trying to create a package. I have succeeded in running R CMD check
and R CMD build on an Intel box running Redhat. I would now like to
build it on Windows as well. There is no compiled code in the package at
all.
I have downloaded the tools from Brian Ripley's Building R for Windows
page, and installed Active Perl 5.8.0. I have set paths, and Rcmd and the
tools are being found ok. I am
2003 Jun 08
6
Basic question on applying a function to each row of a dataframe
Hi,
I have a function foo(x,y) and a dataframe, DF, comprised of two vectors, x
& w, as follows :
x w
1 1 1
2 2 1
3 3 1
4 4 1
etc
I would like to apply the function foo to each 'pair' within DF e.g
foo(1,1), foo(2,1), foo(3,1) etc
I have tried
>apply(DF,foo)
>apply(DF[,],foo)
>apply(DF[DF$x,DF$w],foo)
However, none of the above worked. Can anyone help ?
2006 Jul 21
3
How can I create OrderItems that go in a Order?
I suspect my problem is similar to having an order and wanting to have
order items as part of the order, so I''ll explain the problem in those
more familiar terms and then explain what if anything makes my actual
situation different at the end.
In an Order lets say you have: shipping_address and a shipped bool.
OrderItem has quantity and name
So Order has_many :OrderItems, and OrderItem