Learn R Programming

DBERlibR (version 0.1.3)

item_analysis: Item Analysis

Description

This function automatically reads and cleans the data (e.g., converting missing values to "0"), and calculates difficulty and discriminant scores.

Usage

item_analysis(score_csv_data, m_cutoff = 0.15)

Value

This function returns a tibble() including the following information:

  • n_students_deleted: Number of students deleted from the data for analysis based on the percentage obtained via the argument of m_cutoff

  • difficulty_index: Calculated difficulty scores

  • difficulty_index_plot: Plot of difficulty scores in the ascending order

  • too_difficulty_items: List of items of which difficulty score is less than 0.2

  • discrimination_index: Calculated discrimination scores

  • discrimination_index_plot: Plot of discrimination scores in the ascending order

  • non_discrimination_items: List of items of which discrimination score is less than 0.2

Arguments

score_csv_data

data This function requires a csv data file. Its name (e.g., "data_treat_pre.csv") can be passed as an argument. Make sure to set the folder with the data file(s) as the working directory.

m_cutoff

This package will treat skipped answers as incorrect. However, too many skipped answers may skew the results of the data analysis. User can can provide a cutoff for the proportion of skipped answers. For example, if the user enters 0.1, students who skipped more than 10 percent of the answers will be excluded from the data analysis to prevent skewed results. The default of 0.15 is commonly applied as a rule of thumb.

Examples

Run this code
# Run the following codes directly in the console panel. The plots
# generated through the link above may be displaced depending on the screen
# resolution.
item_analysis(score_csv_data =
         system.file("extdata", "data_treat_pre.csv", package = "DBERlibR"),
         m_cutoff = 0.15)

Run the code above in your browser using DataLab