search for: tibco

Displaying 20 results from an estimated 1313 matches for "tibco".

2013 Jul 10
0
TIBCO is hiring Data Scientists and R Experts in Europe
DATA SCIENTIST Location: EU TIBCO is a rapidly growing software company with more than 3000 employees worldwide and more than$1B annual revenue in 2012. TIBCO provides a comprehensive software platform that allows customers to perform in-depth analysis on their data, while injecting predictive and complex statistics in the analysis...
2013 Jul 10
0
TIBCO is hiring Data Scientists and R experts in the US
DATA SCIENTIST Hiring Manager: Michael O???Connell Location: US TIBCO is a rapidly growing software company with more than 3000 employees worldwide and more than$1B annual revenue in 2012. TIBCO provides a comprehensive software platform that allows customers to perform in-depth analysis on their data, while injecting predictive and complex statistics in the analysis...
2014 Feb 27
0
TIBCO is hiring Data Scientists
DATA SCIENTIST Hiring Manager: Michael O'Connell Location: US TIBCO is a rapidly growing software company with more than 3000 employees worldwide and more than $1B annual revenue in 2012. TIBCO provides a comprehensive software platform that allows customers to perform in-depth analysis on their data, while injecting predictive and complex statistics in the analysi...
2012 Jan 03
0
TIBCO looking for an Analytics Consultant
ANALYTICS CONSULTANT Hiring Manager: Michael O'Connell Location: East Coast US TIBCO is a rapidly growing software company with more than 3000 employees worldwide and approx. $900MM annual revenue in 2011. TIBCO provides a comprehensive software platform that allows customers to perform in-depth analysis on their data, while injecting predictive and complex statistics in the analys...
2010 Mar 09
0
TIBCO Spotfire 3.1 announced, featuring integration with R & S+
TIBCO Software Inc. today launched TIBCO Spotfire 3.1, the latest version of its in-memory analytics platform, making predictive analytics based on R & S+ accessible within Spotfire's visual user experience. With this release, R & S+ users will be able to share and deploy their scripts throug...
2012 Apr 06
0
TIBCO is looking for Analytics Consultants
TIBCO is a rapidly growing software company with more than 3000 employees worldwide and approx. $900MM annual revenue in 2011. TIBCO provides a comprehensive software platform that allows customers to perform in-depth analysis on their data, while injecting predictive and complex statistics in the analys...
2015 Jul 28
0
Principal Data Scientist at TIBCO
TIBCO is a rapidly growing software company with more than 3000 employees worldwide and more than $1B annual revenue. TIBCO provides a comprehensive software platform that allows customers to quickly discover actionable insights across data sources to solve business problems; while injecting statistical...
2011 Feb 03
0
TIBCO looking for Analytics Consultants
We are looking for two Analytics Consultants (PhD in Statistics with significant R programming skills preferred) to join our rapidly growing TIBCO Analytic Solutions team. The successful candidates will work closely with our TIBCO / Spotfire implementation and development teams to provide analytics expertise for customer pilots and implementations, methodology/training and product/code development to sharpen our current offerings. This pos...
2016 Oct 04
2
error handling in strcapture
...O"), class = "factor"), Number = c(1, NA, 50)), row.names = c(NA, -3L), class = "data.frame") all.equal(e9p, r9p) } #Error in if (any(ind)) { : missing value where TRUE/FALSE needed Bill Dunlap TIBCO Software wdunlap tibco.com On Wed, Sep 21, 2016 at 2:32 PM, Michael Lawrence <lawrence.michael at gene.com > wrote: > The new behavior is that it yields NAs when the pattern does not match > (like strptime) and for empty captures in a matching pattern it yields > the empty string,...
2016 Oct 04
1
error handling in strcapture
...ning message: In matrix(as.character(unlist(str)), ncol = ntokens, byrow = TRUE) : data length [20] is not a sub-multiple or multiple of the number of rows [7] > strcapture("(.)(.)(.)", c("abc", "def"), proto=list(A="")) A 1 a 2 c 3 d 4 f Bill Dunlap TIBCO Software wdunlap tibco.com On Tue, Oct 4, 2016 at 2:21 PM, Michael Lawrence <lawrence.michael at gene.com> wrote: > Hi Bill, > > This is a bug in regexec() and I will commit a fix. > > Thanks for the report, > Michael > > On Tue, Oct 4, 2016 at 1:40 PM, William Dunla...
2017 Oct 09
1
Regular expression help
"(^| +)([^/ ]*/?){0,2}", with the first "*" replaced by "+" would be a bit better. Bill Dunlap TIBCO Software wdunlap tibco.com On Mon, Oct 9, 2017 at 8:50 AM, William Dunlap <wdunlap at tibco.com> wrote: > > x <- "f 147/1315/587 2820/1320/587 3624/1321/587 1852/1322/587" > > gsub("(^| *)([^/ ]*/?){0,2}", "\\1", x) > [1] " 587 587 587 58...
2017 Dec 29
1
winbuilder warning message wrt function pointers
...n = R_GetCCallable("bdsmatrix", "bdsmatrix_prod4"); } if (fun==NULL) { Rf_error("Cannot find C function 'bdsmatrix_prod4' in library 'bdsmatrix.{so,dll}'"); } fun(nrow, nblock, bsize, bmat, rmat, nfrail, y); } Bill Dunlap TIBCO Software wdunlap tibco.com On Fri, Dec 29, 2017 at 8:48 AM, William Dunlap <wdunlap at tibco.com> wrote: > Try changing > static void (*fun)() = NULL; > to > DL_FUNC fun = NULL; > > Bill Dunlap > TIBCO Software > wdunlap tibco.com > > On Fri, Dec 29, 2017 a...
2015 Jul 15
2
bquote/evalq behavior changed in R-3.2.1
...e question that the above code does not work. It does not throw an error, but the behavior is no different (at least in the output or result). Using the above code still results in the x object not being stored in fenv on 3.1.2. Dayne On Wed, Jul 15, 2015 at 4:40 PM, William Dunlap <wdunlap at tibco.com> wrote: > Another aspect of the change is (using TERR's RinR package): > > options(REvaluators=list(makeREvaluator("R-3.1.3"), > makeREvaluator("R-3.2.0"))) > > RCompare(rapply(list(quote(function(x)x),list...
2017 Dec 29
3
winbuilder warning message wrt function pointers
I've recently updated the coxme package, which calls internal routines from the bdsmatrix package.? (It is in fact mentioned as an example of this in the Extensions manual.) The call connections are a blocks like this, one for each of the 9 called C routines. void bdsmatrix_prod4(int nrow,??? int nblock,?? int *bsize, ??????????????????? double *bmat, double *rmat, ??????????????????? int
2016 Sep 09
3
Different results for tan(pi/2) and tanpi(1/2)
The same argument would hold for tan(pi/2). I don't say the result 'NaN' is wrong, but I thought, tan(pi*x) and tanpi(x) should give the same result. Hans Werner On Fri, Sep 9, 2016 at 8:44 PM, William Dunlap <wdunlap at tibco.com> wrote: > It should be the case that tan(pi*x) != tanpi(x) in many cases - that is why > it was added. The limits from below and below of the real function > tan(pi*x) as x approaches 1/2 are different, +Inf and -Inf, so the limit is > not well defined. Hence the computer func...
2016 Sep 21
2
error handling in strcapture
...easy way to see if the prototype is compatible with the pattern, so should strcapture just assume the best and fill in the prototype with NA's? Should there be warnings? This is kind of like strptime(), which silently gives NA's when the format does not match the text input. Bill Dunlap TIBCO Software wdunlap tibco.com On Wed, Sep 21, 2016 at 2:10 PM, Michael Lawrence <lawrence.michael at gene.com > wrote: > Hi Bill, > > Thanks, another good suggestion. strcapture() now returns NAs for > non-matches. It's nice to have someone kicking the tires on that > functi...
2015 Mar 30
3
Segfault with match()
This is admittedly a contrived example, but... data(housing, package ="MASS") x <- housing$Type + housing$Sat match(x, unique(x)) Hadley -- http://had.co.nz/
2019 Sep 08
1
Error: package or namespace load failed for ‘utils
Also, check the settings of R_HOME and/or R_LIBS. Bill Dunlap TIBCO Software wdunlap tibco.com On Sun, Sep 8, 2019 at 9:58 AM William Dunlap <wdunlap at tibco.com> wrote: > Look at section 6.1 of the R Installation and Admin manual. > > 6.1 Default packages > > The set of packages loaded on startup is by default > > > getOption(&quo...
2015 Jul 15
2
bquote/evalq behavior changed in R-3.2.1
...l(substitute(expr), envir, enclos) : object 'X' not found > lapply(list(quote(1+myNumber)), eval, envir=list2env(list(myNumber=17))) > #[[1]] > #[1] 18 > > Make the FUN argument function(arg)sys.call() to see some details of the > change. > > > Bill Dunlap > TIBCO Software > wdunlap tibco.com > > On Wed, Jul 15, 2015 at 12:35 PM, Dayne Filer <dayne.filer at gmail.com> wrote: > >> In 3.1.2 eval does not store the result of the bquote-generated call in >> the given environment. Interestingly, in 3.2.1 eval does store the result...
2009 Oct 22
1
Error in link in Rd file stops package installation
...html frequency html index html is.regular html lag.zoo html Error: argument is of length zero * removing '/a/seafiler01.na.tibco.com/vol/vol2/users/bill/packages/Rlib3/zoo' The tryCatch calls in the installer code obliterate most traces of where this 'argument is of length zero' comes from. If I run the install from a directory containing the .Rprofile file containing the line utils::assignInNamespace("...