This is how I set the test up. I made a site with 5 pages, namely "Home", "Sub page 1"->"Sub page 3" and "About". On all of them I have the exact same code:
<!-- Yahoo! Web Analytics - All rights reserved -->
<script type="text/javascript" src="http://d.yimg.com/mi/eu/ywa.js">
</script>
<script type="text/javascript">
/*globals YWA*/
var YWATracker = YWA.getTracker("*************");
YWATracker.setDocumentName("Home");
YWATracker.setDocumentGroup("Top level pages");
YWATracker.submit();
</script>
<noscript>
<div>
<img src="http://s.analytics.yahoo.com/p.pl?a=*************&js=no" width="1" height="1" alt="" />
</div>
</noscript>
Although of course, all 5 pages have an identical value in setDocumentName(), namely "Home", "Subpage1", "Subpage2", "Subpage3" and "About".
Now how come all the visits to the subpages are logged as "Home" in the "Entries by Title" report? Even though I browsed the site evenly through all the pages, my report says something like:
Home: 67
About: 21
Any ideas?