Skip to content

MPlus

A powerful statistical software used for advanced data analysis.


MPlus requires an environment module

In order to use MPlus, you must first load the appropriate environment module:

module load mplus

This software requires a personal license for use. Users must obtain a personal license to access it. Typically, this includes installation either in the user's home directory or as part of a centrally managed setup.

Using Mplus on the HPC#

General Workflow#

  1. Prepare an Mplus input file (model.inp) and required data files.
  2. Submit a batch job using Slurm.
  3. Review output files (.out, .log) after job completion.

Example Slurm Job Script#

#!/bin/bash
#SBATCH --job-name=mplus_job
#SBATCH --t 02:00:00
#SBATCH --n 1
#SBATCH -A mplusgroup
#SBATCH --output=mplus.out

module load mplus

mplus model.inp