1. Learn
  2. /
  3. Courses
  4. /
  5. Factor Analysis in R

Connected

Exercise

Descriptive statistics of your dataset

The psych package provides several functions to help you visualize your data. The describe() function tells you basic statistics about each variable in your dataset, including the number of complete cases, the mean, standard deviation, minimum, maximum, range, skew, and kurtosis.

You can also view graphical representations of the error bars for different variables using error.dots() and error.bars(). Both of these graphical representations are created from the summary statistics available from calling describe().

Instructions 1/3

undefined XP
  • 1

    Check out the basic descriptive statistics provided by the describe() function.

  • 2

    Create a dot chart of the mean scores and confidence intervals for each variable in the dataset.

  • 3

    Create a bar chart of the mean scores and confidence intervals for each variable in the dataset.