Displaying 20 results from an estimated 3000 matches similar to: "R not working to Window 10"
2003 Nov 20
1
Compile Packages under Windows and CHM
Hi,
I have been developing a small package. It install under RedHat Linux
9.0 without a problem. However, I have a small problem under Windows
XP. I am using R-1.8.0 on both systems and HTML Help Workshop
4.74.8702.0 on Windows XP. I created the package under Linux.
When I try to install the package created under Linux in Windows XP
using
c:\rtest> rcmd install rtest
I get the following
2006 Oct 13
1
Mantel test!
Dear Sir/ Madam,
I would like to ask you about mantel test in R. In ade4 package, if I
want to use mantel.rtest, I get error massage "Object of class to "dist"
expected". As I already have two dissimilarity matrices, shall I again
compute distance measure using this function?
If not, could you please let me know which function/command I can use to
do?
Thank you very much in
2005 Oct 30
1
attaching the debugger to functional test.
People,
I''m trying to run the ruby debugger against a Test::Unit::TestCase class
which is a parent of a Rails class.
I started my study with a simple script:
#
# bikle_test.rb
#
require ''test/unit''
class BikleTest < Test::Unit::TestCase
def setup
@string10 = "hello"
end
def test10
assert_equal @string10, "hello"
end
end
The
2005 Nov 27
2
'For each file in folder F do....'
Hello,
I have 2700 text files in a folder and need to apply
the same program/procedure to each individually. I'm
trying to find how to code something like:
For each file in <Folder> do {<Procedure>}
is there an easy way to do this? other suggestions?
I have tried to list all the files names in a vector
e.g.
>listfiles[1:10,1]
1 H:/Rtest/AXP.txt
2 H:/Rtest/BA.txt
3
2012 Feb 26
2
Help needed! Error in setwd(newdir) : cannot change working directory
Hi Guys,
I am new to R and just trying to write a small script to automate a couple commands. But I run into the setwd(): cannot change working directory.
I googled a little bit and tried all fixes/suggestions with no success.
Basically I have a script that works from inside a directory with my data (/home/sean/Rtest/Data01). Now I want to modify the script to make it run from the upper directory
2005 Oct 08
1
windows/g95 peculiarity
I'm not looking for an answer here, this is just a report of a
peculiar event I've observed
and can reproduce.
I'm developing a g95 (20050129) compiled package on windows xp pro
using R-2.1.1, and gcc-3.4.2 (mingw special). An older version of the
F95 package compiled and ran without problems. The new version of the
package includes extensive changes in the code.
The package has a
2005 Mar 17
1
Compiling "embedding R" examples
Hi,
I am working at a major financial institution and we would like to embed R in one of our front office application.
The application is written in C/C++ so I started by trying to compile the examples in "tests/Embedding" of R 2.0.1.
I have modified "tests/Embedding/Makefile" according https://stat.ethz.ch/pipermail/r-help/2005-February/064341.html
and set
2002 Aug 30
4
(PR#1964) The attached function working fine with R 1.3.0 but giving problem with R 1.5.1 (PR#1964)
The division part of the following code is not executing -
(seq(n-1)*mean(XS)-cumsum(XS[seq(n-1)]))*diff(XS)/((n-1)*var(XS))
Note: Prof Yatracos: Would you please send them one example ?
Thanks,
Kaushik
-----Original Message-----
From: ripley@stats.ox.ac.uk [mailto:ripley@stats.ox.ac.uk]
Sent: Friday, August 30, 2002 4:27 PM
To: Kaushik Bhattacharyya
Cc: r-devel@stat.math.ethz.ch;
2019 Dec 30
1
Issue running Dovecot in Docker Container
Hi, I can see those values correctly with the doveconf -nc command. Here is
the part of output:
bash-4.2# doveconf -nc /etc/dovecot/director.conf
# 2.2.36 (1f10bfa63): /etc/dovecot/director.conf
# OS: Linux 4.1.12-112.14.11.el7uek.x86_64 x86_64 Red Hat Enterprise Linux
Server release 7.7 (Maipo)
# Hostname: 69b492645b56
auth_debug = yes
auth_default_realm = xxxxxxxxxxxxxxxx
auth_verbose = yes
2019 Dec 30
2
Issue running Dovecot in Docker Container
<!doctype html>
<html>
<head>
<meta charset="UTF-8">
</head>
<body>
<div>
You could also try our docker images, see
<a href="https://hub.docker.com/u/dovecot">https://hub.docker.com/u/dovecot</a>
</div>
<div>
<br>
</div>
<div>
Aki
</div>
<blockquote
2008 Oct 14
1
To all TextMate users that wants to run tests with cmd + r in Rails 2.1 and above.
Because the require ''test_helper'' at the top of all the tests is
relative now (it used to be something like require ''../test_helper''),
you can''t just run the file with ruby anymore. And running the file
with ruby is exactly what command + r does. Which means you can''t
easily run your tests from textmate.
The solution:
2009 Nov 03
2
Issue with %in% - not matching identical rows in data frames
Hi folks
I have two data frames. I know that the nth (let's say the 7th) row
in the first data frame (sequence) is there in the second
(today.sequence). When I try to check that by doing 'sequence[7,]
%in% today.sequence', I get all FALSE when it should be all TRUE.
I'm certain I'm making some trivial mistake. Any solutions?
The code to recreate the data frames and see
2003 Sep 01
2
Error in dyn.load
Hi,
I've created a shared library from including this code (with g++
-I/usr/local/lib/R/include -I/usr/local/include -c Rtest.cpp; g++
-shared -L/usr/local/lib -o Rtest.so Rtest.cpp):
void check_data (SEXP data) {
int l=length (data);
}
But when I try to load it in R I get this error message:
unable to load shared library ...
...
undefined symbol: _Z9Rf_lengthP7SEXPREC
How can I solve
2006 May 25
1
compiling tests/Embedding
I am compiling the Embedding examples in the tests directory and get an
undefined reference. I include the make output as well as grep'd output
of nm on libR.so and compiler and arch information. Do I have an
improperly built R shared library or is there a problem with the
Embedding tests or something else I am not seeing?
Thanks for any help!
George
ost at
2003 Jul 07
1
Problems with a dll under windows
I am trying to get a dll compiled for use with dyn.load. I use R.1.7.1
under Windows.
I have tried the following trivial example based on the "Writing R
extensions" manual.
rtest.h
--------
class X {
public:
X ();
~X ();
void Give7(double*);
};
class Y {
public: Y (); ~Y ();
};
rtest.cpp
---------
#include <iostream.h>
#include "rtest.h"
static Y y;
2009 Oct 27
2
User input when running R code in batch mode
Hi
I've been stumbling over a simple issue that undoubtedly has an easy
solution. I need to have some way for a user to enter some values
into a data frame which R will then work on. I know that data entry
should ideally be done otherwise and I should use R only for the
computation, but R's data manipulation abilities makes it efficient
for me to write the entire code in it.
When I ran
2010 Sep 28
2
Opening a .R file with R (Windows)
I am new to using R. I installed R on my computer (Windows) and everything
things appears to be just fine. However, I have a simple script RTest.R
that does a few simple calculations. When I double-click the RTest.R icon,
I get an Information dialong box which says, "ARGUMENT 'C:\Documents and
Settings\kgilder\Desktop\RTest.R' __ignored__" . When I choose OK, R then
opens,
2006 Sep 28
2
calling R from within Java, using jri
Hi,
I want to call R from within Java, using jri as per
http://www.rosuda.org/software/jri/
So I am following the instructions in the README file for JRI 0.2-4.
I have run 'sh configure.win' and 'make' and they seemed to be
successful.
(See below for the output from make, for example.)
But when I try 'run.bat rtest' (with and without R command line
arguments)
the output
2006 Apr 19
6
Please help Me!
Hi to this Group!
I am new to Ruby!
I am facing problrm s to find the database functions.
I want the source of sites for predifiend functions for handling the
database.
I develpong the shoping cart application, In that i am facing problems
to delete the perticuller item form cart .
I got idea to delete the total cart information using sesiions
I want to delete the perticuller item form
2006 Apr 03
3
New software, test site, OpenProfile
I''ve just put a new Ruby On Rails application up for testing at:
<http://rtest.openprofile.net>
Open Profile can be used as a login and user profile module for any Ruby
On Rails application.
Its purpose is to minimize the hassle of joining new web forums (or
anything else on the web that requires you to enter a user name, email
addres, password twice, etc.). If it''s