Displaying 20 results from an estimated 60 matches for "baier".
Did you mean:
gaier
2007 Oct 18
0
Nice reference to R
...el
By Brian Livingston
Despite the hotfix that Microsoft recently released for Excel 2007, as
I described on Oct. 11, some math errors that you should know about
still lurk in both Excel 2007 and Excel 2003.
I'll bring you up to date and explain how you can get better results from Excel.
Baier and Neuwirth offer Excel math add-ins
In a nutshell, this month's patch for Excel 2007 corrects a bug that
treats numbers close to 65,535 as if they were 100,000. To get the
fix, see the Oct. 9 entry in Microsoft's official Excel blog.
Even with the hotfix, however, both Excel 2007 and Ex...
2002 Nov 26
3
re: 120 GB larger hard disk
...e of OT, send it to me - I am
curious about this.
Bye
Andreas
>RedHat 6.2 with kernel versison 2.2.14 can handle
>large disk size (> 34 GB). However, I own experience
>told another story - it seams that RedHat 6.2 could
>NOT handle hard drive size above 34 GB!
--
Andreas Baier
2003 May 05
1
R-1.7.0: Rproxy.dll loadlibrary/freelibrary error (PR#2914)
...001
#define SCN_IERR_INVALIDLIBRARY 0x81000002
#define SCN_IERR_INITIALIZATIONFAILED 0x81000003
#define SCN_IERR_INVALIDCONNECTORNAME 0x81000004
#define SCN_ERR_INITIALIZED 0x81000005
#define SCN_ERR_NOTINITIALIZED 0x81000006
#define TRACEBUFSIZE 1024
// 00-02-18 | baier | support arguments for connector initialization
// 01-04-04 | baier | enhancements by BDR: set RHOME from registry
// 03-04-07 | baier | check registry key on failure even if R_HOME is set,
// check PATH if everything else fails. trace failures!
int loadDll()
{
static char lT...
2010 Jan 20
1
possible bug
...work/netbios-ssn/tcp:default
exec="/export/samba343/sbin/smbd -d 10"
# svcadm refresh svc:/network/inetd:default
# svcadm restart svc:/network/inetd:default
mount_smbfs works from Mac client
So why does it not work if debugging level is set to anything below 10?
Kind Regards
Christiane Baier
--
ZPID - Leibniz-Zentrum f?r Psychologische Information und Dokumentation
Dr. Christiane Baier Fon: +49(0)651-201-2978
Dipl.Inform.(FH) Fax: +49(0)651-201-2604
Informationstechnologie E-Mail: baier at zpid.de
Universit?t Trier, 54286 Trier http://www.zpi...
2012 May 22
1
How to evaluate R things from Visual Studio?
...users of my program will NOT know any programming language, and by extension they will not know R either. So everything will happen by the click of a button.
For me to do that, I need to be able to use interoperability between R and VS.NET 2010, so that I can use R’s evaluator.
I’ve already tried Baier’s StatConnDCOM (http://rcom.univie.ac.at) and I did succeed in creating a program that runs perfectly but came to see the hard way that – for my case, is kind of useless for the sole reason of StatconnDCOM’s redistribution restriction.
As Mr. Baier told me himself, there is no guarantee that Statc...
2002 Aug 22
1
window "placement"
Using Thomas Baier's DCOM server I can do the following (in Windows 2000):
I create a slider in Excel, and the sliders On_Change event triggers a
call to R.
This call redraws an R graph, and so I have animated R graphics controlled
by Excel's slider.
The problem is that Excel needs focus so i can grab the sl...
2004 Nov 14
1
excel/r interface
Dear all,
I am quite new to R and for preofessional reasons I was interested in the R/excel interface by Baier and Neuwirth. After setup I see the Rexcel and the Rhelp on the Menu bar of Microsoft Excel XP. However, after putting the formula =RApply("pchisqr", 30, 1) Excel returns the message "could not start Rserver". Any suggestions how to fix this. How do run this application in R....
2000 Oct 03
0
FW: Parse Errors
...changes the default behavor of aborting
on an error.
Thankyou, Don Wingate.
-----Original Message-----
From: Don Wingate [mailto:Don.Wingate@IntelliChem.com]
Sent: Tuesday, October 03, 2000 9:35 AM
To: r-announce@lists.R-project.org
Subject: Parse Errors
Dear R Development Team,
Using Thomas Baier's R Com Server -- or a dll I am building which supports
an evaluate function that is based on Baier's function R_Proxy_evaluate
contained in proxy_impl.c -- when I issue an invalid command to R such as
"plo(x)" the program crashes. There is code in R_Proxy_evaluate to test for
a p...
2005 Oct 24
2
R_MakeExternalPtr
...eems like an "unitialized" value.
Can I safely assume, that an SEXP of type EXTPTRSXP can only contain a
single pointer value and never represent a vector (an array) of pointers? Or
should I maybe explicitly add something like
SETLENGTH(sexp,1);
Best wishes from sunny Austria,
Thomas Baier
2004 Jan 26
2
D(COM) with Excel
Hi there,
I'm currently trying to use R in an automated
macro with Excel, and to this effect I've been
using the D(COM) server.
However I've been having alot of problems with
it, because it seems to be limited to only recieving
and sending arrays. I've been struggling
trying to find a way to receive model summaries
from R to put in Excel. I also seem to have
some strange errors
2002 Dec 09
2
R as a COM client - is it possible?
Dear all,
In S+, there are functions like
create.ole.object
call.ole.method
release.ole.object
for communicating with other programs which work as a COM server (on
Windows).
Is it possible to do something similar in R (I've studied the 'connections'
facilities, but they do not seem to work).
==========================================
S?ren H?jsgaard, PhD, Senior Scientist
2000 Oct 03
2
Parse Errors
Dear R Development Team,
Using Thomas Baier's R Com Server -- or a dll I am building which supports
an evaluate function that is based on Baier's function R_Proxy_evaluate
contained in proxy_impl.c -- when I issue an invalid command to R such as
"plo(x)" the program crashes. There is code in R_Proxy_evaluate to test for
a p...
2000 Oct 03
2
Parse Errors
Dear R Development Team,
Using Thomas Baier's R Com Server -- or a dll I am building which supports
an evaluate function that is based on Baier's function R_Proxy_evaluate
contained in proxy_impl.c -- when I issue an invalid command to R such as
"plo(x)" the program crashes. There is code in R_Proxy_evaluate to test for
a p...
2000 Sep 28
1
creating custom I/O for R
Dear R developers,
I am building an ActiveX Com wrapper for R. I have successfully implemented
an Evaluate function using rproxy_impl.c and rtest.c as examples. The Com
object as it stands at the moment is similar to Thomas Baier's automation
server StatConnectorSrv.exe except that it does not use the Proxy. My goal
it to include a couple of activeX controls in the library: One to provide a
terminal-like interface to R and the other to provide a window for graphics
output.
These two activeX components will serve the ex...
2002 Jan 23
4
driving R from Python (calldll?)
Sam Rushing's Python extension 'calldll' will supposedly give me access
to any DLL,
and presumably R.DLL in particular, from Python. I have no experience
manipulating DLLs as
yet. I am learning Python. I can't find any simple step-by-step
instructions on how
to get done what I want to do. Does anyone have experience with this?
Is there a
better way? Of course, one can use
2008 Oct 07
1
LinkingTo on Windows
...rcom) and
getting out procedure addresses, but I don't think this is a good (general
and portable) solution either.
How can this issue be addressed? How can I solve the problem of linking to
another package's library (if possible by just using "LinkingTo")
Best regards,
Thomas Baier
2005 Dec 09
2
Blocking problem with embeded R (windows)
Hi all,
I am trying to make calls to R from an MFC application running on XP
and am having problems blocking the application while the call
executes.
I have tried the following approaches to using R from the application
(note that I set a wait cursor while R is executing).
1) call rcmd in BATCH mode using system(). This works well, except
that I get the cmd window popping up... which makes the
2000 Sep 27
1
Wrapping R for windows in a com dll
Dear R Community,
I am trying to create a com dll wrapper for R in a mannor similiar to the R
Com Server by Thomas Baier except that I would much rather avoid using the
proxy dll ("Rproxy.dll"). Perhaps I don't really understand the reason for
going throug the proxy in the first place, but it seems like an unnecessary
indirection for an application which is not intended to use DCom. To this
end I have b...
2003 Jan 09
0
Installing R-Excel Interface - Help requested (long)
...ity are below.
Loading StatConnector Server... Done
Initializing R...Done
Server information:
Name: COM Statistics Interpreter Interface
Description: Connector beetween a client application (e.g. a spread-sheet)
and an interpreted language (e.g. R)
Copyright: (C) 1999-2001, Thomas Baier
License: GNU General Public License version 2 or greater
Version: 0.99
Connector information:
Name: R
Description: A Computer Language for Statistical Data Analysis
Copyright: (C) R Development Core Team
License: GNU General Public License version 2 or greater
Ve...
2008 Dec 18
4
rscproxy version conflict
After installing the package 'rscproxy' downloaded from the CRAN server, I
get the following error message from R 2.8.0 about a version conflict :
package 'rscproxy' successfully unpacked and MD5 sums checked
The downloaded packages are in
C:\Documents and Settings\John Meerman\Local
Settings\Temp\RtmpbK9mxN\downloaded_packages
updating HTML package