similar to: Referencing non-CRAN extension from CRAN package

Displaying 20 results from an estimated 8000 matches similar to: "Referencing non-CRAN extension from CRAN package"

2009 Mar 05
2
Installing the Rstem package
Hello, I am trying to install the Rstem package, but I have problems. I am using Windows XP and the 2.8.1 version of R. I have read the "Add-on packages" chapter of the "R Installation and Administration" manual, and also have tried several things, which worked for other people on the mailing list having faced the same problem
2006 Mar 09
1
lsa and Rstem?
Dear r-helpers, I can't get lsa to run because: > library(lsa) Loading required package: Rstem Error in library(pkg, character.only = TRUE, logical = TRUE, lib.loc = lib.loc) : 'Rstem' is not a valid package -- installed < 2.0.0? In addition: Warning message: cannot create HTML package index in: make.packages.html() > install.packages('Rstem') Warning in
2009 Mar 09
2
Cannot update 2.8.1 packages: unable to access index for repository...
I am having trouble updating packages for R 2.8.1 in Windows XP. Note that I *am* able to update packages for R 2.7.0 (see bottom of posting) so this is not an Internet proxy problem. The steps I took were to (a) Copy over packages from my existing (2.7.0) library subdiretory to the R 2.8.1 library subdirectory. This included a long list of packages including RODBC, rpart, RGraphViz, ggplot2
2013 Apr 16
0
Hosting Omegahat package on CRAN?
Hi list! For a package providing a GUI intended in particular at R newcomers (RcmdrPlugin.temis[1]), I would like to use the Rstem package [2] by Duncan Temple Lang, which is hosted on Omegahat only. This means the package cannot be installed automatically as a dependency, which I can work around by installing the package from my code when the user needs it. But Omegahat does not provide binaries
2009 Jul 07
1
wordStem problems in R 2.9, Fedora 11; Linux Kernel 2.6.29.5-191.fc11.i586
Dear All, I just updated from Fedora 9 to Fedora 11, kernel version 2.6.29.5-191.fc11.i586. I'm running R 2.9. I successfully installed package Rstem from source (it always ran fine for me in F9). However: > wordStem(c("This","is","a","test")) Error in wordStem(c("This", "is", "a", "test")) : VECTOR_ELT()
2007 Oct 21
2
Help installing Rstem package
An embedded and charset-unspecified text was scrubbed... Name: n?o dispon?vel Url: https://stat.ethz.ch/pipermail/r-help/attachments/20071021/3a2e8c5b/attachment.pl
2012 Jan 01
3
R on Android
Hello,I am new to this list. I have ben wondering if there is an app to run R on mobile devices? Specially android...Thanks in advance Federico -- Federico [[alternative HTML version deleted]]
2007 Aug 18
0
Installing Rstem on Mac Intel
Hi all. How do I install Rstem on my mac os X, with Intel processor? I need Rstem in order to run de lsa package. When I run the following command in the R interface: install.packages("Rstem", repos = "http://www.omegahat.org/R", type = "source"), I get a whole bunch of errors, most of which referred to the dylib (see below). Is there an Rstem package
2008 Jul 28
1
RStem with portuguese language
Greetings, I have R 2.7.1 in MacOs and I believe UTF encoding is already installed. At least: > Sys.getenv() shows several variables, including: LANG "pt_PT.UTF-8" I installed the Rstem and tm packages and when I try the following code: > wordStem(c("aberra??o","aberra??es"), language="portuguese") [1] "aberra?\xc3"
2009 Jun 11
1
Installing the Rstem package
Hi, I can't find the package for LSA. When I try http://www.statistik.uni-dortmund.de/~ligges/Rstem_0.3-1.zip <http://www.statistik.uni-dortmund.de/%7Eligges/Rstem_0.3-1.zip> It says file not found. Is there an updated link? Ravi __________________________________________________________________________ This email message is for the sole use of the intended
2006 Jan 31
1
changing the default repositories
Hello, Is it possible to change the default repositories? I've already changed the list in the repositories file under etc/ this is how my repositories file under R/etc looks like: row name menu_name URL default source win.binary mac.binary CRAN CRAN @CRAN@ TRUE TRUE TRUE TRUE BioC Bioconductor http://www.bioconductor.org TRUE TRUE TRUE FALSE
2017 Aug 03
0
find similar words in text
Please keep messages on the list so others can pitch in. _Which_ words do you want to consider identical for the purpose of frequency count? _What_ do you want to plot? B. > On Aug 3, 2017, at 4:36 PM, Riaan Van Der Walt <Riaan.VanDerWalt at nwu.ac.za> wrote: > > Hallo Boris, > I've loaded the Rstem, Snowball. > But I am clueless how to get a list eg. whal* (whale,
2008 Jun 13
1
CRAN package XML (omegahat)
Hi, I'm having issues using this package to parse large XML files. Where should bugs be reported? The omegahat website has several broken links. Regards David Keegan. --
2005 Jul 20
2
unable to call R t-test from Java
Hello, My colleague and I would like to write Java code that invokes R to do a simple TTest. I've included my sample java code below. I tried various alternatives and am unable to pass a vector to the TTest method. In my investigation, I tried to call other R methods that take vectors and also ran into various degrees of failure. Any insight you can provide or other Web references you
2004 May 17
1
Problem with package SJava
Hello all, I'm trying to run SJava package (0.65 modified downloaded from : http://stats.math.uni-augsburg.de/iPlots/alpha/) on windows NT 2000 and R 1.8.01. I have also downloaded the PDF Calling R from Java and when I want to execute the following code: import org.omegahat.R.Java.*; import java.io.*; public class Essai{ public static void main (String [] args) { REvaluator e = new
2011 Jun 09
2
Coercing Output from mget() into Proper Data Frame
Hello R-philes: I have the following function that gets the output of mget() and converts it to a data frame to return. What I am finding is that the dimensions are wrong. Basically, I get: bridesmaid wed u see m gt lt like love X.0 dress pagetrack one go X3 get 1 56 35 27 30 24 20 20 23 28 17 25 16 16 28 15 26 Instead, I want something like: [1] bridesmaid
2003 Mar 03
1
Q: Best-Practice for Swing-GUI calling R-code on Windows?
org.omegahat.R.Java.REvaluator e = new org.omegahat.R.Java.REvaluator(); Object val = e.eval("objects()"); if(val != null) { String[] objects = (String[])val; for(int i = 0 ; i < objects.length; i++) System.err.println("("+i+") " + objects[i]); } hello, thanks to Philippe Grosjean's work I finally got SJava working (on Windows XP!!), so that I can
2002 Oct 24
1
Rjava failing to initialize in Windows 2000
Dear Any, I am trying to initialise Rjava with the objective of running ORCA within R. I am running R1.5.1 on Windows2000 and get the same problem with Sun Java run time jre-1.2.2_013 Java j2re-1.4.1_01 Microsoft Java Virtual Machine Build 3805 .JavaInit() is failing at : .C("s_start_VM", as.character(classPath), as.character(classPath),
2002 Aug 09
2
error starting SJava: classpath
Dear R experts, Sorry, I am resending this, since I have not received this mail myself for the past 5 hours. I saw a similar question dated July 2. But there is no answer to it. Does anybody have a solution to it? I am using window NT, and the R version is 1.5.1, the SJava package is the binary version SJavaWin_0.62-8.zip. Here are the error message: > library(SJava) > .JavaInit()
2008 Aug 27
1
RCurl: using netrc with curlPerform
Hello, I am having trouble getting the curlPerform function to authenticate using the .netrc file. From the documentation I've read it certainly seems as though this function should be able to authenticate via the .netrc file. The example I am using here comes from the "R as a Web Client- the RCurl package" paper and demonstrates using the .netrc file to access the