Description Usage Arguments Author(s) Examples
View source: R/DAT.checkData.R
The user loads DCE-MRI data into R using pre-existing functions such as read.table
; DAT.checkData
then saves all data into a single RData file which can be analyzed using DAT
.
1 2 | DAT.checkData(file.name, vector.times, map.CC, mask.ROI,
vector.AIF, slice.start=1, slice.stop="not.specified")
|
file.name |
Specify a name for the file that will be generated. |
vector.times |
Vector of time points at which contrast agent concentrations are measured (should have units of seconds). |
map.CC |
Array of voxel-wise contrast agent concentrations. |
mask.ROI |
Array containing the predefined Region of Interest. |
vector.AIF |
Vector containing the Arterial Input Function. |
slice.start |
For multislice data files, a range of slices must be specified. Slice numbers less than slice.start will not be included in the saved file. The default value for this argument is "1"; we recommend not changing this unless file size is a significant issue. |
slice.stop |
For multislice data files, a range of slices must be specified. Slice numbers grater than slice.stop will not be included in the RData file to be analyzed by |
Gregory Zelinsky Ferl
1 2 3 4 5 6 7 | data(DAT.simData, package="DATforDCEMRI")
myccarray <- (DAT.simData$mapCC)
mytimevector <- (DAT.simData$vectorTimes)
myroiarray <- (DAT.simData$maskROI)
myaifvector <- (DAT.simData$vectorAIF)
DAT.checkData(file.name="mydcemridata", vector.times=mytimevector, map.CC=myccarray,
mask.ROI=myroiarray, vector.AIF=myaifvector, slice.stop=2)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.