Displaying 20 results from an estimated 2000 matches similar to: "Issue with using rcom on windows 7"
2013 Jul 09
1
Sending carbon copy mails from R
Hi,
I am using sendmailR package to send mails from R. I am not able to make
carbon copy work properly. If I specify multiple recipients in to field,
then they all receive individual emails and not carbon copies
My sample code is
require(sendmailR)
header <- list(cc="b.mali@abc.com")
to <-
2012 Feb 23
0
Issue with RODBC
Hi team,
My RODBC connection times out after certain period (while creating a
new channel). Is there a way to set a different value for timeout
property? I looked into RODBC document and I didn't find any such
property. I am trying to connect to a Sybase database.
Maybe I can use something else other than RODBC and set this property?
Many thanks,
Alok
Please follow the attached
2008 Apr 15
4
Displaying Grahics to the X Window when calling R from command line
Hi,
I am running an R script from the command line by calling:
> R --vanilla < test.R
My terminal is part of the Xwin (Xterm) and there is a plot(1:10)
command in the test.R script.
This will not produce a grahic though. When I start R by calling R then
plotting from the R command in the same xterm, I do get a graphic
display.
How do I create a xwin plot by calling R from the command
2008 Jun 05
5
Java to R interface
I am developing an application that uses Eclipse framework on Windows.
I have to call R from Java. I downloaded rJava package and installed
it. I set the classpath in the Run Dialog in Eclipse to the directory
where the JRI.jar is. I set the Path environmental variable to the
directory where R.dll and jri.dll are. Yet when I run the rtest
example (in jri/examples directory), I get the
2008 Jun 09
1
Basic Question on Keys/Values
As a java programmer, I'm having issue conceptualizing the following use
case:
Given an value, passed into a function, how do I pull out the lookup?
Ie.
A list of keys (key1, key2, key3)
A list of values (val1,val2,val3)
I want to write a function (or is there something built in?) such that
Callit <- (thekey) {
(magic happens here)
Return value
}
Any ideas?
Thanks a bunch!
2012 Feb 21
1
sqlite create new unique id
Hi everyone,
I am trying to insert a row in sqlite table with my own unique id. I want
to create unique id using sqlite internal function
last_insert_rowid() which returns the next max rowid of the table which is
always unique. I tested this using sqlite and it works fine but when i run
the same query using RSQlite from r prompt, my query doesn't create new
unique id.
last_insert_rowid()
2011 Oct 13
1
how to return a matrix of strings from c to R ?
I am a bit confused about usage of R internal functions. I am able to send a
char vector from C to R but not sure on how to send a vector of strings etc.
My code looks like this.
<code>
SEXP result =
PROTECT(Rf_allocMatrix(STRSXP,s->n_rics,s->n_fields));
int i,j;
for (i=0; i < s->n_rics; i++)
{
for (j=0; j < s->n_fields; j++)
{
2012 May 04
1
Why does RODBC driver returns garbage from Sybase server on new windows 7 machine?
Hi,
I am trying to query a Sybase database on my new windows 7 machine. I am
using native sybase driver "Adaptive server Enterprise" following is example
code
conn <- sprintf("driver=Adaptive server
Enterprise;server=PHKSESMD01;database=smd_live;uid=temp_user;password=temp_pass;port=2301")
chan <- odbcDriverConnect(conn)
x <- sqlQuery(chan,sql,as.is=as.is)
2012 Jul 30
1
why querying Sybase IQ using RODBC returns error ?
Hello,
I am not able to query Sybase IQ database from R using RODBC package.
Check the below code
R> sybaseiq.query <- function (sql, ..., as.is = FALSE)
{
connstr <- "Driver={Sybase
IQ};UID=ajadhav2;PWD=*****;ServerName=PSGSESHR01A_IQ;CommLinks=SharedMemory,TCPIP{host=psgseshr01_iq.sg.csfb.com;port=3051}"
chan <- odbcDriverConnect(connstr)
2010 Oct 26
1
Multiple, multiple regressions...
Caveats and disclaimers:
I am quite happy to undertake self-teaching if directed to a relevant
prior posting and welcome such
direction. I have programming and statistical training/experience which
I would characterize as Masters level.
Thank you for reading and replying to this post. It is very much
appreciated.
---begin problem description
I have a large data set that I have imported to R
2010 Oct 21
2
previous business day
How to get the previous business day in R? I saw some post about using
functions in timeSeries package before but can not find it anymore.
Thanks!
===============================================================================
Please access the attached hyperlink for an important el...{{dropped:8}}
2008 Mar 07
2
Problems installing packages using the inbuilt facility: "Error i n gzfile(file, "r") : unable to open connection"
Hi
I have been trawling the web, FAQs, and R manuals for help on the following issue, but have failed and was wondering if anyone has a solution to the following problem:
After having installed R 2.6.2 for Windows (binary), I tried to install various packages. Every time I try loading a package (any package) via the built-in menu, I run into the following error message.
>
2014 Nov 05
0
why RODBC on windows 7 with Sybase, returns garbage?
Hi James,
Is your server name correct in the string below? Looks like you are using incorrect server name. If you don't give full server name, then the server has to be registered with ODBC management tool so that it can be picked up automatically.
Regards,
Alok
From: James Mathew [via R] [mailto:ml-node+s789695n4699208h81 at n4.nabble.com]
Sent: Wednesday, November 05, 2014 5:04 AM
To:
2008 Apr 28
3
R on X11 under Linux (newbie)
I just installed R on my 64 bit SUSE Linux system -- I compiled with the default x windows support on..
This may be a newbie question (apologies in advance)-- but how does this show up in X?
I have SSH'd in to my box and set my display -- I can run xcalc OK -- but when I hit the R binary it just goes to the command line -- if does not give me an x-window.
I suspect I need another
2004 Jul 21
1
RE: [Rcom-l] rcom 0.97 available for download
> From: Thomas Baier
>
> > I am confused as to what I need and must do.
> >
> > Your message said
> > ftp://cran.r-project.org/pub/R/src/contrib/Devel/rcom_0.97.tar.gz
> >
> > The DESCRIPTION file inside that download says
> > Package: rcom
> > Version: 0.95
> > Date: 2004-07-14
>
> That's too bad. Sorry for that.
>
>
2009 Aug 28
2
RODBC: how to set the data-source?
Hello,
I want to try to connect R to PostgreSQL.
I have found that there are three ways:
DBI or RODBC or RPostgreSQL.
I tried around with DBI and RODBC but didn't get it running.
In both cases I'm not clear about how to set the driver/data source.
I get this error:
x > channel <- odbcConnect("rtest", uid="oliver")
x Warning messages:
x 1: In
2005 Nov 08
3
The problem with rcom pakage
I have the problem with rcom 1.2.2 package. It does't work with R 2.2.0.
Is there any opportunities to correct the work of this package?
Thanks for your help.
Yulia
2010 Mar 09
2
rcom package
Hi,
I would like to make a program that reads excel files, and writes the cells of which contents is not a formula to another file. I don't think this is possible with RODBC, but it may be possible with rcom.
I read the documentation of the rcom package, but I was hoping somebody knows a good web resource for more eleborate info. I tried Googling, but alas (did you know rcom also is a
2011 Dec 23
3
Problem with RCOM package
Hi,
I am using R version 2.14.0 on windows 7. Trying to use RCOM
package and followed example provided at
(http://cran.r-project.org/web/packages/rcom/rcom.pdf) .
I am able to load the com object as seen in screenshot
2.png. however I am unable to invoke/get/set property to the object.
Please guide me on the same,
Regards;
Kumar Anand
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