Using an array, I am trying to filter and show the unique information in the list. For that I use the angular inbuild filter method.>
unique
angular
filter
The unique filter you are probably attempting to use comes from AngularUI, so you need to include it:
and add it as module dependency:
var app = angular.module('plunker', ['ui.filters']);