Method: Statsample::Reliability::SkillScaleAnalysis#report_building

Defined in:
lib/statsample/reliability/skillscaleanalysis.rb

#report_building(builder) ⇒ Object


83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
# File 'lib/statsample/reliability/skillscaleanalysis.rb', line 83

def report_building(builder)
  builder.section(:name=>@name) do |s|
    sa = scale_analysis
    s.parse_element(sa)
    if summary_show_problematic_items
      s.section(:name=>_("Problematic Items")) do |spi|
        count=0
        sa.item_total_correlation.each do |k,v|
          if v < summary_minimal_item_correlation
            count+=1
            spi.section(:name=>_("Item: %s") % @ds[k].name) do |spii|
              spii.text _("Correct answer: %s") % @key[k]
              spii.text _("p: %0.3f") % corrected_dataset[k].mean
              props=@ds[k].proportions.inject({}) {|ac,v| ac[v[0]] = v[1].to_f;ac}
              
              spi.table(:name=>"Proportions",:header=>[_("Value"), _("%")]) do |table|
                props.each do |k1,v|
                  table.row [ @ds[k].index_of(k1), "%0.3f" % v]
                end
              end
            end
          end
        end

        spi.text _("No problematic items") if count==0
      end
    end
  end
end