Displaying 20 results from an estimated 5000 matches similar to: "ScieViews installer"
2009 Nov 07
2
Rpad and R 2.10.0
I have problems with Rpad and R 2.10.0 (Windows XP and Windows 7,
browser is Firefox)
Just starting Rpad by
library(Rpad)
Rpad()
opens the browser and displays the
.html files and the .Rpad files in my home directory, but these
files do not have links and are not clickable.
Doing the same in R 2.9.2 gives clickable links in the browser.
Furthermore, in both cases an empty graphics window
2007 Aug 15
1
help and Firefox
My configuration is Windows XP, R-2.5.1patched.
My standard browser in Windows is Firefox 2.0.6,
and I am using htmlhelp.
I have problems with starting the browser for displaying help.
help("lm") works as it should when Firefox is already running.
When I do help("lm") and the browser is not yet started,
I get
Error in shell.exec(url) :
2009 Oct 19
1
source and textConnection
Is this warning given on purpose?
> myconn<-textConnection("print(11*11)")
> source(myconn)
[1] 121
Warning message:
In source(myconn) : argument 'encoding = "native.enc"' will be ignored
Could it be omitted, since the docs state that encoding is only use if
the corresponding argument is a file name or url?
--
Erich Neuwirth, University of Vienna
2006 Apr 23
3
bivariate weighted kernel density estimator
Is there code for bivariate kernel density estimation?
For bivariate kernels there is
kde2d in MASS
kde2d.g in GRASS
KernSur in GenKern
(list probably incomplete)
but none of them seems to accept a weight parameter
(like density does since R 2.2.0)
--
Erich Neuwirth, University of Vienna
Faculty of Computer Science
Computer Supported Didactics Working Group
Visit our SunSITE at
2006 Aug 09
0
[Rcom-l] GARCH(1,1) optimization with R
This is not the right list for your question.
Question on how to use R and R's libraries should be posted to
R-help at stat.math.ethz.ch
Patrick Zhang wrote:
> Hello all,
>
> Trying to implement GARCH(1,1) with ASP.NET <http://asp.net/> and
> VB.NET<http://vb.net/>.
> It involves optimization of a three-variate function with some constraints.
> Learned from
2007 May 21
1
accessing unexported functions
I need to access some internal function of a package temporarily.
These functions normally that are not visible outside of the package.
I know the MyPackage:::myfunction mechanism,
but that does not solve my problem.
Instead, I need to add the "internal namespace" of the package
to the search path, then I can run a few commands with these functions
available, and then the internal
2008 Feb 13
2
apply on large arrays
I have a big contingency table, approximately of size 60*2*500*500,
and I need to count the number of cells containing a count of 1 for each
of the factors values defining the first dimension.
Here is my attempt:
tab1<-with(pisa1,table(CNT,GENDER,ISCOF,ISCOM))
tab2<-apply(tab1,1:4,function(x)ifelse(sum(x)==1,1,0))
tab3<-apply(tab2,1,sum)
Computing tab2 is very slow.
Is there a faster
2008 Oct 26
2
Possible uninstall problem on windows.
I just uninstalled R 2.7.2 on Windows XP after having installed R 2.8.0
The uninstaller removed the String values
HKEY_LOCAL_MACHINE\SOFTWARE\R-core\R\Current Version
HKEY_LOCAL_MACHINE\SOFTWARE\R-core\R\InstallPath
despite the fact that they pointed to R 2.8.0
The uninstaller did not remove the key
HKEY_LOCAL_MACHINE\SOFTWARE\R-core\R\2.7.2
(and all the values in that key)
I think the
2008 Feb 09
1
Rprofile.site in Windows version
I think Rprofile.site as installed with R-2.6.2
contains some misleading information.
It contains the following lines
# set a CRAN mirror
# local({r <- getOption("repos")
# r["CRAN"] <- "http://my.local.cran"
# options(repos=r)})'.
Uncommenting these lines and changing the URL
will not work.
'. at the end of the last line will break the
2009 Oct 24
2
warnings details
I am running R as an invisible subprocess in another program (RExcel).
Using try I can catch errors and print the errors produced by an R
statement.
Is there a way to know if running a statement caused a warning message?
last.warning gives me the last warning, but I do not have any indication
what the statement was that caused the message.
I can of course store last warning before I run
a
2010 May 22
1
exmaple problems
I do not know if this has been reported already
(I searched the headers of the recent messages to r-devel)
It seems that 'example' in R 2.11.0 has a problem when the help file
does not contain any example.
This is what happens on R 2.11.0 on Windows XP.
> library(tools)
> example(Rdiff)
Error in file(con, "r") : cannot open the connection
In addition: Warning message:
In
2006 Sep 12
0
Bitmap file size problems
I am experiencing some problems with the windows graphics device
and bitmaps. (Everything is done in R 2.3.1 on Windows XP)
As an example, I will use
windows(3,2)
plot(1:10)
It is not a pretty or meaningful graph, but it demonstrates the problem.
savePlot(file="test",type="bmp")
creates a bitmap file of size 303x207 which is somewhat strange
because it seems to use slightly
2008 Apr 17
0
RExcelInstaller
RExcelInstaller_2.0-15
installs RExcel, an add-in for Excel, which connects R and Excel.
RExcel allows to transfer data between R and Excel,
writing VBA macros using R as a library for Excel,
and calling R functions as worksheet function in Excel.
RExcel integrates nicely with R Commander (Rcmdr),
turning R Commander's menus into Excel menus.
It comes with a comprehensive set of example
2006 Jan 11
3
dataframes with only one variable
Subsetting from a dataframe with only one variable
returns a vector, not a dataframe.
This seems somewhat inconsistent.
Wouldn't it be better if subsetting would respect
the structure completely?
v1<-1:4
v2<-4:1
df1<-data.frame(v1)
df2<-data.frame(v1,v2)
sel1<-c(TRUE,TRUE,TRUE,TRUE)
> df1[sel1,]
[1] 1 2 3 4
> df2[sel1,]
v1 v2
1 1 4
2 2 3
3 3 2
4 4 1
--
Erich
2001 Apr 17
0
RE: [Rd] converting body of a function to a a character vector
1. This query belongs in r-help, not in r-devel
2. Pity about your shift key...
3. The function you need is deparse() rather than as.character():
> fff <- function(x) {
+ x*x
+ }
> deparse(body(fff))
[1] "{" "x * x" "}"
>
4. There is a reason why as.character works this way. It transforms to
character from a more fundamental representation of
2000 Feb 25
1
r-excel interface code
some of you might be interested.
i just uploaded the first release of my
r-excel interface package to CRAN.
it is in
contributed extensions
nonstandard extensions
erich neuwirth
--
Erich Neuwirth, Computer Supported Didactics Working Group
Visit our SunSITE at http://sunsite.univie.ac.at
Phone: +43-1-4277-38624 Fax: +43-1-4277-9386
2000 Feb 25
1
r-excel interface code
some of you might be interested.
i just uploaded the first release of my
r-excel interface package to CRAN.
it is in
contributed extensions
nonstandard extensions
erich neuwirth
--
Erich Neuwirth, Computer Supported Didactics Working Group
Visit our SunSITE at http://sunsite.univie.ac.at
Phone: +43-1-4277-38624 Fax: +43-1-4277-9386
2000 Dec 29
0
R sings
i have created a package which allows R to play sounds
the package is available from
http://sunsite.univie.ac.at/~neuwirth/Rcsound/
both as zipped binary for windows and as installable tar.gz
preequisite:
you have to install csound on yout machine.
the necessary links are at http://www.csound.org
csound is a very portable program for creating sounds,
and using it as out sound creation tool we
2001 Feb 04
1
help with build on windows needed.
i installed r for window 1.2.1
and suddenly
rcmd build
does not work any more.
C:\work\checked.out>rcmd build
Please set TMPDIR to a valid temporary directory
C:\work\checked.out>echo %TMPDIR%
C:\Documents and Settings\Erich Neuwirth\Local Settings\Temp
and this is a valid directory.
things worked smoothly in 1.2.0
what can i do?
--
Erich Neuwirth, Computer Supported Didactics
2002 Oct 31
1
new package RColorBrewer available
RColorBrewer 0.1-1
is available on CRAN.
The packages provides palettes for drawing nice maps
shaded according to a variable as an R function.
The palettes have been designed by and are copyrighted by the
ColorBrewer project.
An interactive palette selection tool byt the original designers is
available at
http://colorbrewer.org
--
--
Erich Neuwirth, Computer Supported Didactics Working Group