Forum Replies Created
-
AuthorPosts
-
What’s the difference between “BrainSuiteAtlas1” and “bci-dni_brain Atlas”?I see that “BrainSuiteAtlas1” is described on the same page as “bci-dni_brain Atlas.
December 29, 2019 at 7:34 pm in reply to: how to present the statistical results on the brain template #2076I am very glad to get your help. I have a preliminary contact with R language. Please give me your detailed guidance.
December 29, 2019 at 6:42 pm in reply to: how to present the statistical results on the brain template #2074> load_bss_data
function (type = “cbm”, subjdir = “”, csv = “”,
hemi = “left”, smooth = 0, roiids = 0, roimeas = “gmthickness”,
measure = “”, atlas = “”, eddy = TRUE)
{
valid_types <- c(“cbm”, “tbm”, “roi”, “dbm”,
“nca”)
if (!type %in% valid_types)
stop(sprintf(“Valid data types are %s.”, paste(valid_types,
collapse = “, “)), call. = FALSE)
switch(type, cbm = {
bss_data <- load_cbm_data(subjdir = subjdir, csv = csv,
hemi = hemi, smooth = smooth)
}, tbm = {
bss_data <- load_tbm_data(subjdir = subjdir, csv = csv,
smooth = smooth, atlas = atlas)
}, dbm = {
bss_data <- load_dbm_data(subjdir = subjdir, csv = csv,
measure = measure, smooth = smooth, atlas = atlas,
eddy = eddy)
}, roi = {
bss_data <- load_roi_data(subjdir, csv, roiids, roimeas)
})
return(bss_data)I did this step, is it right?
December 29, 2019 at 4:05 pm in reply to: how to present the statistical results on the brain template #2071Can you recommend me a few articles published using Brainsuite?
December 29, 2019 at 2:07 pm in reply to: how to present the statistical results on the brain template #2070Load data
bss_data <- load_data(type=,…)
How do I edit the command in this step?
December 29, 2019 at 2:05 pm in reply to: how to present the statistical results on the brain template #2069I have two groups of patients, divided into HP group (39 patients) and HC group (40 volunteers), which have all completed the process of svreg.I want to compare the volume, thickness and surface area of each brain region of the two groups.
How to type the command?
1.bss_data <- load_data(type=,…)
2.bss_model <- bss_anova(main_effect=, covariates=, bss_data)
bss_model <- bss_corr(corr_var=, bss_data)
bss_model <- bss_ttest(group_var=, bss_data, paired=)December 29, 2019 at 1:50 pm in reply to: how to present the statistical results on the brain template #2068* DONE (bssr)
> library(bssr)
Finding BrainSuite atlas file paths…Done. Valid BrainSuite installation found at C:/Program Files/BrainSuite19a
> get_brainsuite_install_path()
[1] “C:/Program Files/BrainSuite19a”
> get_brainsuite_install_path()
[1] “C:/Program Files/BrainSuite19a”
> ?bssr
>Is that ok? Thank you.
December 29, 2019 at 10:12 am in reply to: how to present the statistical results on the brain template #2066In my computer, my account is the administrator.
December 29, 2019 at 9:58 am in reply to: how to present the statistical results on the brain template #2065How do I run R in administrator mode?Can you take a look at my computer remotely?
December 29, 2019 at 6:45 am in reply to: how to present the statistical results on the brain template #2063Could you tell me the specific installation steps of “R”? I can uninstall and start again
December 29, 2019 at 6:43 am in reply to: how to present the statistical results on the brain template #2062> install.packages(‘devtools’)
Error: unexpected input in “install.packages(‘”Hi Shjoshi,
Thank you very much for your guidance.When I input “> install.packages(‘devtools’) “,it will shows “Error: unexpected input in “install.packages(‘”December 28, 2019 at 7:45 pm in reply to: how to present the statistical results on the brain template #2060I want to compare the surface and area of each area of the whole brain.How to compare and count “surface area”?
December 28, 2019 at 7:33 pm in reply to: how to present the statistical results on the brain template #2057I have installed RStudio and Rtools, I don’t know what the problem is, how to correct it
December 28, 2019 at 7:31 pm in reply to: how to present the statistical results on the brain template #2056I ran into a problem during the installation, so I followed the instructions to run the command
“install.packages(c(‘devtools’, ‘htmlwidgets’, ‘iterators’, ‘magrittr’, ‘gtable’, ‘R6’))
devtools::install_url(‘http://brainsuite.org/wp-content/uploads/2018/05/bssr_0.2.1.tar.gz’)”show:
> install.packages(c(‘devtools’, ‘htmlwidgets’, ‘iterators’, ‘magrittr’, ‘gtable’, ‘R6’))
Warning in install.packages :
‘lib = “C:/Program Files/R/R-3.6.2/library”‘ is not writable
Warning in install.packages :
cannot create dir ‘C:\Users\glf19\OneDrive\??’, reason ‘Invalid argument’
Error in install.packages : unable to create ‘C:/Users/glf19/OneDrive/??/R/win-library/3.6’
> devtools::install_url(‘http://brainsuite.org/wp-content/uploads/2018/05/bssr_0.2.1.tar.gz’)
Error in loadNamespace(name) : there is no package called ‘devtools’
>December 28, 2019 at 7:21 pm in reply to: how to present the statistical results on the brain template #2054I want to compare the surface and area of each area of the whole brain. How do I do that?I didn’t see it in “slides 43-45.”
Thank you. -
AuthorPosts