Dipterix Wang

Results 122 comments of Dipterix Wang

> This is fixed as of 0.18.2—thanks for being patient :) Can't wait to try

```r # Skip the first two commands if you already have rave version ">= 0.1.5.0046" # Use rave::rave_version() to check current version # Update RAVE: devtools::install_github('beauchamplab/rave') # Install rstudioapi if...

`zap_srcref` removes the source reference. I turned `keep.source` off and the result is still weird. ``` r options(keep.source = FALSE) a [1] "f53c7a98354786f99f3bdd8a1f655827" a [1] "57f55bbc9d540a599eb94edb2b4422d1" a() #> NULL rlang::hash(a)...

``` r options(keep.source = FALSE) a [1] "b7e8ef5f48c3aa74a30b6ca39fbac850" a() #> NULL rlang::hash(a) #> [1] "f5852273190358bbe0b6e8328b37a4d6" a() #> NULL rlang::hash(a) #> [1] "c40ea5774ecd8ba9dccf890d710f0b46" ``` Created on 2024-01-16 with [reprex v2.1.0](https://reprex.tidyverse.org)

Gotcha, then how can I get rid of it and produce stable results?

I see https://github.com/wch/r-source/blob/67c905672a7f4dd00d12d9a0f1763bc46b985bb5/src/main/serialize.c#L1023C5-L1045C6 that if ```cpp if (R_compile_pkgs && TYPEOF(s) == CLOSXP && TYPEOF(BODY(s)) != BCODESXP && !R_disable_bytecode && (!IS_S4_OBJECT(s) || (!inherits(s, "refMethodDef") && !inherits(s, "defaultBindingFunction")))) { /* Do not...

I tried `Sys.setenv("_R_COMPILE_PKGS_" = "1")` and it seemed to work only on reprex not interactively... However, if I compile explicitly, the function hashes are the same. There must be something...

Please don't worry about the check failure on `appveyor` (it's not configuring `hdf5` correctly). This PR has been tested on R-devel server and was fine https://win-builder.r-project.org/RqsKWzdEXdD6/

Thanks @droyston , This is a good question. We are using `tkrRAS` coordinate. Please check [freesurfer document](https://surfer.nmr.mgh.harvard.edu/fswiki/CoordinateSystems) on how to transform from scanner or MNI305 to tkrRAS. `TalXFM`, `Torig` and...

Hmm, not sure how brainstorm handles coordinate. They have their own coordinate system in the Brainstorm MRI structure files. However, they can be transformed to CRS, MRI, MNI via its...