Displaying 20 results from an estimated 500 matches similar to: "problem packaging S4 class that contains a slot of jobjRef class"
2012 Nov 16
0
TWS and R
Hi all,
The TWS on my system is unable to connect to my R session. Here is the
error that I'm getting:
/> tws<-twsConnect()
Error in socketConnection(host = host, port = port, open = "ab", blocking =
blocking) :
cannot open the connection
In addition: Warning message:
In socketConnection(host = host, port = port, open = "ab", blocking =
blocking) :
localhost:7496
2012 Nov 09
0
(no subject)
Hi all,
The TWS on my system is unable to connect to my R session. Here is the
error that I'm getting:
*> tws<-twsConnect()
Error in socketConnection(host = host, port = port, open = "ab", blocking =
blocking) :
cannot open the connection
In addition: Warning message:
In socketConnection(host = host, port = port, open = "ab", blocking =
blocking) :
localhost:7496
2017 Sep 01
2
ganesha error ?
Hi,
I got these errors 3 times since I'm testing gluster with nfs-ganesha. The clients are php apps and when this happen, clients got strange php session error. Below, the first error only happen once but other errors happen every time a clients try to create a new session file. To make php apps work again, I had to restart the client. Do you have an idea of what's happening here ?
2017 Sep 02
0
ganesha error ?
On 09/02/2017 02:09 AM, Renaud Fortier wrote:
> Hi,
>
> I got these errors 3 times since I?m testing gluster with nfs-ganesha.
> The clients are php apps and when this happen, clients got strange php
> session error. Below, the first error only happen once but other errors
> happen every time a clients try to create a new session file. To make
> php apps work again, I had
2009 Oct 27
1
Rjava, RImageJ, and/or S4 question.
I am out of my league with this question. The following code starts the java imaging program ImageJ from within R, and displays an image (assuming ImageJ is installed on your computer).
library(RImageJ)
img <- IJ$openImage( file.choose() ) #pick an available .tif file
img$show() # make the image object visible
# An image is now displayed
# find out about the objects involved
>
2006 Mar 03
1
Java related (?) problems with RWeka
Hello all,
I am attempting to run an R script that makes use of RWeka. I am
running SuSE Linux 9.3 with Java 1.5.0_06, R version 2.2.1, Weka
3-4-7, and Rweka 0.2-1.
CLASSPATH="/usr/local/weka-3-4-7/weka.jar:/usr/local/JGR/JGR.jar"
I receive the error:
NewObject("weka/core/Instances","(Ljava/io/Reader;)V",...) failed
Exception in thread "main"
2012 Sep 21
3
tws bug ? (LSI SAS 9750)
Hi,
I have been trying out a nice new tws controller and decided to enable
debugging in the kernel and run some stress tests. With a regular
GENERIC kernel, it boots up fine. But with debugging, it panics on
boot. Anyone know whats up ? Is this something that should be sent
directly to LSI ?
pcib0: <ACPI Host-PCI bridge> port 0xcf8-0xcff on acpi0
pci0: <ACPI PCI bus> on pcib0
2011 Jan 21
3
data and parameters
(1) I have a master data frame that reads
ClientID |date |value
(2) I also have a control data frame that reads
Client ID| Min date| Max date| control parameters
The control data set may not have all client IDs .
I want to use the control data frame on the master data frame to
remove client IDS that don't exist in the control data set and for
those that do, remove dates outside the
2009 Nov 06
1
issues with SSOAP when wsdl has ComplexTypes
I recently started trying R and SSOAP and was able to successfully try a "hello
world" service. I am now trying to get a more complicated interface to work with
SSOAP and so far failed miserably at that and so need any help I can
get from here.
The service I am attaching is a prototype for a full service that would
take information to identify a data source and a query to run and
return
2016 Jul 26
3
Exportar datos en formato de Excel
Hola.
En mi caso, no he podido resolver los problemas con el Java para usar
XLConnect, que en los papeles me parece el mejor. Supongo que algo de la
arquitectura del sistema o bien de la relación entre el Java, el R y el
RStudio.
Así que utilizo
library(openxlsx)
write.xlsx(datos, file = "EDA1.xlsx") #donde datos es el objeto que quiero
guardar.
Requiere instalar el RTools, según tipo y
2012 Oct 30
2
Java Exception error while reading large data in R from DB using RJDBC.
Dear List,
Java Exception error while reading large data in R from DB using RJDBC.
I am trying to read large data from DB table(Vectorwise), using RJDBC
connection.
I have tested the connection with small size data and was able to fetch DB
tables using same connection(conn as in my code).
Please suggest where am i going wrong or alternate option to solve such
issues while reading large DB
2013 Feb 05
1
funcion ff
Hola R, tengo las siguientes preguntas:
Pregunta 1:
Cargar las tablas de los datos de peliculas en R usando `ff`.
Cómo se construye una columna nueva que de, para cada cliente y cada
evaluación,
de el número de días que han pasado desde la primera evaluación del cliente?
Qué función se utiliza para verifica el consumo de memoria en las
operaciones?
Pregunta 2:
Cómo se corre un modelo de
2004 Aug 06
1
fixed point macros
Do the two types have a constant integer and fractional part (ie 8.8
and 16.16), or does it vary. If it varies, is there any way to figure
out where the split is for a certain variable?
On May 8, 2004, at 11:28 PM, Jean-Marc Valin wrote:
> Le sam 08/05/2004 à 19:30, Rib Rdb a écrit :
>> is there documentation of what the various fixed point macros do, so I
>> can work on
2013 Sep 06
1
Java exception error (Jcheck) while running an R script
Dear all,
I am facing a problem with running a script that i have written in R and i hope
you can help me spot which exactly is the problem and how i can solve it.
The error I get is the following:
----
Error in .jcheck(silent = FALSE) :
Java Exception <no description because toString() failed>.jcall(row[[ir]],
"Lorg/apache/poi/ss/usermodel/Cell;", "createCell",
2011 Aug 12
1
install packages from intranet
Hi,
I'm new to R. Apologies if this is a simple query, I've searched the mailing lists and docs but can't find a solution to my problem.
I'm trying to make some packages available on our intranet. During development the 'intranet' is a webserver running on localhost.
* When I call "install.packages" I get a mesage about not being able to access 'index
2009 Oct 13
1
for loop over S4
Hello,
Consider this :
> setClass("track", representation(x="numeric", y="numeric"))
[1] "track"
> o <- new( "track", x = 1, y = 2 )
> for( i in o ){
+ cat( "hello\n")
+ }
Error: invalid type/length (S4/1) in vector allocation
This happens at those lines of do_for:
n = LENGTH(val);
PROTECT_WITH_INDEX(v =
2005 Mar 16
1
How to register two SIP phones ( e.g. WindowsMessenger) from different subnet to *
-----Original Message-----
From: asterisk-users-bounces@lists.digium.com
[mailto:asterisk-users-bounces@lists.digium.com] On Behalf Of Mohammed
Firdosh Nasim
Sent: Tuesday, March 15, 2005 11:08 PM
To: asterisk-users@lists.digium.com
Subject: Re: [Asterisk-Users] How to register two SIP phones ( e.g.
WindowsMessenger) from different subnet to *
On Sat, 2005-03-12 at 07:42, Luki wrote:
>
2020 Feb 12
0
[FOR THE RECORD] CLIENTID Extension for IMAP/SMTP AUTH in dovecot
More and more email clients are now starting to support the CLIENTID
extension for IMAP, including 'libetpan', SaneBox, BlueMail, and now as
of Thunderbird 68.5.0, available there as well.
This allows for a form of native two factor support, permission token,
and/or access control to prevent the unauthorized use of email address
and password. (For more information, please see the RFC
2005 Aug 16
1
preferences in used Compaq Proliant DL380 G1 vrs DL380 G2 etc
greetings,
for those of you in the know, may i have some assistance in helping to make
better decisions in purchasing more used server toys to install CentOS on
please? :-)
in the Compaq Proliant Rackmount DL380 line, the one that looks like the
older 1850R is called a G1 meaning Generation 1 right?
and then the DL380 G2 is a redesign that is gray and just has 6 drive bays
up front correct?
2011 Oct 20
1
[LLVMdev] Formal spec for LLVM IR (Was: LLVM Language Reference Strictness)
Reed,
Are you working on a grammar of the LLVM syntax or also on a full semantics?
Steve Zdancewic's group at U. Penn. is working on a formal operational semantics for LLVM. It is partially complete and Greg Morrisett at Harvard is planning to build further on it.
Regards,
--Vikram
Professor, Computer Science
University of Illinois at Urbana-Champaign
http://llvm.org/~vadve
On Oct 20,