Re: [R] Citation for stock price data from Quantmod

2024-12-31 Thread Erin Hodgess
Thanks to all for the excellent feedback. Erin Hodgess, PhD mailto: erinm.hodg...@gmail.com On Tue, Dec 31, 2024 at 1:41 PM Ebert,Timothy Aaron wrote: > Fair enough. You do not put citations in the abstract or summary. The > level of detail in the methods can be modified by including a link to

Re: [R] Citation for stock price data from Quantmod

2024-12-31 Thread Ebert,Timothy Aaron
Fair enough. You do not put citations in the abstract or summary. The level of detail in the methods can be modified by including a link to a repository or by including supplemental material, or appendix, or foot notes, or something equivalent. If all programs/packages are used with system defau

Re: [R] mclapply hanging occasionally on macos

2024-12-31 Thread Ivo Welch
thank you, Ivan. this is terrific. your hunch was almost surely correct. the one that works (on the macbook air) is ``` R version 4.4.2 (2024-10-31) Platform: aarch64-apple-darwin20 Running under: macOS Sequoia 15.2 Matrix products: default BLAS: /Library/Frameworks/R.framework/Versions/4.4

Re: [R] mclapply hanging occasionally on macos

2024-12-31 Thread Ivan Krylov via R-help
В Mon, 30 Dec 2024 19:16:11 -0800 Ivo Welch пишет: > useless.function <- function( ) { > y <- rnorm(3); x <- rnorm(3) > summary( lm( y ~ x )) ## useless > NULL > } > > run30 <- function(i) { > message("run30=", i) > useless.function() > } > > run30( 0 ) > message("many mc")

[R] mclapply hanging occasionally on macos

2024-12-31 Thread Ivo Welch
sequoia, 15.2. R --vanilla : 4.4.2 (2024-10-31). I have the same basic setup on three macs: a macbook air, a mac pro m1, and a mac mini m4. The following code is running into a bug on the mac pro m1 and the mac mini, but works just fine on my macbook air. (of course, it doesn't do anything usef