@extends('layouts.master') @section('navigation') @include('local.managers.admins._navigation') @stop @section('main')

@foreach ($participating_undergrad_programs as $program) @endforeach
{{ HTML::linkAction('ProgramsController@show', $program->name, array($program->id)) }}

Assessment Results by Learning Outcomes in the Undergraduate Academic Programs

@foreach($outcomes as $outcome) @endforeach
Learning Outcome Undergraduate Programs doing Assessment Undergraduate Programs Achieved Undergraduate Success Rate
{{ link_to_action('OutcomesController@show', $outcome->name, array($outcome->id), $attributes = array()) }} {{{ $attemptedUndergradProgramsPerOutcome[$outcome->id] }}} {{{ $achievedUndergradProgramsPerOutcome[$outcome->id] }}} @if($attemptedUndergradProgramsPerOutcome[$outcome->id]!=0) {{{ round($achievedUndergradProgramsPerOutcome[$outcome->id] / $attemptedUndergradProgramsPerOutcome[$outcome->id]*100, 2) }}}% @else N/M @endif
N/M: Not Measured

@foreach ($participating_grad_programs as $program) @endforeach
{{ HTML::linkAction('ProgramsController@show', $program->name, array($program->id)) }}

Assessment Results by Learning Outcomes in the Graduate Academic Programs

