<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>https://wiki.expertiza.ncsu.edu/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Sseelam2</id>
	<title>Expertiza_Wiki - User contributions [en]</title>
	<link rel="self" type="application/atom+xml" href="https://wiki.expertiza.ncsu.edu/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Sseelam2"/>
	<link rel="alternate" type="text/html" href="https://wiki.expertiza.ncsu.edu/index.php?title=Special:Contributions/Sseelam2"/>
	<updated>2026-06-01T19:07:40Z</updated>
	<subtitle>User contributions</subtitle>
	<generator>MediaWiki 1.41.0</generator>
	<entry>
		<id>https://wiki.expertiza.ncsu.edu/index.php?title=IndependentStudy_Visualizations&amp;diff=129742</id>
		<title>IndependentStudy Visualizations</title>
		<link rel="alternate" type="text/html" href="https://wiki.expertiza.ncsu.edu/index.php?title=IndependentStudy_Visualizations&amp;diff=129742"/>
		<updated>2019-12-04T00:38:48Z</updated>

		<summary type="html">&lt;p&gt;Sseelam2: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;===Introduction===&lt;br /&gt;
&lt;br /&gt;
This project fixes the way graphs are represented in the review report. Expertiza interprets metrics in the form of a graph in the review report. This Project also refractors &lt;br /&gt;
review_mapping_helper.rb.&lt;br /&gt;
&lt;br /&gt;
===Problem Statement===&lt;br /&gt;
* Currently, the bars in the graphs overlap and they are not positioned properly. &lt;br /&gt;
* The legends (vol. and avg vol.) are present in every cell in the metrics column. &lt;br /&gt;
* The current code assumes that there are no more than three rounds.&lt;br /&gt;
* Refactored review_mapping_helper.rb.&lt;br /&gt;
* Add comments to methods.&lt;br /&gt;
&lt;br /&gt;
===Files modified===&lt;br /&gt;
app/assets/stylesheets/legend.css&lt;br /&gt;
app/helpers/charts_helper.rb&lt;br /&gt;
app/helpers/review_mapping_helper.rb&lt;br /&gt;
app/views/reports/_calibration_report.html.erb&lt;br /&gt;
app/views/reports/_feedback_report.html.erb&lt;br /&gt;
app/views/reports/_review_report.html.erb&lt;br /&gt;
app/views/reports/_team_score.html.erb&lt;br /&gt;
&lt;br /&gt;
===Solution===&lt;br /&gt;
1. Currently, the bars in the graphs overlap and they are not positioned properly and the legends (vol. and avg vol.) are present in every cell in the metrics column.&lt;br /&gt;
This change is present in the files - app/views/reports/_review_report.html.erb and app/helpers/review_mapping_helper.rb&lt;br /&gt;
&lt;br /&gt;
'''Before'''&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
[[File:Before_Graph.jpg]]&lt;br /&gt;
&amp;lt;br&amp;gt;&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
'''After'''&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
[[File:After_Graph.jpg]]&lt;br /&gt;
&amp;lt;br&amp;gt;&amp;lt;br&amp;gt;&lt;br /&gt;
2. The current code assumes that there are no more than three rounds. Changes can be found in app/helpers/review_mapping_helper.rb&lt;br /&gt;
&lt;br /&gt;
'''Before'''&lt;br /&gt;
  def initialize_chart_elements(reviewer)&lt;br /&gt;
    round = 0&lt;br /&gt;
    labels = []&lt;br /&gt;
    reviewer_data = []&lt;br /&gt;
    all_reviewers_data = []&lt;br /&gt;
    if @all_reviewers_avg_vol_in_round_1 &amp;gt; 0&lt;br /&gt;
      round += 1&lt;br /&gt;
      labels.push '1st'&lt;br /&gt;
      reviewer_data.push reviewer.avg_vol_in_round_1&lt;br /&gt;
      all_reviewers_data.push @all_reviewers_avg_vol_in_round_1&lt;br /&gt;
    end&lt;br /&gt;
    if @all_reviewers_avg_vol_in_round_2 &amp;gt; 0&lt;br /&gt;
      round += 1&lt;br /&gt;
      labels.push '2nd'&lt;br /&gt;
      reviewer_data.push reviewer.avg_vol_in_round_2&lt;br /&gt;
      all_reviewers_data.push @all_reviewers_avg_vol_in_round_2&lt;br /&gt;
    end&lt;br /&gt;
    if @all_reviewers_avg_vol_in_round_3 &amp;gt; 0&lt;br /&gt;
      round += 1&lt;br /&gt;
      labels.push '3rd'&lt;br /&gt;
      reviewer_data.push reviewer.avg_vol_in_round_3&lt;br /&gt;
      all_reviewers_data.push @all_reviewers_avg_vol_in_round_3&lt;br /&gt;
    end&lt;br /&gt;
    labels.push 'Total'&lt;br /&gt;
    reviewer_data.push reviewer.overall_avg_vol&lt;br /&gt;
    all_reviewers_data.push @all_reviewers_overall_avg_vol&lt;br /&gt;
    [labels, reviewer_data, all_reviewers_data]&lt;br /&gt;
  end&lt;br /&gt;
