Displaying 10 results from an estimated 10 matches for "beddo".
Did you mean:
bedo
2010 May 03
1
How to generate Mackey-Glass time series with "ddesolve" package?
...ng a time series for the Mackey-Glass equation: dx/dt = 0.2 x(t-tau)/(1 + x(t-tau)^10) - 0.1 x(t) for the case there tau = 17. I tried the "ddesolve" package but the dde(...) function seems to hang, not producing anything. Can someone show me the R script how to do this?
- Mike Beddo
[[alternative HTML version deleted]]
2014 Oct 30
2
Trouble installing Rcpp on AIX - missing "execinfo.h"
Greetings,
When I try "install.packages('Rcpp')" it fails when compiling api.cpp (line 39). This is Rcpp 0.11.3. I searched my filesystem, and indeed I do not have execinfo.h anywhere. After some effort, I got R build on AIX. Now I am trying to build the packages I need. Rcpp is crucial.
I first build R with the native IBM XL compilers, and Rcpp wouldn't build. That was
2009 Jun 24
1
How to recursively build a binary tree with R script?
Greetings!
Can someone provide a simple script for a R function that recursively builds a binary tree. I am most familiar with C and pass by reference, but I think R is like Fortran and pass by value.
- Mike Beddo
2000 Nov 08
4
How to plot error bars
I'm a newcomer to R. I can't seem to find any documentation how to add
error bars to points in scatter plots. I guess I could plot the points,
then compute and plot line segments in the X and/or Y directions to
represent the errors?
- Mike
-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-
r-help mailing list -- Read
2011 Dec 14
0
Simple R server for SQL Server?
...ocess. I don't know if SQL server can communicate to R through a socket, that's why I think I need an intermediate program.
All of this (R, SQL Server) would run on the same Windows server box.
Some small code examples for 1) would be helpful, but advice would be better.
- Mike Beddo
[[alternative HTML version deleted]]
2014 Oct 24
1
Error: Line starting 'Package: tools ...' is malformed!
I'm building R-3.1.1 (64 bit) from source on AIX 7.1. It was going well until I hit this:
xlc_r -q64 -Wl,-brtl -Wl,-G -Wl,-bexpall -Wl,-bnoentry -lc -L/opt/freeware/lib64 -L/opt/freeware/lib -Wl,-blibpath:/opt/freeware/lib64:/opt/freeware/lib:/usr/lib:/lib -Wl,-bmaxdata:0x80000000 -o tools.so text.o init.o Rmd5.o md5.o signals.o install.o getfmts.o http.o gramLatex.o gramRd.o -lm
make[6]:
2009 Jan 23
1
Returning NA from lm
Hi.
I need to apply run a regression analysis for groups of data of fixed length:100 As, 100 Bs, 100 Cs etc.
eg
x
Key Value
A 1
A 21.2
A 4
A 6.5
...repeat 96 times with differing values of A
B 1
B 2.3
B NA
B 6.5
...repeat 96 times with differing values of B
etc
I run these against a linear model using tapply(data$Value, data$Key,FUN=regr,100)
2016 Sep 21
0
Domain Member Server: Domain Users cannot access shares
...lib/gdm3:/bin/false
> geoclue:x:122:131::/var/lib/geoclue:/bin/false
> sshd:x:123:65534::/var/run/sshd:/usr/sbin/nologin
> ntp:x:124:132::/home/ntp:/bin/false
> postfix:x:125:134::/var/spool/postfix:/bin/false
> ekerstens:*:10002:10001:Elizabeth Kerstens:/home/ekerstens:/bin/sh
> mbeddoes:*:10010:10001:Madelyne Beddoes:/home/mbeddoes:/bin/sh
> sbrindley:*:10006:10001:Sherrie Brindley:/home/sbrindley:/bin/sh
> mthackston:*:10008:10001:Mary Thackston:/home/mthackston:/bin/sh
> swilson:*:10009:10001:Shannon Wilson:/home/swilson:/bin/sh
> administrator:*:10001:10001:Admini...
2016 Sep 20
5
Domain Member Server: Domain Users cannot access shares
...30:Gnome Display Manager:/var/lib/gdm3:/bin/false
geoclue:x:122:131::/var/lib/geoclue:/bin/false
sshd:x:123:65534::/var/run/sshd:/usr/sbin/nologin
ntp:x:124:132::/home/ntp:/bin/false
postfix:x:125:134::/var/spool/postfix:/bin/false
ekerstens:*:10002:10001:Elizabeth Kerstens:/home/ekerstens:/bin/sh
mbeddoes:*:10010:10001:Madelyne Beddoes:/home/mbeddoes:/bin/sh
sbrindley:*:10006:10001:Sherrie Brindley:/home/sbrindley:/bin/sh
mthackston:*:10008:10001:Mary Thackston:/home/mthackston:/bin/sh
swilson:*:10009:10001:Shannon Wilson:/home/swilson:/bin/sh
administrator:*:10001:10001:Administrator:/home/Admini...
2009 Feb 03
0
Multiple statements in tryCatch
Hi,
tryCatch seems to be evaluating the all expressions wrapped in it before passing control to the error handling function. For example, the code below will try to evaluate "results" even though the call to odbcConnect fails. I was hoping that the mechanism would work in the same way as a C++ try catch structure and pass control to the catch... as soon as an exception is generated.