Calculating SUVmax for GE’s PET/CT scanner

Calculating SUVmax for GE’s PET/CT scanner

Abstract In order to calculate SUVmax for GE data, the following formula has to be utilized: To be more precise, below is the same formula, but with more specific information on the voxel and DICOM metadata fields required: For more information, please refer to the article below. Introduction An algorithm for calculating SUVmax value for PET/CT GE scanner will be […]

Jupyter Notebook Server installation

Jupyter Notebook Server installation

Create a new user For this example, we will be using a Linux username hyperion. In order to create a new user in Linux and set up a password, use the following commands: Note: -m is required in order to create user’s home directory the command to remove the user is: userdel hyperion To make sure that the user has been created, […]

Logging GNU screen command output

Logging GNU screen command output

Previously I described how to use GNU screen to run bash commands in background. In addition to that, if sometimes it happens that a detached command terminates before completion, we would like to have logs for that command, e.g., in order to determine why and when an error occurred. This post explains how to log the progress of a command […]

One sample t-test in Excel

One sample t-test in Excel

Recently I needed to quickly perform a one sample t-test in an Excel spreadsheet. Unfortunately, this functionality is not implemented in Excel by default. However, I found a very nice post by Zach at Statology on how to calculate this test using some build-in Excel functions and objects. For my convenience what I did was to put the whole procedure […]

Detaching a bash command with GNU screen

Detaching a bash command with GNU screen

Sometimes running a bash command on the server can take several hours to complete. In such cases you would like to run the command in background and close the terminal from which the command was started (without terminating the process itself). The best way to achieve that is to use GNU screen’s detaching utility. In order to run and detach […]

General linear model in Python and C

General linear model in Python and C

The goal of this post is to explain how to use general linear model in Python and C. It is assumed that the reader has basic understanding of the regression inference. Introduction Why are we using Python and C in this example? Python code is often said to be an “executable pseudocode”, i.e., Python syntax is relatively easy to read […]