public class dumpStatistics
{
public static void main( String[] args )
{
if ( args.length == 0 ) args = new String[] {"N3"};
Model statistics = new StatisticalAnalyser().getStatistics();
statistics.withDefaultMappings( PrefixMapping.Standard );
statistics.setNsPrefix( "eye", EYE.getURI() );
statistics.setNsPrefix( "eyesvc", EYESVC.getBaseUri() );
statistics.write( System.out, args[0] );
}