search for: cibc

Displaying 20 results from an estimated 48 matches for "cibc".

Did you mean: cbc
2018 Mar 22
2
how to add a child to a child in XML
...att3="val3"> # <child name1="A" name2="B" name3="C"> # <grandchild name4="a" name5="b" name6="c"/> # </child> #</root> Cheers, Ben On Mar 21, 2018, at 4:25 PM, Bond, Stephen <Stephen.Bond at cibc.com<mailto:Stephen.Bond at cibc.com>> wrote: I am trying to add a child to a child using XML package in R. the following fails library(XML) node1 <- c("val1","val2","val3") names(node1) <- c("att1","att2","att3") root &...
2017 Nov 10
3
update R version in windows
However, trying this on Linux Mint gave package ?installr? is not available (for R version 3.4.2) Has the package not been updated yet? JN Try the installr package. It was designed for this purpose. On Fri, Nov 10, 2017 at 11:49 AM, Bond, Stephen <Stephen.Bond at cibc.com> wrote: > Is there a utility which will allow me to upgrade my R version and update all packages from the old version? > If I manually upgrade, then I have to manually re-install 50 packages. > Thank you. > > Stephen B > >
2018 Mar 22
1
how to add a child to a child in XML
...xml2 package. https://www.rdocumentation.org/packages/xml2/versions/1.2.0 I like each one, and I use both XML and xml2 (not at the same time). I have been slowly migrating toward xml2 as I use more of the tidyverse stuff. Cheers, Ben On Mar 22, 2018, at 9:19 AM, Bond, Stephen <Stephen.Bond at cibc.com<mailto:Stephen.Bond at cibc.com>> wrote: Big thanks. newXMLNode works great. Wonder why it is not included in the documentation. There is newXMLDoc and newXMLNamespace, but no mention of newXMLNode. Stephen From: Ben Tupper [mailto:btupper at bigelow.org] Sent: Wednesday, March 21,...
2018 Mar 22
0
how to add a child to a child in XML
...<https://www.rdocumentation.org/packages/xml2/versions/1.2.0> I like each one, and I use both XML and xml2 (not at the same time). I have been slowly migrating toward xml2 as I use more of the tidyverse stuff. Cheers, Ben > On Mar 22, 2018, at 9:19 AM, Bond, Stephen <Stephen.Bond at cibc.com> wrote: > > Big thanks. newXMLNode works great. Wonder why it is not included in the documentation. > There is newXMLDoc and newXMLNamespace, but no mention of newXMLNode. > > Stephen > > From: Ben Tupper [mailto:btupper at bigelow.org] > Sent: Wednesday, March...
2017 Nov 10
0
update R version in windows
...e R version in windows However, trying this on Linux Mint gave package ?installr? is not available (for R version 3.4.2) Has the package not been updated yet? JN Try the installr package. It was designed for this purpose. On Fri, Nov 10, 2017 at 11:49 AM, Bond, Stephen <Stephen.Bond at cibc.com> wrote: > Is there a utility which will allow me to upgrade my R version and update all packages from the old version? > If I manually upgrade, then I have to manually re-install 50 packages. > Thank you. > > Stephen B > >
2013 Sep 09
1
windowing
Is there a package or a command that does window aggregation like select sum(col1) over (partition by col2, col3 order by col4 rows between unbounded preceding and current row) as sum1 from table1 ; the above is Netezza syntax, but Postgre has same capability. Stephen B [[alternative HTML version deleted]]
2009 Oct 09
2
weigths in nls (PR#13991)
Potential bug: I mistyped weights in the call ('weigths') and it did not produce any error= message. The coefs were exactly the same like without weights, so I was su= spicious and when weights(nls1) gave NULL, I saw my typo. Usually the function will say "Unused arguments", which shows you the error= , but not nls. Regards Stephen [[alternative HTML version deleted]]
2003 Jan 07
0
Your Enterprise Java/J2EE Architect Requirement
...ece, by IEEE, ACM. M.Sc. Mathematical Modeling in Computer Science, from Sofia Univ. _________________________________________________________________ FORTUNE 500 Clients: Vodafone, Nokia, AC, Intuit, Toronto Stock Ex. Telus Communications / Edmonton Telephone, Canadian Imperial Bank Commerce (CIBC) Trust, CIBC Investment Division Wood Gundy, IBM Global Solutions, IBM Corporation and Labs, Liberty Mutual, Fidelity Investments, General Electric, Merrill Lynch, AEtna Life & Casualty, Rockwell international Repeat FORTUNE 500 Clients: Canadian Imperial Bank of Commerce (CIBC)...
2018 Mar 21
0
how to add a child to a child in XML
...quot;val3"> # <child name1="A" name2="B" name3="C"> # <grandchild name4="a" name5="b" name6="c"/> # </child> #</root> Cheers, Ben > On Mar 21, 2018, at 4:25 PM, Bond, Stephen <Stephen.Bond at cibc.com> wrote: > > I am trying to add a child to a child using XML package in R. the following fails > > library(XML) > > node1 <- c("val1","val2","val3") > > names(node1) <- c("att1","att2","att3") >...
2018 Mar 21
2
how to add a child to a child in XML
I am trying to add a child to a child using XML package in R. the following fails library(XML) node1 <- c("val1","val2","val3") names(node1) <- c("att1","att2","att3") root <- xmlNode("root", attrs=node1) node2 <- LETTERS[1:3] names(node2) <- paste("name",1:3,sep="") root <-
1998 Jun 25
1
can't run programs from directories > 8 chars
...xes the problem. I've played around with name mangling options but cannot get it to work with long name directories. Any ideas? -Colin Everett +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Colin Everett CIBC colin_everett@fp.cibc.com +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
2017 Nov 10
0
update R version in windows
...s great. Stephen From: Caitlin [mailto:bioprogrammer at gmail.com] Sent: Friday, November 10, 2017 12:33 PM To: Bond, Stephen Subject: Re: [R] update R version in windows install.packages("installr") updateR() rather... On Friday, November 10, 2017, Bond, Stephen <Stephen.Bond at cibc.com<mailto:Stephen.Bond at cibc.com>> wrote: Is there a utility which will allow me to upgrade my R version and update all packages from the old version? If I manually upgrade, then I have to manually re-install 50 packages. Thank you. Stephen B [[alternative HTML version delete...
2017 Nov 10
3
update R version in windows
Is there a utility which will allow me to upgrade my R version and update all packages from the old version? If I manually upgrade, then I have to manually re-install 50 packages. Thank you. Stephen B [[alternative HTML version deleted]]
2011 Nov 03
2
Create design matrix
Greetings useRs, What is the easiest way to create a design matrix of several factor variables? Function gendata in Design seems to do that for a fitted model, but how to do that only on several factor vectors?? The result should be a df with one row for each distinct combination of levels of factors eg for (M,F) (Y,O) We get M Y M O F Y F O In reality I will have more than 1000 rows so doing
2012 Mar 30
3
ff usage for glm
Greetings useRs, Can anyone provide an example how to use ff to feed a very large data frame to glm? The data.frame cannot be loaded in R using conventional read.csv as it is too big. glm(...,data=ff.file) ?? Thank you Stephen B
2003 Oct 13
1
OpenSSH_3.7.1p2, Solaris 8: non-interactive authentication meth od prompts for a password
...sa debug1: Next authentication method: keyboard-interactive debug1: Authentications that can continue: publickey,password,keyboard-interactive debug1: Next authentication method: password ora817 at cbfe-dev-db01's password: Your input to the case will be appreciated. Thanks, Eduard.Itkin at cibc.com Bus:416.784.8619 Environment Lead, CIBC Front End (CBFE) Canadian Imperial Bank of Commerce 750 Lawrence Ave W. E5, Toronto, ON, M6A 1B8 -------------- next part -------------- A non-text attachment was scrubbed... Name: ssh_config Type: application/octet-stream Size: 1159 bytes Desc: not ava...
2014 Oct 07
3
lattice add a fit
What is the way to add an arbitrary fit from a model to a lattice conditioning plot ? For example xyplot(v1 ~v2 | v3,data=mydata, panel=function(...){ panel.xyplot(...) panel.loess(...,col.line="red") } ) Will add a loess smoother. Instead, I want to put a fit from lm (but not a simple straight line) and the fit has to be done for each panel
2010 Aug 26
1
sqldf syntax
Please correct the following > sqldf("update esc left join forwagg on esc.ym=forwagg.Date set esc.ri2=forwagg.N1 where esc.age=12","select * from main.esc") Error in sqliteExecStatement(con, statement, bind.data) : RS-DBI driver: (error in statement: near "left": syntax error) Thanks. Stephen [[alternative HTML version deleted]]
2001 Apr 20
1
Problem Accessing Samba Server via Windows
I ran through the tests in DIAGNOSIS.txt and i am snagged on step 8. When I try and map from Windows, I always get an "access denied." My main question is: DO I need to add my COMPUTER NAME to the Solaris passwd file? The problem with this is our COMPUTER NAMES are 12 characters and Solaris only supports 8 character id's.. I log into my windows machine using an account called
2012 Dec 17
1
rms R code
Greetings, useRs. Does anybody have replication of the examples from the RMS book by Harrell coded in R? I find that most the code does not work and it takes too much time to debug. For example from p.276 > age.t <- w[,"age"] > f.full <- lrm(cvd~scored(rx)+rcs(dtime,5)+age.t+wt.t+pf.t+hx+sbp+ekg.t+sz.t+sg.t+ap.t+bm+hg.t,x=T,y=T) Error in model.frame.default(formula = cvd ~