Re: [R] Can R read Word fonts and comments?

2016-07-05 Thread John
Thanks, Bob. Regarding other functionalities I would request: Extract all text with (1) a specific color or (2) a specific font (3) underlines. For example, if one highlights in red, then she would like to extract all texts in red. Occasionally she might use more than one colors, and each color

Re: [R] BCa Bootstrapped regression coefficients from lmrob function not working

2016-07-05 Thread Bert Gunter
It would help to show your error message, n'est-ce pas? Cheers, Bert Bert Gunter "The trouble with having an open mind is that people keep coming along and sticking things into it." -- Opus (aka Berkeley Breathed in his "Bloom County" comic strip ) On Tue, Jul 5, 2016 at 2:51 PM, varin

Re: [R] BCa Bootstrapped regression coefficients from lmrob function not working

2016-07-05 Thread varin sacha via R-help
Dear Professor Dalgaard, I really thank you lots for your response. I have solved my problem. Now, I have tried to do the same (calculate the BCa bootstrapped CIs) for the MARS regression, and I get an error message. If somebody has a hint to solve my problem, would be highly appreciated.

Re: [R-es] ayuda frecuencia asistencia clase

2016-07-05 Thread Javier Marcuzzi
Estimado Sebastián Kruk La respuesta es sí, pero su mensaje sale difícil de interpretar en mi computadora. No comprendo correctamente su pregunta, creo que todos los libros deben tener un ejemplo de R y frecuencias, su problema no entra en mi cabeza. Javier Rubén Marcuzzi De: Sebastian Kruk

Re: [R] How to extract "specific"/"last" intercept value from segmented package.

2016-07-05 Thread David L Carlson
You should use only plain text emails, provide sample data, and indicate any relevant packages that you had to load. First let's load the necessary package and create some data: > library(segmented) > set.seed(42) > x <- sort(runif(60, 10, 60)) > int <- c(rep(0, 20), rep(60, 20), rep(-80, 20))

Re: [R] How to extract "specific"/"last" intercept value from segmented package.

2016-07-05 Thread ruipbarradas
Hello, Try dimnames(inter$x)[[1]] You could have seen this by inspecting 'inter': str(inter) Hope this helps, Rui Barradas   Citando Narendra Modi : > I am able to perform regression on a dataset as below: > > plot(x,y) > lin.mod <- lm(y~x) > m <- mean(x) > m > >

[R] How to extract "specific"/"last" intercept value from segmented package.

2016-07-05 Thread Narendra Modi
I am able to perform regression on a dataset as below: plot(x,y) lin.mod <- lm(y~x) m <- mean(x) m segmented.mod <- segmented(lin.mod, seg.Z = ~x, psi= m) plot(segmented.mod, add=T) sl <- slope(segmented.mod) inter <- intercept(segmented.mod) summary(segmented.mod)# Show Summary sl

[R-es] ayuda frecuencia asistencia clase

2016-07-05 Thread Sebastian Kruk
Estimados usurios-R: Tengo una lista de alumnos. Hay alguna forma de sacar una tabla de frecuencias por la asistencia a clases mensual. Es decir cuantos días concurrió cada alumno en el mes. Supongamos que la lista está conformada por ocho alumnos, el curso duró 4 días y quiero saber cuantos

Re: [R] Can R read Word fonts and comments?

2016-07-05 Thread boB Rudis
I'll dig into that (was hoping the small feature addition wld cause enhanced feature requests :-) On Tue, Jul 5, 2016 at 1:02 PM, John wrote: > Thank you, David and Bert, for the info. > Thank you, Bob, for this excellent function. Allow me to request a feature: > You

Re: [R] Can R read Word fonts and comments?

2016-07-05 Thread John
Thank you, David and Bert, for the info. Thank you, Bob, for this excellent function. Allow me to request a feature: You highlighted the following text, and comment "This is the first comment". "Lorem ipsum dolor sit amet, cu sit modus voluptua accommodare, meis disputando voluptatibus eu nec,

Re: [R] Antwort: Re: dplyr : row total for all groups in dplyr summarise

2016-07-05 Thread David Winsemius
> On Jul 5, 2016, at 2:27 AM, g.maub...@weinwolf.de wrote: > > Hi guys, > > I checked out your example but I can't follow the results.: > >> mtcars %>% > + group_by (am, gear) %>% > + summarise (n=n()) %>% > + mutate(rel.freq = paste0(round(100 * n/sum(n), 0), "%")) %>% > + ungroup()

Re: [R] dplyr : row total for all groups in dplyr summarise

2016-07-05 Thread David Winsemius
mtcars %>% group_by (am, gear) %>% summarise (n=n()) %>% mutate(rel.freq = paste0(round(100 * n/sum(n), 0), "%")) %>% ungroup() %>% plyr::rbind.fill(data.frame( n=nrow(mtcars),rel.freq="100%”)) > On Jul 5, 2016, at 4:47 AM, mai...@infomed.sld.cu wrote: > > Sorry, what I wanted to

Re: [R] R-3.3.1 RPM release

2016-07-05 Thread Sangalli Cristiano Giovanni (Ext. - UniCredit Business Integrated Solutions)
Thanks a lot Mac for your kind answer. In the meanwhile I could successfully build the 3.3.1 on a CentOS 6.3 (VM) Anyway I will contact Tom as you suggest. Thanks and regards, Cristiano -Original Message- From: Marc Schwartz [mailto:marc_schwa...@me.com] Sent: Tuesday, July 05, 2016

[R] Problems with parallel processing using the foreach package

2016-07-05 Thread Giacomo May
Dear R-users, I am trying my hand at parallel processing in R using the foreach package but it is not working as I want it to. I am using a function I created myself (Xenopus_Walk) which returns a vector. Now I would like to run this function for every number that is saved in a vector

[R] BesselK dll file use in VBA

2016-07-05 Thread Mehta, Gaurang
Hi Team, I want to use R's Bessel dll file in VBA. Can anyone help with the commands? Have you used it? Regards, Gaurang Mehta This email is intended for the person or company named and access by anyone else is unauthorised. If you are not the person or company named, please delete this email

Re: [R] dplyr : row total for all groups in dplyr summarise

2016-07-05 Thread maicel
Sorry, what I wanted to do was to add a total row at the end of the summary. The marginal totals by columns correspond to 100% and the sum of levels. best reagard Maicel Monzon Ulrik Stervbo escribió: Yes. But in the sample code the data is summarised. In which

Re: [R] R-3.3.1 RPM release

2016-07-05 Thread Marc Schwartz
> On Jul 4, 2016, at 9:37 AM, Sangalli Cristiano Giovanni (Ext. - UniCredit > Business Integrated Solutions) wrote: > > Dear CRAN, > > I have installed on a RHEL 5.7 server the recent R-3.3.0 rpm but I would like > to upgrade to the latest now available

[R] Antwort: Re: dplyr : row total for all groups in dplyr summarise

2016-07-05 Thread G . Maubach
Hi guys, I checked out your example but I can't follow the results.: > mtcars %>% + group_by (am, gear) %>% + summarise (n=n()) %>% + mutate(rel.freq = paste0(round(100 * n/sum(n), 0), "%")) %>% + ungroup() %>% + mutate(row.tot = sum(n)) Source: local data frame [4 x 5] am gear