&lt;br /&gt;
'''After'''&lt;br /&gt;
&lt;br /&gt;
 def initialize_chart_elements(reviewer)&lt;br /&gt;
    #round = 0&lt;br /&gt;
    labels = []&lt;br /&gt;
    reviewer_data = []&lt;br /&gt;
    all_reviewers_data = []&lt;br /&gt;
   &lt;br /&gt;
    (1..@assignment.num_review_rounds).each do |round_num|&lt;br /&gt;
      #round += 1&lt;br /&gt;
      labels.push round_num.to_s&lt;br /&gt;
      reviewer_data.push eval(&amp;quot;reviewer.avg_vol_in_round_#{round_num}&amp;quot;)&lt;br /&gt;
      all_reviewers_data.push instance_variable_get(&amp;quot;@all_reviewers_avg_vol_in_round_#{round_num}&amp;quot;)&lt;br /&gt;
    end&lt;br /&gt;
    labels.push 'Total'&lt;br /&gt;
    reviewer_data.push reviewer.overall_avg_vol&lt;br /&gt;
    all_reviewers_data.push @all_reviewers_overall_avg_vol&lt;br /&gt;
    [labels, reviewer_data, all_reviewers_data]&lt;br /&gt;
  end&lt;br /&gt;
&lt;br /&gt;
3. Refractored review_mapping_helper.rb.&lt;br /&gt;
Refactored review_mapping_helper.rb. Few of the changes are reducing the length of method names, adding comments, removing redundant code,&lt;br /&gt;
adding string interpolation.&lt;br /&gt;
&lt;br /&gt;
please see the pull request for detailed code. [https://github.com/expertiza/expertiza/pull/1493]&lt;/div&gt;</summary>
		<author><name>Sseelam2</name></author>
	</entry>
	<entry>
		<id>https://wiki.expertiza.ncsu.edu/index.php?title=IndependentStudy_Visualizations&amp;diff=129741</id>
		<title>IndependentStudy Visualizations</title>
		<link rel="alternate" type="text/html" href="https://wiki.expertiza.ncsu.edu/index.php?title=IndependentStudy_Visualizations&amp;diff=129741"/>
		<updated>2019-12-04T00:36:41Z</updated>

		<summary type="html">&lt;p&gt;Sseelam2: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;===Introduction===&lt;br /&gt;
&lt;br /&gt;
This project fixes the way graphs are represented in the review report. Expertiza interprets metrics in the form of a graph in the review report. This Project also refractors &lt;br /&gt;
review_mapping_helper.rb.&lt;br /&gt;
&lt;br /&gt;
===Problem Statement===&lt;br /&gt;
Currently, the bars in the graphs overlap and they are not positioned properly. &lt;br /&gt;
The legends (vol. and avg vol.) are present in every cell in the metrics column. &lt;br /&gt;
The current code assumes that there are no more than three rounds.&lt;br /&gt;
Removed charts_helpers.rb since it was not being used anywhere in the code.&lt;br /&gt;
Refractored review_mapping_helper.rb.&lt;br /&gt;
Add comments to methods.&lt;br /&gt;
&lt;br /&gt;
===Files modified===&lt;br /&gt;
app/assets/stylesheets/legend.css&lt;br /&gt;
app/helpers/charts_helper.rb&lt;br /&gt;
app/helpers/review_mapping_helper.rb&lt;br /&gt;
app/views/reports/_calibration_report.html.erb&lt;br /&gt;
app/views/reports/_feedback_report.html.erb&lt;br /&gt;
app/views/reports/_review_report.html.erb&lt;br /&gt;
app/views/reports/_team_score.html.erb&lt;br /&gt;
&lt;br /&gt;
===Solution===&lt;br /&gt;
1. Currently, the bars in the graphs overlap and they are not positioned properly and the legends (vol. and avg vol.) are present in every cell in the metrics column.&lt;br /&gt;
This change is present in the files - app/views/reports/_review_report.html.erb and app/helpers/review_mapping_helper.rb&lt;br /&gt;
&lt;br /&gt;
'''Before'''&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
[[File:Before_Graph.jpg]]&lt;br /&gt;
&amp;lt;br&amp;gt;&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
'''After'''&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
[[File:After_Graph.jpg]]&lt;br /&gt;
&amp;lt;br&amp;gt;&amp;lt;br&amp;gt;&lt;br /&gt;
2. The current code assumes that there are no more than three rounds. Changes can be found in app/helpers/review_mapping_helper.rb&lt;br /&gt;
&lt;br /&gt;
'''Before'''&lt;br /&gt;
  def initialize_chart_elements(reviewer)&lt;br /&gt;
    round = 0&lt;br /&gt;
    labels = []&lt;br /&gt;
    reviewer_data = []&lt;br /&gt;
    all_reviewers_data = []&lt;br /&gt;
    if @all_reviewers_avg_vol_in_round_1 &amp;gt; 0&lt;br /&gt;
      round += 1&lt;br /&gt;
      labels.push '1st'&lt;br /&gt;
      reviewer_data.push reviewer.avg_vol_in_round_1&lt;br /&gt;
      all_reviewers_data.push @all_reviewers_avg_vol_in_round_1&lt;br /&gt;
    end&lt;br /&gt;
    if @all_reviewers_avg_vol_in_round_2 &amp;gt; 0&lt;br /&gt;
      round += 1&lt;br /&gt;
      labels.push '2nd'&lt;br /&gt;
      reviewer_data.push reviewer.avg_vol_in_round_2&lt;br /&gt;
      all_reviewers_data.push @all_reviewers_avg_vol_in_round_2&lt;br /&gt;
    end&lt;br /&gt;
    if @all_reviewers_avg_vol_in_round_3 &amp;gt; 0&lt;br /&gt;
      round += 1&lt;br /&gt;
      labels.push '3rd'&lt;br /&gt;
      reviewer_data.push reviewer.avg_vol_in_round_3&lt;br /&gt;
      all_reviewers_data.push @all_reviewers_avg_vol_in_round_3&lt;br /&gt;
    end&lt;br /&gt;
    labels.push 'Total'&lt;br /&gt;
    reviewer_data.push reviewer.overall_avg_vol&lt;br /&gt;
    all_reviewers_data.push @all_reviewers_overall_avg_vol&lt;br /&gt;
    [labels, reviewer_data, all_reviewers_data]&lt;br /&gt;
  end&lt;br /&gt;
&lt;br /&gt;
'''After'''&lt;br /&gt;
&lt;br /&gt;
 def initialize_chart_elements(reviewer)&lt;br /&gt;
    #round = 0&lt;br /&gt;
    labels = []&lt;br /&gt;
    reviewer_data = []&lt;br /&gt;
    all_reviewers_data = []&lt;br /&gt;
   &lt;br /&gt;
    (1..@assignment.num_review_rounds).each do |round_num|&lt;br /&gt;
      #round += 1&lt;br /&gt;
      labels.push round_num.to_s&lt;br /&gt;
      reviewer_data.push eval(&amp;quot;reviewer.avg_vol_in_round_#{round_num}&amp;quot;)&lt;br /&gt;
      all_reviewers_data.push instance_variable_get(&amp;quot;@all_reviewers_avg_vol_in_round_#{round_num}&amp;quot;)&lt;br /&gt;
    end&lt;br /&gt;
    labels.push 'Total'&lt;br /&gt;
    reviewer_data.push reviewer.overall_avg_vol&lt;br /&gt;
    all_reviewers_data.push @all_reviewers_overall_avg_vol&lt;br /&gt;
    [labels, reviewer_data, all_reviewers_data]&lt;br /&gt;
  end&lt;br /&gt;
&lt;br /&gt;
3. Refractored review_mapping_helper.rb.&lt;br /&gt;
Refactored review_mapping_helper.rb. Few of the changes are reducing the length of method names, adding comments, removing redundant code,&lt;br /&gt;
adding string interpolation.&lt;br /&gt;
&lt;br /&gt;
please see the pull request for detailed code. [https://github.com/expertiza/expertiza/pull/1493]&lt;/div&gt;</summary>
		<author><name>Sseelam2</name></author>
	</entry>
	<entry>
		<id>https://wiki.expertiza.ncsu.edu/index.php?title=File:After_Graph.jpg&amp;diff=129740</id>
		<title>File:After Graph.jpg</title>
		<link rel="alternate" type="text/html" href="https://wiki.expertiza.ncsu.edu/index.php?title=File:After_Graph.jpg&amp;diff=129740"/>
		<updated>2019-12-04T00:28:14Z</updated>

		<summary type="html">&lt;p&gt;Sseelam2: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Sseelam2</name></author>
	</entry>
	<entry>
		<id>https://wiki.expertiza.ncsu.edu/index.php?title=IndependentStudy_Visualizations&amp;diff=129739</id>
		<title>IndependentStudy Visualizations</title>
		<link rel="alternate" type="text/html" href="https://wiki.expertiza.ncsu.edu/index.php?title=IndependentStudy_Visualizations&amp;diff=129739"/>
		<updated>2019-12-04T00:25:59Z</updated>

		<summary type="html">&lt;p&gt;Sseelam2: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;'''Introduction:'''&lt;br /&gt;
This project fixes the way graphs are represented in the review report. Expertiza interprets metrics in the form of a graph in the review report. This Project also refractors &lt;br /&gt;
review_mapping_helper.rb.&lt;br /&gt;
&lt;br /&gt;
'''Problem Statement:'''&lt;br /&gt;
Currently, the bars in the graphs overlap and they are not positioned properly. &lt;br /&gt;
The legends (vol. and avg vol.) are present in every cell in the metrics column. &lt;br /&gt;
The current code assumes that there are no more than three rounds.&lt;br /&gt;
Removed charts_helpers.rb since it was not being used anywhere in the code.&lt;br /&gt;
Refractored review_mapping_helper.rb.&lt;br /&gt;
Add comments to methods.&lt;br /&gt;
'''&lt;br /&gt;
Files modified:'''&lt;br /&gt;
app/assets/stylesheets/legend.css&lt;br /&gt;
app/helpers/charts_helper.rb&lt;br /&gt;
app/helpers/review_mapping_helper.rb&lt;br /&gt;
app/views/reports/_calibration_report.html.erb&lt;br /&gt;
app/views/reports/_feedback_report.html.erb&lt;br /&gt;
app/views/reports/_review_report.html.erb&lt;br /&gt;
app/views/reports/_team_score.html.erb&lt;br /&gt;
&lt;br /&gt;
'''Solution:'''&lt;br /&gt;
1. Currently, the bars in the graphs overlap and they are not positioned properly and the legends (vol. and avg vol.) are present in every cell in the metrics column.&lt;br /&gt;
This change is present in the files - app/views/reports/_review_report.html.erb and app/helpers/review_mapping_helper.rb&lt;br /&gt;
&lt;br /&gt;
Before:&lt;br /&gt;
[[File:Before_Graph.jpg]]&lt;br /&gt;
&lt;br /&gt;
After:&lt;br /&gt;
[[File:After_Graph.jpg]]&lt;br /&gt;
&lt;br /&gt;
2. The current code assumes that there are no more than three rounds. Changes can be found in app/helpers/review_mapping_helper.rb&lt;br /&gt;
&lt;br /&gt;
Before:&lt;br /&gt;
  def initialize_chart_elements(reviewer)&lt;br /&gt;
    round = 0&lt;br /&gt;
    labels = []&lt;br /&gt;
    reviewer_data = []&lt;br /&gt;
    all_reviewers_data = []&lt;br /&gt;
    if @all_reviewers_avg_vol_in_round_1 &amp;gt; 0&lt;br /&gt;
      round += 1&lt;br /&gt;
      labels.push '1st'&lt;br /&gt;
      reviewer_data.push reviewer.avg_vol_in_round_1&lt;br /&gt;
      all_reviewers_data.push @all_reviewers_avg_vol_in_round_1&lt;br /&gt;
    end&lt;br /&gt;
    if @all_reviewers_avg_vol_in_round_2 &amp;gt; 0&lt;br /&gt;
      round += 1&lt;br /&gt;
      labels.push '2nd'&lt;br /&gt;
      reviewer_data.push reviewer.avg_vol_in_round_2&lt;br /&gt;
      all_reviewers_data.push @all_reviewers_avg_vol_in_round_2&lt;br /&gt;
    end&lt;br /&gt;
    if @all_reviewers_avg_vol_in_round_3 &amp;gt; 0&lt;br /&gt;
      round += 1&lt;br /&gt;
      labels.push '3rd'&lt;br /&gt;
      reviewer_data.push reviewer.avg_vol_in_round_3&lt;br /&gt;
      all_reviewers_data.push @all_reviewers_avg_vol_in_round_3&lt;br /&gt;
    end&lt;br /&gt;
&lt;br /&gt;
    labels.push 'Total'&lt;br /&gt;
    reviewer_data.push reviewer.overall_avg_vol&lt;br /&gt;
    all_reviewers_data.push @all_reviewers_overall_avg_vol&lt;br /&gt;
    [labels, reviewer_data, all_reviewers_data]&lt;br /&gt;
  end&lt;br /&gt;
&lt;br /&gt;
After:&lt;br /&gt;
&lt;br /&gt;
 def initialize_chart_elements(reviewer)&lt;br /&gt;
    #round = 0&lt;br /&gt;
    labels = []&lt;br /&gt;
    reviewer_data = []&lt;br /&gt;
    all_reviewers_data = []&lt;br /&gt;
   &lt;br /&gt;
    (1..@assignment.num_review_rounds).each do |round_num|&lt;br /&gt;
      #round += 1&lt;br /&gt;
      labels.push round_num.to_s&lt;br /&gt;
      reviewer_data.push eval(&amp;quot;reviewer.avg_vol_in_round_#{round_num}&amp;quot;)&lt;br /&gt;
      all_reviewers_data.push instance_variable_get(&amp;quot;@all_reviewers_avg_vol_in_round_#{round_num}&amp;quot;)&lt;br /&gt;
    end&lt;br /&gt;
&lt;br /&gt;
    labels.push 'Total'&lt;br /&gt;
    reviewer_data.push reviewer.overall_avg_vol&lt;br /&gt;
    all_reviewers_data.push @all_reviewers_overall_avg_vol&lt;br /&gt;
    [labels, reviewer_data, all_reviewers_data]&lt;br /&gt;
  end&lt;br /&gt;
&lt;br /&gt;
3. Refractored review_mapping_helper.rb.&lt;br /&gt;
Refactored review_mapping_helper.rb. Few of the changes are reducing the length of method names, adding comments, removing redundant code,&lt;br /&gt;
adding string interpolation.&lt;br /&gt;
&lt;br /&gt;
please see the pull request for detailed code. [https://github.com/expertiza/expertiza/pull/1493]&lt;/div&gt;</summary>
		<author><name>Sseelam2</name></author>
	</entry>
	<entry>
		<id>https://wiki.expertiza.ncsu.edu/index.php?title=IndependentStudy_Visualizations&amp;diff=129738</id>
		<title>IndependentStudy Visualizations</title>
		<link rel="alternate" type="text/html" href="https://wiki.expertiza.ncsu.edu/index.php?title=IndependentStudy_Visualizations&amp;diff=129738"/>
		<updated>2019-12-04T00:24:40Z</updated>

		<summary type="html">&lt;p&gt;Sseelam2: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;'''Introduction:'''&lt;br /&gt;
This project fixes the way graphs are represented in the review report. Expertiza interprets metrics in the form of a graph in the review report. This Project also refractors &lt;br /&gt;
review_mapping_helper.rb.&lt;br /&gt;
&lt;br /&gt;
'''Problem Statement:'''&lt;br /&gt;
Currently, the bars in the graphs overlap and they are not positioned properly. &lt;br /&gt;
The legends (vol. and avg vol.) are present in every cell in the metrics column. &lt;br /&gt;
The current code assumes that there are no more than three rounds.&lt;br /&gt;
Removed charts_helpers.rb since it was not being used anywhere in the code.&lt;br /&gt;
Refractored review_mapping_helper.rb.&lt;br /&gt;
Add comments to methods.&lt;br /&gt;
'''&lt;br /&gt;
Files modified:'''&lt;br /&gt;
app/assets/stylesheets/legend.css&lt;br /&gt;
app/helpers/charts_helper.rb&lt;br /&gt;
app/helpers/review_mapping_helper.rb&lt;br /&gt;
app/views/reports/_calibration_report.html.erb&lt;br /&gt;
app/views/reports/_feedback_report.html.erb&lt;br /&gt;
app/views/reports/_review_report.html.erb&lt;br /&gt;
app/views/reports/_team_score.html.erb&lt;br /&gt;
&lt;br /&gt;
'''Solution:'''&lt;br /&gt;
1. Currently, the bars in the graphs overlap and they are not positioned properly and the legends (vol. and avg vol.) are present in every cell in the metrics column.&lt;br /&gt;
This change is present in the files - app/views/reports/_review_report.html.erb and app/helpers/review_mapping_helper.rb&lt;br /&gt;
&lt;br /&gt;
Before:&lt;br /&gt;
[[File:Before_Graph.jpg]]&lt;br /&gt;
&lt;br /&gt;
After:&lt;br /&gt;
[[File:After_Graph.jpg]]&lt;br /&gt;
&lt;br /&gt;
2. Current code assumes that there are no more than three rounds. Changes can be found in app/helpers/review_mapping_helper.rb&lt;br /&gt;
&lt;br /&gt;
Before:&lt;br /&gt;
  def initialize_chart_elements(reviewer)&lt;br /&gt;
    round = 0&lt;br /&gt;
    labels = []&lt;br /&gt;
    reviewer_data = []&lt;br /&gt;
    all_reviewers_data = []&lt;br /&gt;
    if @all_reviewers_avg_vol_in_round_1 &amp;gt; 0&lt;br /&gt;
      round += 1&lt;br /&gt;
      labels.push '1st'&lt;br /&gt;
      reviewer_data.push reviewer.avg_vol_in_round_1&lt;br /&gt;
      all_reviewers_data.push @all_reviewers_avg_vol_in_round_1&lt;br /&gt;
    end&lt;br /&gt;
    if @all_reviewers_avg_vol_in_round_2 &amp;gt; 0&lt;br /&gt;
      round += 1&lt;br /&gt;
      labels.push '2nd'&lt;br /&gt;
      reviewer_data.push reviewer.avg_vol_in_round_2&lt;br /&gt;
      all_reviewers_data.push @all_reviewers_avg_vol_in_round_2&lt;br /&gt;
    end&lt;br /&gt;
    if @all_reviewers_avg_vol_in_round_3 &amp;gt; 0&lt;br /&gt;
      round += 1&lt;br /&gt;
      labels.push '3rd'&lt;br /&gt;
      reviewer_data.push reviewer.avg_vol_in_round_3&lt;br /&gt;
      all_reviewers_data.push @all_reviewers_avg_vol_in_round_3&lt;br /&gt;
    end&lt;br /&gt;
&lt;br /&gt;
    labels.push 'Total'&lt;br /&gt;
    reviewer_data.push reviewer.overall_avg_vol&lt;br /&gt;
    all_reviewers_data.push @all_reviewers_overall_avg_vol&lt;br /&gt;
    [labels, reviewer_data, all_reviewers_data]&lt;br /&gt;
  end&lt;br /&gt;
&lt;br /&gt;
After:&lt;br /&gt;
&lt;br /&gt;
 def initialize_chart_elements(reviewer)&lt;br /&gt;
    #round = 0&lt;br /&gt;
    labels = []&lt;br /&gt;
    reviewer_data = []&lt;br /&gt;
    all_reviewers_data = []&lt;br /&gt;
   &lt;br /&gt;
    (1..@assignment.num_review_rounds).each do |round_num|&lt;br /&gt;
      #round += 1&lt;br /&gt;
      labels.push round_num.to_s&lt;br /&gt;
      reviewer_data.push eval(&amp;quot;reviewer.avg_vol_in_round_#{round_num}&amp;quot;)&lt;br /&gt;
      all_reviewers_data.push instance_variable_get(&amp;quot;@all_reviewers_avg_vol_in_round_#{round_num}&amp;quot;)&lt;br /&gt;
    end&lt;br /&gt;
&lt;br /&gt;
    labels.push 'Total'&lt;br /&gt;
    reviewer_data.push reviewer.overall_avg_vol&lt;br /&gt;
    all_reviewers_data.push @all_reviewers_overall_avg_vol&lt;br /&gt;
    [labels, reviewer_data, all_reviewers_data]&lt;br /&gt;
  end&lt;br /&gt;
&lt;br /&gt;
3. Refractored review_mapping_helper.rb.&lt;br /&gt;
Refactored review_mapping_helper.rb. Few of the changes are reducing the length of method names, adding comments, removing redundant code,&lt;br /&gt;
adding string interpolation.&lt;br /&gt;
&lt;br /&gt;
please see the pull request for detailed code. [https://github.com/expertiza/expertiza/pull/1493]&lt;/div&gt;</summary>
		<author><name>Sseelam2</name></author>
	</entry>
	<entry>
		<id>https://wiki.expertiza.ncsu.edu/index.php?title=File:After_Graph.png&amp;diff=129737</id>
		<title>File:After Graph.png</title>
		<link rel="alternate" type="text/html" href="https://wiki.expertiza.ncsu.edu/index.php?title=File:After_Graph.png&amp;diff=129737"/>
		<updated>2019-12-04T00:23:46Z</updated>

		<summary type="html">&lt;p&gt;Sseelam2: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Sseelam2</name></author>
	</entry>
	<entry>
		<id>https://wiki.expertiza.ncsu.edu/index.php?title=IndependentStudy_Visualizations&amp;diff=129736</id>
		<title>IndependentStudy Visualizations</title>
		<link rel="alternate" type="text/html" href="https://wiki.expertiza.ncsu.edu/index.php?title=IndependentStudy_Visualizations&amp;diff=129736"/>
		<updated>2019-12-04T00:21:13Z</updated>

		<summary type="html">&lt;p&gt;Sseelam2: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;'''Introduction:'''&lt;br /&gt;
This project fixes the way graphs are reperesented in the review report. Expertiza interprets metrics in the form of a graph in the review report. This Project also refractors &lt;br /&gt;
review_mapping_helper.rb.&lt;br /&gt;
&lt;br /&gt;
'''Problem Statement:'''&lt;br /&gt;
Currently the bars in the graphs overlap and they are not positioned properly. &lt;br /&gt;
The legends (vol. and avg vol.) are present in every cell in the metrics column. &lt;br /&gt;
Current code assumes that there are no more than three rounds.&lt;br /&gt;
Removed charts_helpers.rb since it was not being used anywhere in the code.&lt;br /&gt;
Refractored review_mapping_helper.rb.&lt;br /&gt;
Add comments to methods.&lt;br /&gt;
'''&lt;br /&gt;
Files modified:'''&lt;br /&gt;
app/assets/stylesheets/legend.css&lt;br /&gt;
app/helpers/charts_helper.rb&lt;br /&gt;
app/helpers/review_mapping_helper.rb&lt;br /&gt;
app/views/reports/_calibration_report.html.erb&lt;br /&gt;
app/views/reports/_feedback_report.html.erb&lt;br /&gt;
app/views/reports/_review_report.html.erb&lt;br /&gt;
app/views/reports/_team_score.html.erb&lt;br /&gt;
&lt;br /&gt;
'''Solution:'''&lt;br /&gt;
1. Currently the bars in the graphs overlap and they are not positioned properly and the legends (vol. and avg vol.) are present in every cell in the metrics column.&lt;br /&gt;
This change is present in the files - app/views/reports/_review_report.html.erb and app/helpers/review_mapping_helper.rb&lt;br /&gt;
&lt;br /&gt;
Before:&lt;br /&gt;
[[File:Before_Graph.jpg]]&lt;br /&gt;
After:&lt;br /&gt;
[[File:after.jpg]]&lt;br /&gt;
&lt;br /&gt;
2. Current code assumes that there are no more than three rounds. Changes can be found in app/helpers/review_mapping_helper.rb&lt;br /&gt;
&lt;br /&gt;
Before:&lt;br /&gt;
  def initialize_chart_elements(reviewer)&lt;br /&gt;
    round = 0&lt;br /&gt;
    labels = []&lt;br /&gt;
    reviewer_data = []&lt;br /&gt;
    all_reviewers_data = []&lt;br /&gt;
    if @all_reviewers_avg_vol_in_round_1 &amp;gt; 0&lt;br /&gt;
      round += 1&lt;br /&gt;
      labels.push '1st'&lt;br /&gt;
      reviewer_data.push reviewer.avg_vol_in_round_1&lt;br /&gt;
      all_reviewers_data.push @all_reviewers_avg_vol_in_round_1&lt;br /&gt;
    end&lt;br /&gt;
    if @all_reviewers_avg_vol_in_round_2 &amp;gt; 0&lt;br /&gt;
      round += 1&lt;br /&gt;
      labels.push '2nd'&lt;br /&gt;
      reviewer_data.push reviewer.avg_vol_in_round_2&lt;br /&gt;
      all_reviewers_data.push @all_reviewers_avg_vol_in_round_2&lt;br /&gt;
    end&lt;br /&gt;
    if @all_reviewers_avg_vol_in_round_3 &amp;gt; 0&lt;br /&gt;
      round += 1&lt;br /&gt;
      labels.push '3rd'&lt;br /&gt;
      reviewer_data.push reviewer.avg_vol_in_round_3&lt;br /&gt;
      all_reviewers_data.push @all_reviewers_avg_vol_in_round_3&lt;br /&gt;
    end&lt;br /&gt;
&lt;br /&gt;
    labels.push 'Total'&lt;br /&gt;
    reviewer_data.push reviewer.overall_avg_vol&lt;br /&gt;
    all_reviewers_data.push @all_reviewers_overall_avg_vol&lt;br /&gt;
    [labels, reviewer_data, all_reviewers_data]&lt;br /&gt;
  end&lt;br /&gt;
&lt;br /&gt;
After:&lt;br /&gt;
&lt;br /&gt;
 def initialize_chart_elements(reviewer)&lt;br /&gt;
    #round = 0&lt;br /&gt;
    labels = []&lt;br /&gt;
    reviewer_data = []&lt;br /&gt;
    all_reviewers_data = []&lt;br /&gt;
   &lt;br /&gt;
    (1..@assignment.num_review_rounds).each do |round_num|&lt;br /&gt;
      #round += 1&lt;br /&gt;
      labels.push round_num.to_s&lt;br /&gt;
      reviewer_data.push eval(&amp;quot;reviewer.avg_vol_in_round_#{round_num}&amp;quot;)&lt;br /&gt;
      all_reviewers_data.push instance_variable_get(&amp;quot;@all_reviewers_avg_vol_in_round_#{round_num}&amp;quot;)&lt;br /&gt;
    end&lt;br /&gt;
&lt;br /&gt;
    labels.push 'Total'&lt;br /&gt;
    reviewer_data.push reviewer.overall_avg_vol&lt;br /&gt;
    all_reviewers_data.push @all_reviewers_overall_avg_vol&lt;br /&gt;
    [labels, reviewer_data, all_reviewers_data]&lt;br /&gt;
  end&lt;br /&gt;
&lt;br /&gt;
3. Refractored review_mapping_helper.rb.&lt;br /&gt;
Refractored review_mapping_helper.rb. Few of the changes are reducing the length of method names, adding comments, removing redudant code,&lt;br /&gt;
adding string interpolation.&lt;br /&gt;
&lt;br /&gt;
please see the pull request for detailed code. [https://github.com/expertiza/expertiza/pull/1493]&lt;/div&gt;</summary>
		<author><name>Sseelam2</name></author>
	</entry>
	<entry>
		<id>https://wiki.expertiza.ncsu.edu/index.php?title=File:Before_Graph.jpg&amp;diff=129735</id>
		<title>File:Before Graph.jpg</title>
		<link rel="alternate" type="text/html" href="https://wiki.expertiza.ncsu.edu/index.php?title=File:Before_Graph.jpg&amp;diff=129735"/>
		<updated>2019-12-04T00:20:21Z</updated>

		<summary type="html">&lt;p&gt;Sseelam2: uploaded a new version of &amp;amp;quot;File:Before Graph.jpg&amp;amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Sseelam2</name></author>
	</entry>
	<entry>
		<id>https://wiki.expertiza.ncsu.edu/index.php?title=File:Before_Graph.jpg&amp;diff=129734</id>
		<title>File:Before Graph.jpg</title>
		<link rel="alternate" type="text/html" href="https://wiki.expertiza.ncsu.edu/index.php?title=File:Before_Graph.jpg&amp;diff=129734"/>
		<updated>2019-12-04T00:17:16Z</updated>

		<summary type="html">&lt;p&gt;Sseelam2: uploaded a new version of &amp;amp;quot;File:Before Graph.jpg&amp;amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Sseelam2</name></author>
	</entry>
	<entry>
		<id>https://wiki.expertiza.ncsu.edu/index.php?title=File:Before_Graph.jpg&amp;diff=129733</id>
		<title>File:Before Graph.jpg</title>
		<link rel="alternate" type="text/html" href="https://wiki.expertiza.ncsu.edu/index.php?title=File:Before_Graph.jpg&amp;diff=129733"/>
		<updated>2019-12-04T00:12:07Z</updated>

		<summary type="html">&lt;p&gt;Sseelam2: uploaded a new version of &amp;amp;quot;File:Before Graph.jpg&amp;amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Sseelam2</name></author>
	</entry>
	<entry>
		<id>https://wiki.expertiza.ncsu.edu/index.php?title=File:Before_Graph.jpg&amp;diff=129732</id>
		<title>File:Before Graph.jpg</title>
		<link rel="alternate" type="text/html" href="https://wiki.expertiza.ncsu.edu/index.php?title=File:Before_Graph.jpg&amp;diff=129732"/>
		<updated>2019-12-04T00:06:36Z</updated>

		<summary type="html">&lt;p&gt;Sseelam2: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Sseelam2</name></author>
	</entry>
	<entry>
		<id>https://wiki.expertiza.ncsu.edu/index.php?title=IndependentStudy_Visualizations&amp;diff=129731</id>
		<title>IndependentStudy Visualizations</title>
		<link rel="alternate" type="text/html" href="https://wiki.expertiza.ncsu.edu/index.php?title=IndependentStudy_Visualizations&amp;diff=129731"/>
		<updated>2019-12-04T00:04:45Z</updated>

		<summary type="html">&lt;p&gt;Sseelam2: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;'''Introduction:'''&lt;br /&gt;
This project fixes the way graphs are reperesented in the review report. Expertiza interprets metrics in the form of a graph in the review report. This Project also refractors &lt;br /&gt;
review_mapping_helper.rb.&lt;br /&gt;
&lt;br /&gt;
'''Problem Statement:'''&lt;br /&gt;
Currently the bars in the graphs overlap and they are not positioned properly. &lt;br /&gt;
The legends (vol. and avg vol.) are present in every cell in the metrics column. &lt;br /&gt;
Current code assumes that there are no more than three rounds.&lt;br /&gt;
Removed charts_helpers.rb since it was not being used anywhere in the code.&lt;br /&gt;
Refractored review_mapping_helper.rb.&lt;br /&gt;
Add comments to methods.&lt;br /&gt;
'''&lt;br /&gt;
Files modified:'''&lt;br /&gt;
app/assets/stylesheets/legend.css&lt;br /&gt;
app/helpers/charts_helper.rb&lt;br /&gt;
app/helpers/review_mapping_helper.rb&lt;br /&gt;
app/views/reports/_calibration_report.html.erb&lt;br /&gt;
app/views/reports/_feedback_report.html.erb&lt;br /&gt;
app/views/reports/_review_report.html.erb&lt;br /&gt;
app/views/reports/_team_score.html.erb&lt;br /&gt;
&lt;br /&gt;
'''Solution:'''&lt;br /&gt;
1. Currently the bars in the graphs overlap and they are not positioned properly and the legends (vol. and avg vol.) are present in every cell in the metrics column.&lt;br /&gt;
This change is present in the files - app/views/reports/_review_report.html.erb and app/helpers/review_mapping_helper.rb&lt;br /&gt;
&lt;br /&gt;
Before:&lt;br /&gt;
[[File:Before.jpg]]&lt;br /&gt;
After:&lt;br /&gt;
[[File:after.jpg]]&lt;br /&gt;
&lt;br /&gt;
2. Current code assumes that there are no more than three rounds. Changes can be found in app/helpers/review_mapping_helper.rb&lt;br /&gt;
&lt;br /&gt;
Before:&lt;br /&gt;
  def initialize_chart_elements(reviewer)&lt;br /&gt;
    round = 0&lt;br /&gt;
    labels = []&lt;br /&gt;
    reviewer_data = []&lt;br /&gt;
    all_reviewers_data = []&lt;br /&gt;
    if @all_reviewers_avg_vol_in_round_1 &amp;gt; 0&lt;br /&gt;
      round += 1&lt;br /&gt;
      labels.push '1st'&lt;br /&gt;
      reviewer_data.push reviewer.avg_vol_in_round_1&lt;br /&gt;
      all_reviewers_data.push @all_reviewers_avg_vol_in_round_1&lt;br /&gt;
    end&lt;br /&gt;
    if @all_reviewers_avg_vol_in_round_2 &amp;gt; 0&lt;br /&gt;
      round += 1&lt;br /&gt;
      labels.push '2nd'&lt;br /&gt;
      reviewer_data.push reviewer.avg_vol_in_round_2&lt;br /&gt;
      all_reviewers_data.push @all_reviewers_avg_vol_in_round_2&lt;br /&gt;
    end&lt;br /&gt;
    if @all_reviewers_avg_vol_in_round_3 &amp;gt; 0&lt;br /&gt;
      round += 1&lt;br /&gt;
      labels.push '3rd'&lt;br /&gt;
      reviewer_data.push reviewer.avg_vol_in_round_3&lt;br /&gt;
      all_reviewers_data.push @all_reviewers_avg_vol_in_round_3&lt;br /&gt;
    end&lt;br /&gt;
&lt;br /&gt;
    labels.push 'Total'&lt;br /&gt;
    reviewer_data.push reviewer.overall_avg_vol&lt;br /&gt;
    all_reviewers_data.push @all_reviewers_overall_avg_vol&lt;br /&gt;
    [labels, reviewer_data, all_reviewers_data]&lt;br /&gt;
  end&lt;br /&gt;
&lt;br /&gt;
After:&lt;br /&gt;
&lt;br /&gt;
 def initialize_chart_elements(reviewer)&lt;br /&gt;
    #round = 0&lt;br /&gt;
    labels = []&lt;br /&gt;
    reviewer_data = []&lt;br /&gt;
    all_reviewers_data = []&lt;br /&gt;
   &lt;br /&gt;
    (1..@assignment.num_review_rounds).each do |round_num|&lt;br /&gt;
      #round += 1&lt;br /&gt;
      labels.push round_num.to_s&lt;br /&gt;
      reviewer_data.push eval(&amp;quot;reviewer.avg_vol_in_round_#{round_num}&amp;quot;)&lt;br /&gt;
      all_reviewers_data.push instance_variable_get(&amp;quot;@all_reviewers_avg_vol_in_round_#{round_num}&amp;quot;)&lt;br /&gt;
    end&lt;br /&gt;
&lt;br /&gt;
    labels.push 'Total'&lt;br /&gt;
    reviewer_data.push reviewer.overall_avg_vol&lt;br /&gt;
    all_reviewers_data.push @all_reviewers_overall_avg_vol&lt;br /&gt;
    [labels, reviewer_data, all_reviewers_data]&lt;br /&gt;
  end&lt;br /&gt;
&lt;br /&gt;
3. Refractored review_mapping_helper.rb.&lt;br /&gt;
Refractored review_mapping_helper.rb. Few of the changes are reducing the length of method names, adding comments, removing redudant code,&lt;br /&gt;
adding string interpolation.&lt;br /&gt;
&lt;br /&gt;
please see the pull request for detailed code. [https://github.com/expertiza/expertiza/pull/1493]&lt;/div&gt;</summary>
		<author><name>Sseelam2</name></author>
	</entry>
	<entry>
		<id>https://wiki.expertiza.ncsu.edu/index.php?title=IndependentStudy_Visualizations&amp;diff=129730</id>
		<title>IndependentStudy Visualizations</title>
		<link rel="alternate" type="text/html" href="https://wiki.expertiza.ncsu.edu/index.php?title=IndependentStudy_Visualizations&amp;diff=129730"/>
		<updated>2019-12-03T23:58:36Z</updated>

		<summary type="html">&lt;p&gt;Sseelam2: Created page with &amp;quot;Introduction This project fixes the way graphs are reperesented in the review report. Expertiza interprets metrics in the form of a graph in the review report.This Project also r...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Introduction&lt;br /&gt;
This project fixes the way graphs are reperesented in the review report. Expertiza interprets metrics in the form of a graph in the review report.This Project also refractors &lt;br /&gt;
review_mapping_helper.rb.&lt;br /&gt;
&lt;br /&gt;
Problem Statement&lt;br /&gt;
Currently the bars in the graphs overlap and they are not positioned properly. &lt;br /&gt;
The legends (vol. and avg vol.) are present in every cell in the metrics column. &lt;br /&gt;
Current code assumes that there are no more than three rounds.&lt;br /&gt;
Removed charts_helpers.rb since it was not being used anywhere in the code.&lt;br /&gt;
Refractored review_mapping_helper.rb.&lt;br /&gt;
Add comments to methods.&lt;br /&gt;
&lt;br /&gt;
Files modified:&lt;br /&gt;
app/assets/stylesheets/legend.css&lt;br /&gt;
app/helpers/charts_helper.rb&lt;br /&gt;
app/helpers/review_mapping_helper.rb&lt;br /&gt;
app/views/reports/_calibration_report.html.erb&lt;br /&gt;
app/views/reports/_feedback_report.html.erb&lt;br /&gt;
app/views/reports/_review_report.html.erb&lt;br /&gt;
app/views/reports/_team_score.html.erb&lt;br /&gt;
&lt;br /&gt;
Solution&lt;br /&gt;
1.Currently the bars in the graphs overlap and they are not positioned properly and the legends (vol. and avg vol.) are present in every cell in the metrics column.&lt;br /&gt;
This change is present in the files - app/views/reports/_review_report.html.erb and app/helpers/review_mapping_helper.rb&lt;br /&gt;
&lt;br /&gt;
Before:&lt;br /&gt;
pic&lt;br /&gt;
After:&lt;br /&gt;
pic&lt;br /&gt;
&lt;br /&gt;
2.Current code assumes that there are no more than three rounds. Changes can be found in app/helpers/review_mapping_helper.rb&lt;br /&gt;
&lt;br /&gt;
before:&lt;br /&gt;
  def initialize_chart_elements(reviewer)&lt;br /&gt;
    round = 0&lt;br /&gt;
    labels = []&lt;br /&gt;
    reviewer_data = []&lt;br /&gt;
    all_reviewers_data = []&lt;br /&gt;
    if @all_reviewers_avg_vol_in_round_1 &amp;gt; 0&lt;br /&gt;
      round += 1&lt;br /&gt;
      labels.push '1st'&lt;br /&gt;
      reviewer_data.push reviewer.avg_vol_in_round_1&lt;br /&gt;
      all_reviewers_data.push @all_reviewers_avg_vol_in_round_1&lt;br /&gt;
    end&lt;br /&gt;
    if @all_reviewers_avg_vol_in_round_2 &amp;gt; 0&lt;br /&gt;
      round += 1&lt;br /&gt;
      labels.push '2nd'&lt;br /&gt;
      reviewer_data.push reviewer.avg_vol_in_round_2&lt;br /&gt;
      all_reviewers_data.push @all_reviewers_avg_vol_in_round_2&lt;br /&gt;
    end&lt;br /&gt;
    if @all_reviewers_avg_vol_in_round_3 &amp;gt; 0&lt;br /&gt;
      round += 1&lt;br /&gt;
      labels.push '3rd'&lt;br /&gt;
      reviewer_data.push reviewer.avg_vol_in_round_3&lt;br /&gt;
      all_reviewers_data.push @all_reviewers_avg_vol_in_round_3&lt;br /&gt;
    end&lt;br /&gt;
&lt;br /&gt;
    labels.push 'Total'&lt;br /&gt;
    reviewer_data.push reviewer.overall_avg_vol&lt;br /&gt;
    all_reviewers_data.push @all_reviewers_overall_avg_vol&lt;br /&gt;
    [labels, reviewer_data, all_reviewers_data]&lt;br /&gt;
  end&lt;br /&gt;
&lt;br /&gt;
After:&lt;br /&gt;
&lt;br /&gt;
 def initialize_chart_elements(reviewer)&lt;br /&gt;
    #round = 0&lt;br /&gt;
    labels = []&lt;br /&gt;
    reviewer_data = []&lt;br /&gt;
    all_reviewers_data = []&lt;br /&gt;
   &lt;br /&gt;
    (1..@assignment.num_review_rounds).each do |round_num|&lt;br /&gt;
      #round += 1&lt;br /&gt;
      labels.push round_num.to_s&lt;br /&gt;
      reviewer_data.push eval(&amp;quot;reviewer.avg_vol_in_round_#{round_num}&amp;quot;)&lt;br /&gt;
      all_reviewers_data.push instance_variable_get(&amp;quot;@all_reviewers_avg_vol_in_round_#{round_num}&amp;quot;)&lt;br /&gt;
    end&lt;br /&gt;
&lt;br /&gt;
    labels.push 'Total'&lt;br /&gt;
    reviewer_data.push reviewer.overall_avg_vol&lt;br /&gt;
    all_reviewers_data.push @all_reviewers_overall_avg_vol&lt;br /&gt;
    [labels, reviewer_data, all_reviewers_data]&lt;br /&gt;
  end&lt;br /&gt;
&lt;br /&gt;
3. Refractored review_mapping_helper.rb.&lt;br /&gt;
Refractored review_mapping_helper.rb. Few of the changes are reducing the length of method names, adding comments, removing redudant code,&lt;br /&gt;
adding string interpolation.&lt;br /&gt;
&lt;br /&gt;
please see the pull request for detailed code. https://github.com/expertiza/expertiza/pull/1493&lt;/div&gt;</summary>
		<author><name>Sseelam2</name></author>
	</entry>
	<entry>
		<id>https://wiki.expertiza.ncsu.edu/index.php?title=CSC/ECE_517_Fall_2018_-_E1825:_Add_past-due_assignments_to_task_list&amp;diff=117572</id>
		<title>CSC/ECE 517 Fall 2018 - E1825: Add past-due assignments to task list</title>
		<link rel="alternate" type="text/html" href="https://wiki.expertiza.ncsu.edu/index.php?title=CSC/ECE_517_Fall_2018_-_E1825:_Add_past-due_assignments_to_task_list&amp;diff=117572"/>
		<updated>2018-10-28T15:37:05Z</updated>

		<summary type="html">&lt;p&gt;Sseelam2: Created page with &amp;quot;About Expertiza Expertiza is a web application where students can submit and peer-review learning objects (articles, code, web sites, etc). It is used in select courses at NC Sta...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;About Expertiza&lt;br /&gt;
Expertiza is a web application where students can submit and peer-review learning objects (articles, code, web sites, etc). It is used in select courses at NC State and by professors at several other colleges and universities. -- Expertiza project&lt;/div&gt;</summary>
		<author><name>Sseelam2</name></author>
	</entry>
</feed>