similar to: R help in Firefox on Windows XP

Displaying 20 results from an estimated 5000 matches similar to: "R help in Firefox on Windows XP"

2004 Apr 22
3
Trouble with HTML search engine
There have been a number of posts to this list by people having trouble with the HTML search engine. Often these troubles are caused by incorrect setups (user hasn't installed Java properly, or Java is disabled, or Javascript is disabled). Sometimes the trouble persists even when Java is installed properly. I have written an alternative HTML search engine, which is based on Javascript rather
2003 Nov 06
2
Search engine fails entirely (PR#4966)
Full_Name: Robert King Version: 1.8.0 OS: linux (debian) Submission from: (NULL) (134.148.20.33) Also seen in 1.7 Start R, Start html help (mozilla), go to search engine, try searching for mean No results given. Mozilla javascript console says: Error: document.SearchEngine.search is not a function Source File: file:///tmp/Rtmp22901/.R/doc/html/search/SearchEngine.html Line: 32 line 32 is
2003 Apr 22
1
Search Engine (PR#2813)
Full_Name: Anthony Westerling Version: 1.7.0 OS: Mac OS X 10.2.5 Submission from: (NULL) (64.203.9.4) R includes a very nice search engine web page which installs at /usr/local/lib/R/doc/html/search/SearchEngine.html. The search engine and keywords links do not work on my Mac G4s running OS X 10.2.5, and this appears to be independent of choice of browser. This appears to be a Mac-specific
2003 Apr 17
1
R search engine and Mozilla
Not really an R question but I'm hoping someone can help me out. I'm having problems with the R help page "The R language" and Mozilla 1.3 with the Java 2 runtime environment 1.4.1_02 under Windows XP. The problems occur on the "Search Engine & Keywords" page. I can open two links, but after that links aren't recognized. The problem seems to be javascript
2005 Apr 29
2
R-2.1.0 search engine works with mozilla browser but not firefox
I'm running R-2.1.0 on a Linux box and found that the HTML search engine help would not work with Firefox 1.0.3 but would work with Mozilla 1.7.7. I have Java Runtime Environment 1.5.0_02 installed. With Firefox, when I launch help.start() and click to the search engine, it brings up the first page with "Applet SearchEngine started" in the status bar, but clicking on one of the
2004 Feb 24
2
R: SearchEngine (PR#6610)
Full_Name: Anton Zgonc Version: 1.8.1 OS: Linux RH 9.0 Submission from: (NULL) (193.2.208.9) The SearchEngine, accessible through generated documentation by help.start() like: file:/tmp/Rtmp2085/.R/doc/html/search/SearchEngine.html or on WWW: http://www.stat.ucl.ac.be/ISdidactique/Rhelp/doc/html/search/SearchEngine.html works only in Netscape 4.7x. It fails e.g. with Mozilla 1.3, 1.6 and IE
2010 Apr 16
3
run R script from Excel VBA
I wrote a R script say called computeCovarMatrix.R and i want to call and run this piece from Excel visual basic. does anyone know how to do that? thanks, KZ [[alternative HTML version deleted]]
2007 Dec 06
1
HTML help search in R 2.6.0 v 2.6.1
I am running R on a corporate Windows XP SP2 machine on which I do not have administrator privileges or access to most settings in Control Panel. R is installed from my limited user account. The version of the JVM I have installed is perhaps best described as antique: > system(paste("java -version"),show.output.on.console=T) java version "1.4.1" Java(TM) 2 Runtime
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
2010 Feb 23
5
export tables to Excel files
Dear R users, I've just posted a similar question about Illustrator. This time I would like to export the results of my statistic tables and my dataframes into Excel files. Up to now I've used write.csv(), but I have to resave every file in .xls in Excel. I would like to know if there is a function or package to export directly into *.xls. I have found xlsReadWrite which would be
2005 Dec 09
2
HTML search & Firefox
Hello, Sorry if this question was already asked (I though it was... but did not found the exact answer in the archives). I use R 2.2.0 and just updated to Firefox 1.5 (note that I already got the same result with Firefox 1.x.x) under Win XP sp2 US (full details of my config hereunder). When I try to use the HTML help search page, I can make a search: the message 'Applet SearchEngine
2006 Sep 01
3
Date conversion with as.POSIXct and as.POSIXlt (PR#9196)
Full_Name: Erich Neuwirth Version: 2.3.1 OS: Windows XP, Linux Submission from: (NULL) (131.130.135.167) Converting Sys.Date() to a POSIX compliant time type in different ways produces inconsistent results: > Sys.date() [1] "2006-09-01" > as.POSIXct(Sys.Date()) [1] "2006-09-01 02:00:00 CEST" > as.POSIXlt(Sys.Date()) [1] "2006-09-01" >
2000 Mar 15
2
headers needed in gcc
i am working my way to create a stdin-stdout version of R i am not a gcc configuration expert. currently, i am missing #include <sys/types.h> # include <sys/socket.h> # include <netinet/in.h> # include <netinet/tcp.h> #include "sock.h" as far as i understand my system, these header files shpuld be in /usr/local/lib/gcc-lib/sparc-sun-solaris2.7/2.95.1/include
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
2009 Sep 22
4
Evaluating expresssions as parameter values
I need to play games with an expression similar to the following one: print(xyplot(DepVar ~ Group|Covar, groups=Othergroup, data=mydf, pch = 18 ,main="Testcase",auto.key = TRUE)) The problem is that the formula argument (the first argument) an the groups argument are passed over from another program as strings. The formula argument does not pose problems, I can do
2004 Apr 19
3
New unique name
In some languages there is a function gensym() which returns a new unique name (in the current environment). This is quite helpful when one has to do temporary assignments. I could not find such a function in R. Is there one? -- 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
2001 Nov 12
3
histogram question
hist(rbinom(1000,10,0.5),col=2,xlim=c(0,10),ylim=c(0,300)) gives a histogram with "touching bars" hist(rbinom(100000,10,0.5),col=2,xlim=c(0,10),ylim=c(0,30000)) gives a histogram with space between the bars. is there a way to control the space betweent he bars easily? -- Erich Neuwirth, Computer Supported Didactics Working Group Visit our SunSITE at http://sunsite.univie.ac.at
2004 Sep 08
4
factor always have type integer
typeof applied to a factor always seems to return "integer", independently of the type of the levels. This has a strange side effect. When a variable is "imported" into a data frame, its type changes. character variables automatically are converted to factors when imported into data frames. Here is an example: > v1<-1:3 >
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