@foreach($outcomes as $outcome) @endforeach
Learning Outcome Graduate Programs doing Assessment Graduate Programs Achieved Graduate Success Rate
{{ link_to_action('OutcomesController@show', $outcome->name, array($outcome->id), $attributes = array()) }} {{{ $attemptedGradProgramsPerOutcome[$outcome->id] }}} {{{ $achievedGradProgramsPerOutcome[$outcome->id] }}} @if($attemptedGradProgramsPerOutcome[$outcome->id]!=0) {{{ round($achievedGradProgramsPerOutcome[$outcome->id] / $attemptedGradProgramsPerOutcome[$outcome->id]*100, 2) }}}% @else N/M @endif
N/M: Not Measured
@stop @section('included-js') @include('global._datatables_js') @stop @section('javascript') $(function () { $('#levelTabs a').click(function (e) { e.preventDefault() $(this).tab('show'); // Load grad charts after clicking tab, so they are sized correctly. $('#graph_undergrad').highcharts({ chart: { type: 'bar' }, title: { text: 'Undergraduate Performance by Learning Outcome Criteria (Campus)' }, legend: { reversed: true, }, xAxis: { categories: [ @foreach($outcomes as $outcome) "{{{ $outcome->name }}}", @endforeach ], labels: { style: { fontSize:'11px' }, step:1, useHTML:true, formatter: function() { return '
'+this.value+'
'; }, } }, yAxis: { min: 0, max: 100, title: { text: 'Percentage' } }, tooltip: { headerFormat: '{point.key}', pointFormat: '' + '', footerFormat: '
{series.name}: {point.y:.1f}
', shared: true, useHTML: true }, plotOptions: { bar: { //grouping: false, shadow: false, borderWidth: 0, }, series: { pointPadding: 0, groupPadding: 0.075 }, }, series: [{ name: 'Expected Value', color: '#555555', dataLabels: { enabled: true, fontSize: 8, color: '#fff', align: 'right', format: '{y:.1f}%', style: { //fontWeight: 'bold' }, y: -1 }, data: [ @foreach($outcomes as $index => $outcome) @if( is_array($undergrad_outcomes_attempted) && array_key_exists($outcome->id, $undergrad_outcomes_attempted) && $undergrad_outcomes_attempted[$outcome->id]!=0) {{{ $outcome->expected_outcome }}}, @else null, @endif @endforeach ], pointPadding: 0, }, { name: 'Obtained Value', color: 'rgba(231, 0, 51, 1)', dataLabels: { enabled: true, fontSize: 8, color: '#fff', align: 'right', format: '{y:.1f}%', style: { //fontWeight: 'bold' }, y:-1 }, data:[ @foreach($outcomes as $index => $outcome) @if( is_array($undergrad_outcomes_attempted) && array_key_exists($outcome->id, $undergrad_outcomes_attempted) && $undergrad_outcomes_attempted[$outcome->id]!=0) @if (($undergrad_outcomes_achieved[$outcome->id]/$undergrad_outcomes_attempted[$outcome->id])*100 > $outcome->expected_outcome) {y:{{{ ($undergrad_outcomes_achieved[$outcome->id]/$undergrad_outcomes_attempted[$outcome->id])*100 }}} }, @else {y:{{{ ($undergrad_outcomes_achieved[$outcome->id]/$undergrad_outcomes_attempted[$outcome->id])*100 }}}, color:'#e70033' }, @endif @else null, @endif @endforeach ], pointPadding: 0, }] }); $('#graph_grad').highcharts({ chart: { type: 'bar' }, title: { text: 'Graduate Performance by Learning Outcome Criteria (Campus)' }, legend: { reversed: true, }, xAxis: { categories: [ @foreach($outcomes as $outcome) "{{{ $outcome->name }}}", @endforeach ], labels: { style: { fontSize:'11px' }, step:1, useHTML:true, formatter: function() { return '
'+this.value+'
'; }, } }, yAxis: { min: 0, max: 100, title: { text: 'Percentage' } }, tooltip: { headerFormat: '{point.key}', pointFormat: '' + '', footerFormat: '
{series.name}: {point.y:.2f}
', shared: true, useHTML: true }, plotOptions: { bar: { //grouping: false, shadow: false, borderWidth: 0, }, series: { pointPadding: 0, groupPadding: 0.075 }, }, series: [{ name: 'Expected Value', color: '#555555', dataLabels: { enabled: true, fontSize: 8, color: '#fff', align: 'right', format: '{y:.1f}%', style: { //fontWeight: 'bold' }, y:-1 }, data: [ @foreach($outcomes as $index => $outcome) @if( is_array($grad_outcomes_attempted) && array_key_exists($outcome->id, $grad_outcomes_attempted) && $grad_outcomes_attempted[$outcome->id]!=0) {{{ $outcome->expected_outcome }}}, @else null, @endif @endforeach ], pointPadding: 0, }, { name: 'Obtained Value', color: '#e70033', dataLabels: { enabled: true, fontSize: 8, color: '#fff', align: 'right', format: '{y:.1f}%', style: { //fontWeight: 'bold' }, y:-1 }, data:[ @foreach($outcomes as $index => $outcome) @if( is_array($grad_outcomes_attempted) && array_key_exists($outcome->id, $grad_outcomes_attempted) && $grad_outcomes_attempted[$outcome->id]!=0) {{{ ($grad_outcomes_achieved[$outcome->id]/$grad_outcomes_attempted[$outcome->id])*100 }}}, @else null, @endif @endforeach ], pointPadding: 0, }] }); }) $('#graph_undergrad').highcharts({ chart: { type: 'bar' }, title: { text: 'Undergraduate Performance by Learning Outcome Criteria (Campus)' }, legend: { reversed: true, }, xAxis: { categories: [ @foreach($outcomes as $outcome) "{{{ $outcome->name }}}", @endforeach ], labels: { style: { fontSize:'11px' }, step:1, useHTML:true, formatter: function() { return '
'+this.value+'
'; }, } }, yAxis: { min: 0, max: 100, title: { text: 'Percentage' } }, tooltip: { headerFormat: '{point.key}', pointFormat: '' + '', footerFormat: '
{series.name}: {point.y:.1f}
', shared: true, useHTML: true }, plotOptions: { bar: { //grouping: false, shadow: false, borderWidth: 0, }, series: { pointPadding: 0, groupPadding: 0.075 }, }, series: [{ name: 'Expected Value', color: '#555555', dataLabels: { enabled: true, fontSize: 8, color: '#fff', align: 'right', format: '{y:.1f}%', style: { //fontWeight: 'bold' }, y: -1 }, data: [ @foreach($outcomes as $index => $outcome) @if( is_array($undergrad_outcomes_attempted) && array_key_exists($outcome->id, $undergrad_outcomes_attempted) && $undergrad_outcomes_attempted[$outcome->id]!=0) {{{ $outcome->expected_outcome }}}, @else null, @endif @endforeach ], pointPadding: 0, }, { name: 'Obtained Value', color: 'rgba(231, 0, 51, 1)', dataLabels: { enabled: true, fontSize: 8, color: '#fff', align: 'right', format: '{y:.1f}%', style: { //fontWeight: 'bold' }, y:-1 }, data:[ @foreach($outcomes as $index => $outcome) @if( is_array($undergrad_outcomes_attempted) && array_key_exists($outcome->id, $undergrad_outcomes_attempted) && $undergrad_outcomes_attempted[$outcome->id]!=0) {{{ ($undergrad_outcomes_achieved[$outcome->id]/$undergrad_outcomes_attempted[$outcome->id])*100 }}}, @else null, @endif @endforeach ], pointPadding: 0, }] }); $('#objectives_count').highcharts({ chart: { type: 'bar' }, title: { text: 'Programs Assessing Each Learning Outcome' }, xAxis: { categories: [ @foreach($outcomes as $outcome) "{{{ $outcome->name }}}", @endforeach ], labels: { style: { fontSize:'11px' } } }, yAxis: { min: 0, title: { text: 'Programs' } }, tooltip: { headerFormat: '{point.key}', pointFormat: '' + '', footerFormat: '
{series.name}: {point.y}
', shared: true, useHTML: true }, plotOptions: { column: { pointPadding: 0.2, borderWidth: 0 } }, series: [{ name: 'Undergraduate', color: '#e70033', data:[ @foreach($outcomes as $outcome) {{{ $attemptedUndergradProgramsPerOutcome[$outcome->id] }}}, @endforeach ], pointPadding: 0, }] }); }); // Include dummy graph for outcomes @include('global.dummy-outcomes') @stop