Displaying 20 results from an estimated 10000 matches similar to: "list subselect by name ?"
2013 Apr 10
3
windows compile R from source, where do I put the Tcl directory?
Hi,
I am trying to compile R from source on Windows.
I am following the instructions here
3.1 Building from source
3 Installing R under Windows
file:///F:/ProgramFiles/R/R-2.15.3/doc/manual/R-admin.html
It only says,?
"
The Tcl/Tk support files are contained in Rtools30.exe and?
available as .zips from http://www.stats.ox.ac.uk/pub/Rtools.?
Please make sure you install the right version:
2013 Apr 11
2
Trying to make DEBUG=T a debug version of R
Hi,
I am trying to make a debug version of R ( for use with gdb later ) on windows.
I am executing the following.
src\gnuwin32>make clean
src\gnuwin32>make DEBUG=T?
In the output, I see many
-O3 flags
I do not see any
?-g -O0 flags?
which ( I believe/I think ) that is what I need to debug R in gdb.
What is the proper way to 'make' a 'Debug version of R'?
Thank you,
2014 Sep 15
1
Debug an R windows (Fortran) DLL within R with gdb?
Hi,?
I have a Fortran 77 subroutine (dll).
On windows XP, how ?would I 'debug it(Fortran) within R' using gdb?
This is how I made it.
----------------------
R CMD SHLIB main.f
gfortran -m32 ? ? -O3 ?-mtune=core2 -c main.f -o main.o
gcc -m32 -shared -s -static-libgcc -o main.dll tmp.def main.o -Ld:/RCompile/CRANpkg/extralibs64/local/lib/i386 -Ld:/RCompile/CRANpkg/extralibs64/local/lib
2004 Jan 30
1
a problem loading package 'subselect'
Hi,
I downloaded the subselect package from CRAN and installed it in the
system wide R library path. During installation the package compiled the
fortran sources with no errors.
However, when loading the library gives me an error:
> library(subselect)
Error in dyn.load(x, as.logical(local), as.logical(now)) :
unable to load shared library
2004 Aug 31
1
subselect install problem
Trying to install subselect v0.8 on Redhat 7.3 and R 1.8.1 fails (below). Any help is greatly appreciated.
Xiao-Jun
* Installing *source* package 'subselect' ...
** libs
f2c < anneal.f > anneal.c
anneal:
Error on line 263: Declaration error for fica: adjustable dimension on non-argument
Error on line 263: Declaration error for valp: adjustable dimension on non-argument
Error
2019 Feb 16
3
Trying to compile R 3.5.2 - 32 bit R - on Windows 10 64 bit - with ICU support
Hi,
I am trying to compile R with ICU support.
I am following
https://cran.r-project.org/doc/manuals/R-admin.html#Building-from-source
I have downloaded and extracted
https://www.stats.ox.ac.uk/pub/Rtools/goodies/ICU_531.zip
to
W:\R-3.5._\App\R-Portable\ICU
I have modified MkRules.local
# set to use ICU
USE_ICU = YES
# path to parent of ICU headers
ICU_PATH = w:/R-3.5._/App/R-Portable/ICU
I
2006 May 10
1
subselect in a matrix
hello
I confused one point
in matrix constructed with cbind
I want to subselect 6. column > 1000
what should the syntax be ?
regards
--
Ahmet Temiz
Jeoloji M?h.
Afet ??leri Genel M?d?rl???
Deprem Ara?t?rma Dairesi
Tel: (312) 287 89 51 veya (312) 287 26 80/1547
Faks: (312) 287 89 51
E. Posta: temiz at deprem.gov.tr
www.deprem.gov.tr
Ahmet Temiz
Geological Eng.
General Directorate of
2007 Jan 05
1
help for memory problem with 64-bit machines
Hello,
I would appreciate *any* ideas on this problem. I'm the maintainer of a
package ("subselect"), which on CRAN's Daily Package Checks is OK on all
flavours of R, except r-devel Linux x86_64, where there is a "memory not
mapped" segfault with the very first example that is tried out (output below).
Additionally, a user with an AMD64 machine has just reported a
2006 Jun 12
0
New version of Subselect package
Version 0.9-99 of package "subselect" is now on CRAN.
The subselect package has functions that search for k-variable subsets
of a p-variable (p>k) data set that are optimal under some
criterion. Search algorithms include a full search algorithm "leaps",
based on Furnival and Wilson's leaps and bounds algorithm, and three
random search algorithms: a genetic algorithm
2006 Jun 12
0
New version of Subselect package
Version 0.9-99 of package "subselect" is now on CRAN.
The subselect package has functions that search for k-variable subsets
of a p-variable (p>k) data set that are optimal under some
criterion. Search algorithms include a full search algorithm "leaps",
based on Furnival and Wilson's leaps and bounds algorithm, and three
random search algorithms: a genetic algorithm
2004 Mar 11
0
Subselect package - Version 0.7.1
A new version (0.7.1) of package 'subselect' has been uploaded to CRAN.
Package 'subselect' provides functions which assess the quality of
variable subsets as surrogates for a full data set, in an exploratory
data analysis, and search for subsets which are optimal under various
criteria.
As of version 0.7 a new function 'leaps' has been added. 'Leaps'
performs a
2004 Mar 11
0
Subselect package - Version 0.7.1
A new version (0.7.1) of package 'subselect' has been uploaded to CRAN.
Package 'subselect' provides functions which assess the quality of
variable subsets as surrogates for a full data set, in an exploratory
data analysis, and search for subsets which are optimal under various
criteria.
As of version 0.7 a new function 'leaps' has been added. 'Leaps'
performs a
2006 Dec 05
1
problem with lists...
Hi guys,
I am new to R, so sorry if my problem seems trivial.
Sometimes I encounter some lists, which I cannot index their components
with [ . ]
For instance the prcomp() function returns a 'prcomp' object whose
components are some 'lists'. the second component is a list that
comtains the following:
> mylist <- churn[2]
> class(mylist)
[1] "list"
>
2017 Feb 24
1
Debugging tools and practices in Windows?
On Thu, Feb 23, 2017 at 7:49 PM, Tomas Kalibera <tomas.kalibera at gmail.com>
wrote:
> The R for Windows FAQ suggests "make DEBUG=T" and has some more hints
> https://cran.r-project.org/bin/windows/base/rw-FAQ.html
>
> Tomas
>
>
>
> On 02/23/2017 08:10 PM, Javier Luraschi wrote:
>
>> Right, I'm talking about C code.
>>
>> Do you
2002 Apr 06
2
packages in OS X
=======================================================================
Simple CRAN packages which do not compile without modifications (all
others do)
=======================================================================
-- akima
/usr/bin/ld: multiple definitions of symbol _idlc_
-- fracdiff
/usr/bin/ld: multiple definitions of symbol _gammfd_
(and others)
-- odesolve
--
2019 Feb 02
1
Set the number of threads using openmp with .Fortran?
I got this to work on Linux but it is not working on Windows. *My
understanding is that this should also work on windows, is that correct?*
If so, what should I do? differently?
To get it to work on Linux, I modified my R script as follows:
#' OpenMP Hello World
#'
#' @param nthreads The number of threads that you want to use
#' @example
#' hello(nthreads=2)
#' @export
2005 Aug 11
3
sub set selection
hi all
is there a package that undertakes subset selection but BASED ON AIC or
any other information criteria.
i've seen the "subselect" and the "leaps" package but i have not played
around with them yet.
thanx
2010 Mar 26
2
tapply syntax
Dear R-help members,
Apologies for the trouble.
I have a question :
Essentially, I have a dataset which stores genetic variations for individual
patients. Each individual patient can have more than one variation, and each
new record corresponds to a new variation (thus, both individual patients
and variations are non-unique).
So the dataset looks something like this ((letters = patients,
2011 Feb 28
2
converting the string columns in a data.frame to factors?
Dear All,
I'm not sure if I understand the parameter stringsAsFactors correctly. I'm
trying to convert the string columns in aframe1 to factors. But it
seems stringsAsFactors=T in as.data.frame() doesn't do anything. Could
anybody let know what is the correct way to converting strings to factors?
> aframe1=data.frame(x=LETTERS[1:10], y=LETTERS[1:10], stringsAsFactors=F)
>
2005 Mar 02
2
subset selection for logistic regression
R-packages leaps and subselect implement various methods of selecting best or
good subsets of predictor variables for linear regression models, but they do
not seem to be applicable to logistic regression models.
Does anyone know of software for finding good subsets of predictor variables for
linear regression models?
Thanks.
-Ben
p.s., The leaps package references "Subset Selection