Description of the IRW item text data
The below scatterplot shows the mean number of words and characters in the items for the IRW tables with associated item text.
Code
Plot = require("@observablehq/plot")
// Transpose the data for Observable
plotData = transpose(plot_data)
// Create scatterplot with enhanced tooltips
Plot.plot({
marks: [
Plot.dot(plotData, {
x: "mean_word",
y: "mean_char",
title: d => `Table: ${d.table}\nSample: ${d.sample}\nConstruct: ${d.construct}\nMean Word: ${d.mean_word}\nMean Char: ${d.mean_char}`,
tip: true
})
],
x: {
label: "Mean Word"
},
y: {
label: "Mean Characters"
}
})