<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic bell curve for exam grade calculation in Discussions</title>
    <link>https://community.jmp.com/t5/Discussions/bell-curve-for-exam-grade-calculation/m-p/49422#M28104</link>
    <description>&lt;P&gt;dear all,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I made an exam and ı want to calculate exam grades by using bell curve approach. I heard this approach but ı do not know how can I apply it.&amp;nbsp;&lt;/P&gt;&lt;P&gt;How can ı calculate their exam grades?&amp;nbsp; which one is A,B,C etc... Each line represent one student exam result at the attached jmp file.&amp;nbsp;&lt;/P&gt;&lt;P&gt;Please help me. I need very urgent help.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you.&lt;/P&gt;&lt;P&gt;Best Regards,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Tue, 09 Jan 2018 07:46:04 GMT</pubDate>
    <dc:creator>nac</dc:creator>
    <dc:date>2018-01-09T07:46:04Z</dc:date>
    <item>
      <title>bell curve for exam grade calculation</title>
      <link>https://community.jmp.com/t5/Discussions/bell-curve-for-exam-grade-calculation/m-p/49422#M28104</link>
      <description>&lt;P&gt;dear all,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I made an exam and ı want to calculate exam grades by using bell curve approach. I heard this approach but ı do not know how can I apply it.&amp;nbsp;&lt;/P&gt;&lt;P&gt;How can ı calculate their exam grades?&amp;nbsp; which one is A,B,C etc... Each line represent one student exam result at the attached jmp file.&amp;nbsp;&lt;/P&gt;&lt;P&gt;Please help me. I need very urgent help.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you.&lt;/P&gt;&lt;P&gt;Best Regards,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 09 Jan 2018 07:46:04 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/bell-curve-for-exam-grade-calculation/m-p/49422#M28104</guid>
      <dc:creator>nac</dc:creator>
      <dc:date>2018-01-09T07:46:04Z</dc:date>
    </item>
    <item>
      <title>Re: bell curve for exam grade calculation</title>
      <link>https://community.jmp.com/t5/Discussions/bell-curve-for-exam-grade-calculation/m-p/49426#M28107</link>
      <description>&lt;P&gt;Using splits in the example on&amp;nbsp;&lt;A href="https://en.wikipedia.org/wiki/Grading_on_a_curve" target="_self"&gt;wikipedia&lt;/A&gt;,&amp;nbsp;you could&amp;nbsp;calculate the rank and then the grade:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;New Table( "bell curve for exam grade calculation",
	Add Rows( 16 ),
	New Script(
		"Distribution",
		Distribution(
			Continuous Distribution(
				Column( :Result ),
				Custom Quantiles( 0.95, [0.8, 0.5, 0.2, 0.1, 0] )
			),
			Nominal Distribution( Column( :Grade ) ),
			SendToReport(
				Dispatch( {"Result"}, "Quantiles", OutlineBox, {Close( 1 )} ),
				Dispatch( {"Result"}, "Summary Statistics", OutlineBox, {Close( 1 )} ),
				Dispatch(
					{"Result", "Custom Quantiles"},
					"Smoothed Empirical Likelihood Quantiles",
					OutlineBox,
					{Close( 1 )}
				)
			)
		)
	),
	New Column( "Result",
		Numeric, "Continuous", Format( "Best", 12 ),
		Set Values(
			[100, 101, 98, 82, 87, 100, 92, 67, 108, 97, 88, 80, 52, 73, 50, 57]
		)
	),
	New Column( "Rank",
		Numeric, "Continuous", Format( "Best", 12 ),
		Formula( Col Rank( :Result, &amp;lt;&amp;lt;Tie( "minimum" ) ) )
	),
	New Column( "Rank PCT",
		Numeric, "Continuous", Format( "Percent", 12, 0 ),
		Formula( :Rank / N Rows() )
	),
	New Column( "Grade",
		Character, "Nominal",
		Formula(
			If(
				:Rank PCT &amp;gt;= 0.8, "A",
				:Rank PCT &amp;gt;= 0.5, "B",
				:Rank PCT &amp;gt;= 0.2, "C",
				:Rank PCT &amp;gt;= 0.1, "D",
				"F"
			)
		)
	)
)&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;You could also just use Col Quantile() to find the cutoff points for each grade, or get them directly from the distribution platform using custom quantiles.&amp;nbsp; See the saved script in the table above.&lt;/P&gt;</description>
      <pubDate>Tue, 09 Jan 2018 13:44:46 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/bell-curve-for-exam-grade-calculation/m-p/49426#M28107</guid>
      <dc:creator>ih</dc:creator>
      <dc:date>2018-01-09T13:44:46Z</dc:date>
    </item>
  </channel>
</rss>

