Re: [R] R Coding Help

2019-03-07 Thread David L Carlson
We can see a few errors in what you have given us, but not enough to solve your problem as John indicates. Looking at your Environment window, you have a data frame "phdtext" which is displayed in the upper left window. That appears to be a symmetrical 17 x 17 matrix so it is not clear why you

[R] glmmPQL(MASS), logistic kernel machine regression, Gaussian process

2019-03-07 Thread Ina Hoeschele
Hi, I am trying to fit a logistic kernel machine regression model (with a Gaussian kernel) in R using glmmPQL. Does anyone have experience with this and maybe can provide some example code? Thanks, Ina [[alternative HTML version deleted]] __ R-

Re: [R] Sankey Diagram

2019-03-07 Thread John Kane
I would suggest googling "Sankey Diagrams R statistics" which should provide some suggestions such as https://www.displayr.com/how-to-create-sankey-diagrams-from-tables-using-r/ or https://plot.ly/r/sankey-diagram/ or perhaps https://www.r-bloggers.com/creating-custom-sankey-diagrams-using-r/ ? I

Re: [R] R Coding Help

2019-03-07 Thread John Kane
Thanks for the screenshot but it is not really all that useful. We really need the actual code and some sample data. Have a look at http://stackoverflow.com/questions/5963269/how-to-make-a-great-r-reproducible-example or http://adv-r.had.co.nz/Reproducibility.html for some suggesitions. Providin

[R] Sankey Diagram

2019-03-07 Thread Giuseppe Cillis
Hi, I have a .csv hat is organized in this way: code88;code13;sup_88_13 1;1;77.67576251 1;2;10.1 1;3;2.4 1;4;0.0 1;5;0.2 1;6;0.1 .. I would create a simple Sankey diagram, how can I do it? I have little experience with R unfortunately ! thanks Giuseppe [[alternative HTML vers

[R] gls() error after R upgrade

2019-03-07 Thread Fabio Fanoni
Dear all, I have been using the package nlme for about a year Recently, following an update of R, in some situations the gls() function does not work. The following lines of code require(nlme) db<-read.csv2("G:\\Dati.csv",as.is=TRUE) f<-"DELTA_INVNORM_STD ~ 0+ ITOD + EU_CH" gls(as.formula(f),

Re: [R] Zoom In/Out maps library

2019-03-07 Thread rmendelss gmail
world.map <- maps::map("world", plot = FALSE, fill = TRUE) p <- sf:: st_as_sf(world.map, coords = c('x', 'y')) map view::map view(p) HTH, -Roy > On Mar 6, 2019, at 1:44 PM, reichm...@sbcglobal.net wrote: > > R Help > > Anyone know if I can add a zoom In/Out function to the maps available via t