Skip to content

Search Archives

Search tips
from:Name Search by author name, e.g. from:Duncan Murdoch "exact phrase" Match an exact phrase word1 word2 Match messages containing both words Date range Use the date pickers to filter results to a time period

Use the list dropdown to narrow results to a specific mailing list. Combine from: with other terms to filter by author and content.

14 results for “from:Yousri Fanous”

long integer handling
Yousri Fanous · Nov 13, 2020 · r-help

I want to calculate 2^64-1 which is 18446744073709551615 I set the following options to prevent scientific notation options("scipen"=100, "digits"=4) > x<-2^64 -1 > x [1] 18446744073709551616 This is not correct. There seem to be still...

How can I run a TSP program inside R
Yousri Fanous · Nov 26, 2014 · r-help

I have the following TSP code: options memory = 6; options crt; in 'mydat.tlb' ; ? ? Create 2 new variables ? age20 = age -20; lwage = log(wage); ? ? olsq lwage c f edy tenure age20 pu; How can I run it inside R? Where...

How to write the segmented equation from MARS coefficients
Yousri Fanous · May 12, 2020 · r-help

Hello I created a MARS model from earth package.for one predictor EngDispl vs FE. These are the resulting coefficients: summary(marsFit)$coefficients y (Intercept) 18.049001 h(EngDispl-4.3) -4.378082 h(4.3-EngDispl) 10.925240 h...

How to edit a dataframe/tibble in R console
Yousri Fanous · Apr 25, 2020 · r-help

I recently installed R 3.6.3 on my windows laptop. R version 3.6.3 (2020-02-29) I am trying to import a stata .dta file to R >url<-?http://www.stata-press.com/data/r10/rootstock.dta...

possible issue with scatterplot function in car package
Yousri Fanous · May 2, 2020 · r-help

library (car) aa <- data.frame(x=c(2, 5, 6, 7, 8), + y=c(5, 10, 9, 12, 11), + ch=c("N", "Q", "R", "S", "T"), + stringsAsFactors=FALSE) scatterplot(aa$x,aa$y,smooth = FALSE, grid = FALSE, frame = FALSE,regLine...

Playing a music file in R
Yousri Fanous · Jul 21, 2020 · r-help

Google search "playing music with r" for example: https://stackoverflow.com/questions/31782580/how-can-i-play-birthday-music-using-r It can be a starting point Yousri On Tue, Jul 21, 2020 at 2:02 PM Vahid Borji <vahid...

How to edit a dataframe/tibble in R console
Yousri Fanous · Apr 26, 2020 · r-help

Thank you Jim. It works like a charm Yousri On Sat, Apr 25, 2020 at 11:25 PM Yousri Fanous <yousri.fanous at gmail.com> wrote: > I recently installed R 3.6.3 on my windows laptop. > > R version 3...

why outer function is failing?
Yousri Fanous · May 4, 2020 · r-help

Hello >From outer help page: outer takes two vectors <https://renenyffenegger.ch/notes/development/languages/R/data-structures/vector/index> and a function (that itself takes two arguments) and builds a matrix <https://renenyffenegger.ch/notes/development/languages/R/data...

long integer handling
Yousri Fanous · Nov 14, 2020 · r-help

Thank you! On Sat, Nov 14, 2020 at 12:54 AM Rui Barradas <ruipbarradas at sapo.pt> wrote: > Hello, > > I forgot to suggest package gmp. See the second example in > > ?gmp::bigz > > Hope this helps, > > Rui Barradas > > ?s 05:50...

How to edit a dataframe/tibble in R console
Yousri Fanous · Apr 26, 2020 · r-help

Jim solution posted Yousri ---------- Forwarded message --------- From: Jim Lemon <drjimlemon at gmail.com> Date: Sun, Apr 26, 2020 at 6:30 AM Subject: Re: [R] How to edit a dataframe/tibble in R console To: Yousri Fanous <yousri.fanous at...

possible issue with scatterplot function in car package
Yousri Fanous · May 3, 2020 · r-help

Great, thanks for the update! Yousri On Sun, May 3, 2020 at 10:54 PM Fox, John <jfox at mcmaster.ca> wrote: > Dear Yousri, > > The problem with scatterplot() is now fixed in the development version > 3.0-8 of the...

[FORGED] what is the expected behavior of layout.show(n)
Yousri Fanous · Apr 29, 2020 · r-help

Thank you Yousri On Wed, Apr 29, 2020 at 5:12 PM Paul Murrell <paul at stat.auckland.ac.nz> wrote: > Hi > > This behaviour is as expected. > > The layout.show() function is just there to help visualise what the > layout...

possible issue with scatterplot function in car package
Yousri Fanous · May 3, 2020 · r-help

Thank you Professor John for your answer. As you rightly said I am not using the ch in my example report as it has no bearing to the issue. However it is the ch that led me to find the...

what is the expected behavior of layout.show(n)
Yousri Fanous · Apr 29, 2020 · r-help

Hello Load package: ACSWR > data(sample) > layout(matrix(c(1,1,2,2,3,3,0,4,4,5,5,0),2,6,byrow=T),respect=F) > hist(sample[,1],main="Hist for sample I",xlab="sample 1",ylab="freq...

Can't find what you're looking for? Try searching with Google .