We start with a factor variable f with levels high, low, medium. We want to change the reference level to medium. Using relevel(f, ref = "medium"), we create a new factor f_new where medium is the first level. The original factor f remains unchanged. This is important because the first level is the reference in many analyses. The execution table shows each step: creating f, releveling to f_new, checking levels, and using f_new. The variable tracker confirms f is unchanged and f_new has the new order. Common confusions include why the order changes and whether the original factor changes. The visual quiz tests understanding of the new level order and effects of changing the reference level.