Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/matomo-org/matomo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--core/DataTable/Renderer.php2
-rw-r--r--plugins/API/DataTable/MergeDataTables.php35
m---------plugins/AnonymousPiwikUsageMeasurement0
m---------plugins/CustomDimensions0
-rw-r--r--plugins/Ecommerce/tests/System/expected/test_ecommerceOrderWithItems_schedrep_html_tables_and_graph__ScheduledReports.generateReport_week.original.html2
m---------plugins/MarketingCampaignsReporting0
-rw-r--r--plugins/VisitFrequency/API.php9
-rw-r--r--tests/PHPUnit/System/expected/test_BackwardsCompatibility1XTest_multipleDates__VisitFrequency.get_day.xml22
-rw-r--r--tests/PHPUnit/System/expected/test_BackwardsCompatibility1XTest_multipleOldNew__VisitFrequency.get_month.xml25
-rw-r--r--tests/PHPUnit/System/expected/test_DataComparisonTest_multipleAgainstLongMultiple__VisitFrequency.get_day.xml447
-rw-r--r--tests/PHPUnit/System/expected/test_DataComparisonTest_multipleMultiPeriods__VisitFrequency.get_day.xml2242
-rw-r--r--tests/PHPUnit/System/expected/test_OneVisitorTwoVisits_csv__API.get_month.csvbin3568 -> 4048 bytes
-rw-r--r--tests/PHPUnit/System/expected/test_TwoVisitors_twoWebsites_differentDays_VisitFrequency.get_firstSite_lastN__API.getProcessedReport_day.xml139
-rw-r--r--tests/PHPUnit/System/expected/test_TwoVisitors_twoWebsites_differentDays__VisitFrequency.get_day.xml117
-rw-r--r--tests/PHPUnit/System/expected/test_TwoVisitors_twoWebsites_differentDays__VisitFrequency.get_month.xml56
-rw-r--r--tests/PHPUnit/System/expected/test_TwoVisitors_twoWebsites_differentDays__VisitFrequency.get_week.xml69
-rw-r--r--tests/PHPUnit/System/expected/test_TwoVisitors_twoWebsites_differentDays__VisitFrequency.get_year.xml50
-rw-r--r--tests/PHPUnit/System/expected/test_TwoVisitors_twoWebsites_differentDays_idSiteOne___VisitFrequency.get_day.xml94
-rw-r--r--tests/PHPUnit/System/expected/test_TwoVisitors_twoWebsites_differentDays_idSiteOne___VisitFrequency.get_month.xml33
-rw-r--r--tests/PHPUnit/System/expected/test_TwoVisitors_twoWebsites_differentDays_idSiteOne___VisitFrequency.get_week.xml46
-rw-r--r--tests/PHPUnit/System/expected/test_TwoVisitors_twoWebsites_differentDays_idSiteOne___VisitFrequency.get_year.xml29
-rw-r--r--tests/PHPUnit/System/expected/test_TwoVisitors_twoWebsites_differentDays_schedrep_html_tables_and_graph__ScheduledReports.generateReport_month.original.html2
-rw-r--r--tests/PHPUnit/System/expected/test_noVisit_PeriodIsLast__VisitFrequency.get_day.xml10
-rw-r--r--tests/PHPUnit/System/expected/test_noVisit_PeriodIsLast__VisitFrequency.get_week.xml10
24 files changed, 3410 insertions, 29 deletions
diff --git a/core/DataTable/Renderer.php b/core/DataTable/Renderer.php
index 8b69608edf..d1940d041d 100644
--- a/core/DataTable/Renderer.php
+++ b/core/DataTable/Renderer.php
@@ -124,7 +124,7 @@ abstract class Renderer extends BaseFactory
/**
* Set the DataTable to be rendered
*
- * @param DataTable|Simple|DataTable\Map $table table to be rendered
+ * @param DataTableInterface $table table to be rendered
* @throws Exception
*/
public function setTable($table)
diff --git a/plugins/API/DataTable/MergeDataTables.php b/plugins/API/DataTable/MergeDataTables.php
index b26f153c53..fba6e58ba9 100644
--- a/plugins/API/DataTable/MergeDataTables.php
+++ b/plugins/API/DataTable/MergeDataTables.php
@@ -13,9 +13,8 @@ use Piwik\DataTable;
class MergeDataTables
{
-
/**
- * Merge the columns of two data tables.
+ * Merge the columns of two data tables. Only takes into consideration the first row of each table.
* Manipulates the first table.
*
* @param DataTable|DataTable\Map $table1 The table to eventually filter.
@@ -25,13 +24,14 @@ class MergeDataTables
{
// handle table arrays
if ($table1 instanceof DataTable\Map && $table2 instanceof DataTable\Map) {
- $subTables2 = $table2->getDataTables();
- foreach ($table1->getDataTables() as $index => $subTable1) {
- if (!array_key_exists($index, $subTables2)) {
- // occurs when archiving starts on dayN and continues into dayN+1, see https://github.com/piwik/piwik/issues/5168#issuecomment-50959925
- continue;
+ $subTables1 = $table1->getDataTables();
+ foreach ($table2->getDataTables() as $index => $subTable2) {
+ if (!array_key_exists($index, $subTables1)) {
+ $subTable1 = $this->makeNewDataTable($subTable2);
+ $table1->addTable($subTable1, $index);
+ } else {
+ $subTable1 = $subTables1[$index];
}
- $subTable2 = $subTables2[$index];
$this->mergeDataTables($subTable1, $subTable2);
}
return;
@@ -52,4 +52,23 @@ class MergeDataTables
}
}
+ private function makeNewDataTable(DataTable\DataTableInterface $subTable2)
+ {
+ if ($subTable2 instanceof DataTable\Map) {
+ $result = new DataTable\Map();
+ $result->setKeyName($subTable2->getKeyName());
+ return $result;
+ } else if ($subTable2 instanceof DataTable\Simple) {
+ $result = new DataTable\Simple();
+ $result->setAllTableMetadata($subTable2->getAllTableMetadata());
+ return $result;
+ } else if ($subTable2 instanceof DataTable) {
+ $result = new DataTable();
+ $result->setAllTableMetadata($subTable2->getAllTableMetadata());
+ return $result;
+ } else {
+ throw new \Exception("Unknown datatable type: " . get_class($subTable2));
+ }
+ }
+
} \ No newline at end of file
diff --git a/plugins/AnonymousPiwikUsageMeasurement b/plugins/AnonymousPiwikUsageMeasurement
-Subproject 51ee90dde9831449a1d632a5d8532d79858e555
+Subproject 49427328cc2d6e0987cedda0b122c5fad2a7bf5
diff --git a/plugins/CustomDimensions b/plugins/CustomDimensions
-Subproject 70d45d15d4a9b208b8723ee4dc7eca7b8581282
+Subproject 90717603607edfc0df076dea2878f66efdaf92c
diff --git a/plugins/Ecommerce/tests/System/expected/test_ecommerceOrderWithItems_schedrep_html_tables_and_graph__ScheduledReports.generateReport_week.original.html b/plugins/Ecommerce/tests/System/expected/test_ecommerceOrderWithItems_schedrep_html_tables_and_graph__ScheduledReports.generateReport_week.original.html
index 598d6dd399..c7af4c27f7 100644
--- a/plugins/Ecommerce/tests/System/expected/test_ecommerceOrderWithItems_schedrep_html_tables_and_graph__ScheduledReports.generateReport_week.original.html
+++ b/plugins/Ecommerce/tests/System/expected/test_ecommerceOrderWithItems_schedrep_html_tables_and_graph__ScheduledReports.generateReport_week.original.html
@@ -4780,7 +4780,7 @@
</h2>
<img alt=""
- src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAArwAAADICAIAAACF9KXqAAAEfklEQVR4nO3cS1biQABA0ehxJ+x/SayFHtCHTufHE+IHuHckEqoqTuqRCG+n02nYw+FwOB6Pew01DMM9o+24mIebHQC+yPvhcDhv0heTh/f71IDnHfeGTffqLLufFwC8lPefXsD38e4fAO7xMQzD8XhcvKI+fmu+uOMuvne//PL8kvPD8R2HyQHz114Oni/gvM75auezLK4kLmA86WTGxTEXB9yYBQAe0cfaE5ONeXGf3t4jLzcaJkdODhiPOdmeFxew2DfzWcYP136+esrz38/HWRw8zggAD+Tv7YnJ2/rfLG7AO+7T20MtPqsSAHg+/640rN2k+Kxf/g+Jlzy67UwfJa0AYHertyduM7ksf8MB32DjNse237B4APgp/3164uabFM+3g37FGT3fXwmAl7J6pWHxwwtrB4yv+c+3xvGzvUuuLmBjlo3DNj7UsHhGG0uaDFgWCQCP622vb4R8PuX+hU9GAPA6dv6fhkfnsgEArHGlAQBIXuhrpAGAe4gGACARDQBAIhoAgEQ0AACJaAAAEtEAACSiAQBIRAMAkIgGACARDQBAIhoAgEQ0AACJaAAAEtEAACSiAQBIRAMAkIgGACARDQBAIhoAgEQ0AACJaAAAEtEAACSiAQBIRAMAkIgGACARDQBAIhoAgEQ0AACJaAAAEtEAACSiAQBIRAMAkIgGACARDQBAIhoAgEQ0AACJaAAAEtEAACSiAQBIRAMAkIgGACARDQBAIhoAgEQ0AACJaAAAEtEAACSiAQBIRAMAkIgGACARDQBAIhoAgEQ0AACJaAAAEtEAACSiAQBIRAMAkIgGACARDQBAIhoAgEQ0AACJaAAAEtEAACSiAQBIRAMAkIgGACARDQBAIhoAgEQ0AACJaAAAEtEAACSiAQBIRAMAkIgGACARDQBAIhoAgEQ0AACJaAAAEtEAACSiAQBIRAMAkIgGACARDQBAIhoAgEQ0AACJaAAAEtEAACSiAQBIRAMAkIgGACARDQBAIhoAgEQ0AACJaAAAEtEAACSiAQBIRAMAkIgGACARDQBAIhoAgEQ0AACJaAAAEtEAACSiAQBIRAMAkIgGACARDQBAIhoAgEQ0AACJaAAAEtEAACSiAQBIRAMAkIgGACARDQBAIhoAgEQ0AACJaAAAEtEAACSiAQBIRAMAkIgGACARDQBAIhoAgEQ0AACJaAAAEtEAACSiAQBIRAMAkIgGACARDQBAIhoAgEQ0AACJaAAAEtEAACSiAQBIRAMAkIgGACARDQBAIhoAgEQ0AACJaAAAEtEAACSiAQBIRAMAkIgGACARDQBAIhoAgEQ0AACJaAAAEtEAACSiAQBIRAMAkIgGACARDQBAIhoAgEQ0AACJaAAAEtEAACSiAQBIRAMAkIgGACARDQBAIhoAgEQ0AACJaAAAEtEAACSiAQBIRAMAkIgGACARDQBAIhoAgEQ0AACJaAAAEtEAACSiAQBIRAMAkIgGACARDQBAIhoAgEQ0AACJaAAAEtEAACSiAQBIRAMAkIgGACARDQBA8gczQRugNvGghAAAAABJRU5ErkJggg=="
+ src="data:image/png;base64,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"
height="200"
width="700"
margin="0 auto"/>
diff --git a/plugins/MarketingCampaignsReporting b/plugins/MarketingCampaignsReporting
-Subproject ea5fdafe4bf0b2a641348aff5825cd7387372af
+Subproject a51d2262899c5adde96217d5b37e38d23335234
diff --git a/plugins/VisitFrequency/API.php b/plugins/VisitFrequency/API.php
index f44d624402..854b0de5f5 100644
--- a/plugins/VisitFrequency/API.php
+++ b/plugins/VisitFrequency/API.php
@@ -9,8 +9,8 @@
namespace Piwik\Plugins\VisitFrequency;
use Piwik\API\Request;
-use Piwik\Archive;
use Piwik\DataTable;
+use Piwik\Period;
use Piwik\Piwik;
use Piwik\Plugins\API\DataTable\MergeDataTables;
use Piwik\Plugins\VisitsSummary\API as APIVisitsSummary;
@@ -49,7 +49,12 @@ class API extends \Piwik\Plugin\API
$columns = Piwik::getArrayFromApiParameter($columns);
/** @var \Piwik\DataTable\DataTableInterface $resultSet */
- $resultSet = new DataTable\Simple();
+ if (Period::isMultiplePeriod($date, $period)) {
+ $resultSet = new DataTable\Map();
+ $resultSet->setKeyName('period');
+ } else {
+ $resultSet = new DataTable\Simple();
+ }
foreach ($visitTypes as $columnSuffix => $visitorTypeSegment) {
$modifiedSegment = $this->appendVisitorTypeSegment($segment, $visitorTypeSegment);
diff --git a/tests/PHPUnit/System/expected/test_BackwardsCompatibility1XTest_multipleDates__VisitFrequency.get_day.xml b/tests/PHPUnit/System/expected/test_BackwardsCompatibility1XTest_multipleDates__VisitFrequency.get_day.xml
index c234bed59e..866fe9a5b5 100644
--- a/tests/PHPUnit/System/expected/test_BackwardsCompatibility1XTest_multipleDates__VisitFrequency.get_day.xml
+++ b/tests/PHPUnit/System/expected/test_BackwardsCompatibility1XTest_multipleDates__VisitFrequency.get_day.xml
@@ -1,2 +1,22 @@
<?xml version="1.0" encoding="utf-8" ?>
-<result /> \ No newline at end of file
+<results>
+ <result period="2012-03-03" />
+ <result period="2012-03-04" />
+ <result period="2012-03-05" />
+ <result period="2012-03-06">
+ <nb_uniq_visitors_returning>1</nb_uniq_visitors_returning>
+ <nb_users_returning>0</nb_users_returning>
+ <nb_visits_returning>1</nb_visits_returning>
+ <nb_actions_returning>1</nb_actions_returning>
+ <nb_visits_converted_returning>1</nb_visits_converted_returning>
+ <bounce_count_returning>1</bounce_count_returning>
+ <sum_visit_length_returning>0</sum_visit_length_returning>
+ <max_actions_returning>1</max_actions_returning>
+ <bounce_rate_returning>100%</bounce_rate_returning>
+ <nb_actions_per_visit_returning>1</nb_actions_per_visit_returning>
+ <avg_time_on_site_returning>0</avg_time_on_site_returning>
+ </result>
+ <result period="2012-03-07" />
+ <result period="2012-03-08" />
+ <result period="2012-03-09" />
+</results> \ No newline at end of file
diff --git a/tests/PHPUnit/System/expected/test_BackwardsCompatibility1XTest_multipleOldNew__VisitFrequency.get_month.xml b/tests/PHPUnit/System/expected/test_BackwardsCompatibility1XTest_multipleOldNew__VisitFrequency.get_month.xml
index c234bed59e..0868a583a2 100644
--- a/tests/PHPUnit/System/expected/test_BackwardsCompatibility1XTest_multipleOldNew__VisitFrequency.get_month.xml
+++ b/tests/PHPUnit/System/expected/test_BackwardsCompatibility1XTest_multipleOldNew__VisitFrequency.get_month.xml
@@ -1,2 +1,25 @@
<?xml version="1.0" encoding="utf-8" ?>
-<result /> \ No newline at end of file
+<results>
+ <result period="2012-03">
+ <nb_uniq_visitors_returning>0</nb_uniq_visitors_returning>
+ <nb_users_returning>0</nb_users_returning>
+ <nb_visits_returning>1</nb_visits_returning>
+ <nb_actions_returning>1</nb_actions_returning>
+ <nb_visits_converted_returning>1</nb_visits_converted_returning>
+ <bounce_count_returning>1</bounce_count_returning>
+ <sum_visit_length_returning>0</sum_visit_length_returning>
+ <max_actions_returning>1</max_actions_returning>
+ <bounce_rate_returning>100%</bounce_rate_returning>
+ <nb_actions_per_visit_returning>1</nb_actions_per_visit_returning>
+ <avg_time_on_site_returning>0</avg_time_on_site_returning>
+ </result>
+ <result period="2012-04" />
+ <result period="2012-05" />
+ <result period="2012-06" />
+ <result period="2012-07" />
+ <result period="2012-08" />
+ <result period="2012-09" />
+ <result period="2012-10" />
+ <result period="2012-11" />
+ <result period="2012-12" />
+</results> \ No newline at end of file
diff --git a/tests/PHPUnit/System/expected/test_DataComparisonTest_multipleAgainstLongMultiple__VisitFrequency.get_day.xml b/tests/PHPUnit/System/expected/test_DataComparisonTest_multipleAgainstLongMultiple__VisitFrequency.get_day.xml
index c234bed59e..7103db936d 100644
--- a/tests/PHPUnit/System/expected/test_DataComparisonTest_multipleAgainstLongMultiple__VisitFrequency.get_day.xml
+++ b/tests/PHPUnit/System/expected/test_DataComparisonTest_multipleAgainstLongMultiple__VisitFrequency.get_day.xml
@@ -1,2 +1,447 @@
<?xml version="1.0" encoding="utf-8" ?>
-<result /> \ No newline at end of file
+<results>
+ <result period="2012-08-12">
+ <comparisons>
+ <row>
+ <avg_time_on_site_returning>0</avg_time_on_site_returning>
+ <nb_actions_per_visit_returning>0</nb_actions_per_visit_returning>
+ <bounce_rate_returning>0%</bounce_rate_returning>
+ <avg_time_on_site_new>0</avg_time_on_site_new>
+ <nb_actions_per_visit_new>0</nb_actions_per_visit_new>
+ <bounce_rate_new>0%</bounce_rate_new>
+ <compareSegment />
+ <compareSegmentPretty>All visits</compareSegmentPretty>
+ <comparePeriod>day</comparePeriod>
+ <compareDate>2012-08-12</compareDate>
+ <comparePeriodPretty>Sunday, August 12, 2012</comparePeriodPretty>
+ <compareSeriesPretty>(August 12 – 15, 2012) (All visits)</compareSeriesPretty>
+ <idsubdatatable>-1</idsubdatatable>
+ </row>
+ <row>
+ <nb_uniq_visitors_new>11</nb_uniq_visitors_new>
+ <nb_users_new>0</nb_users_new>
+ <nb_visits_new>11</nb_visits_new>
+ <nb_actions_new>11</nb_actions_new>
+ <nb_visits_converted_new>11</nb_visits_converted_new>
+ <bounce_count_new>11</bounce_count_new>
+ <sum_visit_length_new>0</sum_visit_length_new>
+ <max_actions_new>1</max_actions_new>
+ <bounce_rate_new>100%</bounce_rate_new>
+ <nb_actions_per_visit_new>1</nb_actions_per_visit_new>
+ <avg_time_on_site_new>0</avg_time_on_site_new>
+ <nb_uniq_visitors_new_change>+100%</nb_uniq_visitors_new_change>
+ <nb_uniq_visitors_new_change_from>-100%</nb_uniq_visitors_new_change_from>
+ <nb_users_new_change>+0%</nb_users_new_change>
+ <nb_users_new_change_from>+0%</nb_users_new_change_from>
+ <nb_visits_new_change>+100%</nb_visits_new_change>
+ <nb_visits_new_change_from>-100%</nb_visits_new_change_from>
+ <nb_actions_new_change>+100%</nb_actions_new_change>
+ <nb_actions_new_change_from>-100%</nb_actions_new_change_from>
+ <nb_visits_converted_new_change>+100%</nb_visits_converted_new_change>
+ <nb_visits_converted_new_change_from>-100%</nb_visits_converted_new_change_from>
+ <bounce_count_new_change>+100%</bounce_count_new_change>
+ <bounce_count_new_change_from>-100%</bounce_count_new_change_from>
+ <sum_visit_length_new_change>+0%</sum_visit_length_new_change>
+ <sum_visit_length_new_change_from>+0%</sum_visit_length_new_change_from>
+ <max_actions_new_change>+100%</max_actions_new_change>
+ <max_actions_new_change_from>-100%</max_actions_new_change_from>
+ <bounce_rate_new_change>+100%</bounce_rate_new_change>
+ <bounce_rate_new_change_from>-100%</bounce_rate_new_change_from>
+ <nb_actions_per_visit_new_change>+100%</nb_actions_per_visit_new_change>
+ <nb_actions_per_visit_new_change_from>-100%</nb_actions_per_visit_new_change_from>
+ <avg_time_on_site_new_change>+0%</avg_time_on_site_new_change>
+ <avg_time_on_site_new_change_from>+0%</avg_time_on_site_new_change_from>
+ <avg_time_on_site_returning>0</avg_time_on_site_returning>
+ <nb_actions_per_visit_returning>0</nb_actions_per_visit_returning>
+ <bounce_rate_returning>0%</bounce_rate_returning>
+ <compareSegment />
+ <compareSegmentPretty>All visits</compareSegmentPretty>
+ <comparePeriod>day</comparePeriod>
+ <compareDate>2012-08-09</compareDate>
+ <comparePeriodPretty>Thursday, August 9, 2012</comparePeriodPretty>
+ <compareSeriesPretty>(August 9 – 16, 2012) (All visits)</compareSeriesPretty>
+ <idsubdatatable>-1</idsubdatatable>
+ </row>
+ <row>
+ <avg_time_on_site_returning>0</avg_time_on_site_returning>
+ <nb_actions_per_visit_returning>0</nb_actions_per_visit_returning>
+ <bounce_rate_returning>0%</bounce_rate_returning>
+ <avg_time_on_site_new>0</avg_time_on_site_new>
+ <nb_actions_per_visit_new>0</nb_actions_per_visit_new>
+ <bounce_rate_new>0%</bounce_rate_new>
+ <compareSegment />
+ <compareSegmentPretty>All visits</compareSegmentPretty>
+ <comparePeriod>day</comparePeriod>
+ <compareDate>2012-08-13</compareDate>
+ <comparePeriodPretty>Monday, August 13, 2012</comparePeriodPretty>
+ <compareSeriesPretty>(August 13 – 14, 2012) (All visits)</compareSeriesPretty>
+ <idsubdatatable>-1</idsubdatatable>
+ </row>
+ </comparisons>
+ </result>
+ <result period="2012-08-13">
+ <comparisons>
+ <row>
+ <avg_time_on_site_returning>0</avg_time_on_site_returning>
+ <nb_actions_per_visit_returning>0</nb_actions_per_visit_returning>
+ <bounce_rate_returning>0%</bounce_rate_returning>
+ <avg_time_on_site_new>0</avg_time_on_site_new>
+ <nb_actions_per_visit_new>0</nb_actions_per_visit_new>
+ <bounce_rate_new>0%</bounce_rate_new>
+ <compareSegment />
+ <compareSegmentPretty>All visits</compareSegmentPretty>
+ <comparePeriod>day</comparePeriod>
+ <compareDate>2012-08-13</compareDate>
+ <comparePeriodPretty>Monday, August 13, 2012</comparePeriodPretty>
+ <compareSeriesPretty>(August 12 – 15, 2012) (All visits)</compareSeriesPretty>
+ <idsubdatatable>-1</idsubdatatable>
+ </row>
+ <row>
+ <nb_uniq_visitors_new>8</nb_uniq_visitors_new>
+ <nb_users_new>0</nb_users_new>
+ <nb_visits_new>8</nb_visits_new>
+ <nb_actions_new>8</nb_actions_new>
+ <nb_visits_converted_new>8</nb_visits_converted_new>
+ <bounce_count_new>8</bounce_count_new>
+ <sum_visit_length_new>0</sum_visit_length_new>
+ <max_actions_new>1</max_actions_new>
+ <bounce_rate_new>100%</bounce_rate_new>
+ <nb_actions_per_visit_new>1</nb_actions_per_visit_new>
+ <avg_time_on_site_new>0</avg_time_on_site_new>
+ <nb_uniq_visitors_new_change>+100%</nb_uniq_visitors_new_change>
+ <nb_uniq_visitors_new_change_from>-100%</nb_uniq_visitors_new_change_from>
+ <nb_users_new_change>+0%</nb_users_new_change>
+ <nb_users_new_change_from>+0%</nb_users_new_change_from>
+ <nb_visits_new_change>+100%</nb_visits_new_change>
+ <nb_visits_new_change_from>-100%</nb_visits_new_change_from>
+ <nb_actions_new_change>+100%</nb_actions_new_change>
+ <nb_actions_new_change_from>-100%</nb_actions_new_change_from>
+ <nb_visits_converted_new_change>+100%</nb_visits_converted_new_change>
+ <nb_visits_converted_new_change_from>-100%</nb_visits_converted_new_change_from>
+ <bounce_count_new_change>+100%</bounce_count_new_change>
+ <bounce_count_new_change_from>-100%</bounce_count_new_change_from>
+ <sum_visit_length_new_change>+0%</sum_visit_length_new_change>
+ <sum_visit_length_new_change_from>+0%</sum_visit_length_new_change_from>
+ <max_actions_new_change>+100%</max_actions_new_change>
+ <max_actions_new_change_from>-100%</max_actions_new_change_from>
+ <bounce_rate_new_change>+100%</bounce_rate_new_change>
+ <bounce_rate_new_change_from>-100%</bounce_rate_new_change_from>
+ <nb_actions_per_visit_new_change>+100%</nb_actions_per_visit_new_change>
+ <nb_actions_per_visit_new_change_from>-100%</nb_actions_per_visit_new_change_from>
+ <avg_time_on_site_new_change>+0%</avg_time_on_site_new_change>
+ <avg_time_on_site_new_change_from>+0%</avg_time_on_site_new_change_from>
+ <avg_time_on_site_returning>0</avg_time_on_site_returning>
+ <nb_actions_per_visit_returning>0</nb_actions_per_visit_returning>
+ <bounce_rate_returning>0%</bounce_rate_returning>
+ <compareSegment />
+ <compareSegmentPretty>All visits</compareSegmentPretty>
+ <comparePeriod>day</comparePeriod>
+ <compareDate>2012-08-10</compareDate>
+ <comparePeriodPretty>Friday, August 10, 2012</comparePeriodPretty>
+ <compareSeriesPretty>(August 9 – 16, 2012) (All visits)</compareSeriesPretty>
+ <idsubdatatable>-1</idsubdatatable>
+ </row>
+ <row>
+ <avg_time_on_site_returning>0</avg_time_on_site_returning>
+ <nb_actions_per_visit_returning>0</nb_actions_per_visit_returning>
+ <bounce_rate_returning>0%</bounce_rate_returning>
+ <avg_time_on_site_new>0</avg_time_on_site_new>
+ <nb_actions_per_visit_new>0</nb_actions_per_visit_new>
+ <bounce_rate_new>0%</bounce_rate_new>
+ <compareSegment />
+ <compareSegmentPretty>All visits</compareSegmentPretty>
+ <comparePeriod>day</comparePeriod>
+ <compareDate>2012-08-14</compareDate>
+ <comparePeriodPretty>Tuesday, August 14, 2012</comparePeriodPretty>
+ <compareSeriesPretty>(August 13 – 14, 2012) (All visits)</compareSeriesPretty>
+ <idsubdatatable>-1</idsubdatatable>
+ </row>
+ </comparisons>
+ </result>
+ <result period="2012-08-14">
+ <comparisons>
+ <row>
+ <avg_time_on_site_returning>0</avg_time_on_site_returning>
+ <nb_actions_per_visit_returning>0</nb_actions_per_visit_returning>
+ <bounce_rate_returning>0%</bounce_rate_returning>
+ <avg_time_on_site_new>0</avg_time_on_site_new>
+ <nb_actions_per_visit_new>0</nb_actions_per_visit_new>
+ <bounce_rate_new>0%</bounce_rate_new>
+ <compareSegment />
+ <compareSegmentPretty>All visits</compareSegmentPretty>
+ <comparePeriod>day</comparePeriod>
+ <compareDate>2012-08-14</compareDate>
+ <comparePeriodPretty>Tuesday, August 14, 2012</comparePeriodPretty>
+ <compareSeriesPretty>(August 12 – 15, 2012) (All visits)</compareSeriesPretty>
+ <idsubdatatable>-1</idsubdatatable>
+ </row>
+ <row>
+ <nb_uniq_visitors_new>11</nb_uniq_visitors_new>
+ <nb_users_new>1</nb_users_new>
+ <nb_visits_new>11</nb_visits_new>
+ <nb_actions_new>14</nb_actions_new>
+ <nb_visits_converted_new>9</nb_visits_converted_new>
+ <bounce_count_new>9</bounce_count_new>
+ <sum_visit_length_new>305</sum_visit_length_new>
+ <max_actions_new>3</max_actions_new>
+ <bounce_rate_new>82%</bounce_rate_new>
+ <nb_actions_per_visit_new>1.3</nb_actions_per_visit_new>
+ <avg_time_on_site_new>28</avg_time_on_site_new>
+ <nb_uniq_visitors_new_change>+100%</nb_uniq_visitors_new_change>
+ <nb_uniq_visitors_new_change_from>-100%</nb_uniq_visitors_new_change_from>
+ <nb_users_new_change>+100%</nb_users_new_change>
+ <nb_users_new_change_from>-100%</nb_users_new_change_from>
+ <nb_visits_new_change>+100%</nb_visits_new_change>
+ <nb_visits_new_change_from>-100%</nb_visits_new_change_from>
+ <nb_actions_new_change>+100%</nb_actions_new_change>
+ <nb_actions_new_change_from>-100%</nb_actions_new_change_from>
+ <nb_visits_converted_new_change>+100%</nb_visits_converted_new_change>
+ <nb_visits_converted_new_change_from>-100%</nb_visits_converted_new_change_from>
+ <bounce_count_new_change>+100%</bounce_count_new_change>
+ <bounce_count_new_change_from>-100%</bounce_count_new_change_from>
+ <sum_visit_length_new_change>+100%</sum_visit_length_new_change>
+ <sum_visit_length_new_change_from>-100%</sum_visit_length_new_change_from>
+ <max_actions_new_change>+100%</max_actions_new_change>
+ <max_actions_new_change_from>-100%</max_actions_new_change_from>
+ <bounce_rate_new_change>+100%</bounce_rate_new_change>
+ <bounce_rate_new_change_from>-100%</bounce_rate_new_change_from>
+ <nb_actions_per_visit_new_change>+100%</nb_actions_per_visit_new_change>
+ <nb_actions_per_visit_new_change_from>-100%</nb_actions_per_visit_new_change_from>
+ <avg_time_on_site_new_change>+100%</avg_time_on_site_new_change>
+ <avg_time_on_site_new_change_from>-100%</avg_time_on_site_new_change_from>
+ <avg_time_on_site_returning>0</avg_time_on_site_returning>
+ <nb_actions_per_visit_returning>0</nb_actions_per_visit_returning>
+ <bounce_rate_returning>0%</bounce_rate_returning>
+ <compareSegment />
+ <compareSegmentPretty>All visits</compareSegmentPretty>
+ <comparePeriod>day</comparePeriod>
+ <compareDate>2012-08-11</compareDate>
+ <comparePeriodPretty>Saturday, August 11, 2012</comparePeriodPretty>
+ <compareSeriesPretty>(August 9 – 16, 2012) (All visits)</compareSeriesPretty>
+ <idsubdatatable>-1</idsubdatatable>
+ </row>
+ <row>
+ <avg_time_on_site_returning>0</avg_time_on_site_returning>
+ <nb_actions_per_visit_returning>0</nb_actions_per_visit_returning>
+ <bounce_rate_returning>0%</bounce_rate_returning>
+ <avg_time_on_site_new>0</avg_time_on_site_new>
+ <nb_actions_per_visit_new>0</nb_actions_per_visit_new>
+ <bounce_rate_new>0%</bounce_rate_new>
+ <compareSegment />
+ <compareSegmentPretty>All visits</compareSegmentPretty>
+ <comparePeriod>day</comparePeriod>
+ <compareDate>2012-08-13,2012-08-14</compareDate>
+ <comparePeriodPretty>August 13 – 14, 2012</comparePeriodPretty>
+ <compareSeriesPretty>(August 13 – 14, 2012) (All visits)</compareSeriesPretty>
+ <idsubdatatable>-1</idsubdatatable>
+ </row>
+ </comparisons>
+ </result>
+ <result period="2012-08-15">
+ <nb_uniq_visitors_new>1</nb_uniq_visitors_new>
+ <nb_users_new>0</nb_users_new>
+ <nb_visits_new>1</nb_visits_new>
+ <nb_actions_new>1</nb_actions_new>
+ <nb_visits_converted_new>1</nb_visits_converted_new>
+ <bounce_count_new>1</bounce_count_new>
+ <sum_visit_length_new>0</sum_visit_length_new>
+ <max_actions_new>1</max_actions_new>
+ <bounce_rate_new>100%</bounce_rate_new>
+ <nb_actions_per_visit_new>1</nb_actions_per_visit_new>
+ <avg_time_on_site_new>0</avg_time_on_site_new>
+ <nb_uniq_visitors_returning>1</nb_uniq_visitors_returning>
+ <nb_users_returning>0</nb_users_returning>
+ <nb_visits_returning>1</nb_visits_returning>
+ <nb_actions_returning>1</nb_actions_returning>
+ <nb_visits_converted_returning>1</nb_visits_converted_returning>
+ <bounce_count_returning>1</bounce_count_returning>
+ <sum_visit_length_returning>0</sum_visit_length_returning>
+ <max_actions_returning>1</max_actions_returning>
+ <bounce_rate_returning>100%</bounce_rate_returning>
+ <nb_actions_per_visit_returning>1</nb_actions_per_visit_returning>
+ <avg_time_on_site_returning>0</avg_time_on_site_returning>
+ <comparisons>
+ <row>
+ <nb_uniq_visitors_new>1</nb_uniq_visitors_new>
+ <nb_users_new>0</nb_users_new>
+ <nb_visits_new>1</nb_visits_new>
+ <nb_actions_new>1</nb_actions_new>
+ <nb_visits_converted_new>1</nb_visits_converted_new>
+ <bounce_count_new>1</bounce_count_new>
+ <sum_visit_length_new>0</sum_visit_length_new>
+ <max_actions_new>1</max_actions_new>
+ <bounce_rate_new>100%</bounce_rate_new>
+ <nb_actions_per_visit_new>1</nb_actions_per_visit_new>
+ <avg_time_on_site_new>0</avg_time_on_site_new>
+ <nb_uniq_visitors_returning>1</nb_uniq_visitors_returning>
+ <nb_users_returning>0</nb_users_returning>
+ <nb_visits_returning>1</nb_visits_returning>
+ <nb_actions_returning>1</nb_actions_returning>
+ <nb_visits_converted_returning>1</nb_visits_converted_returning>
+ <bounce_count_returning>1</bounce_count_returning>
+ <sum_visit_length_returning>0</sum_visit_length_returning>
+ <max_actions_returning>1</max_actions_returning>
+ <bounce_rate_returning>100%</bounce_rate_returning>
+ <nb_actions_per_visit_returning>1</nb_actions_per_visit_returning>
+ <avg_time_on_site_returning>0</avg_time_on_site_returning>
+ <compareSegment />
+ <compareSegmentPretty>All visits</compareSegmentPretty>
+ <comparePeriod>day</comparePeriod>
+ <compareDate>2012-08-15</compareDate>
+ <comparePeriodPretty>Wednesday, August 15, 2012</comparePeriodPretty>
+ <compareSeriesPretty>(August 12 – 15, 2012) (All visits)</compareSeriesPretty>
+ <idsubdatatable>-1</idsubdatatable>
+ </row>
+ <row>
+ <nb_uniq_visitors_new>0</nb_uniq_visitors_new>
+ <nb_users_new>0</nb_users_new>
+ <nb_visits_new>0</nb_visits_new>
+ <nb_actions_new>0</nb_actions_new>
+ <nb_visits_converted_new>0</nb_visits_converted_new>
+ <bounce_count_new>0</bounce_count_new>
+ <sum_visit_length_new>0</sum_visit_length_new>
+ <max_actions_new>0</max_actions_new>
+ <bounce_rate_new>0%</bounce_rate_new>
+ <nb_actions_per_visit_new>0</nb_actions_per_visit_new>
+ <avg_time_on_site_new>0</avg_time_on_site_new>
+ <nb_uniq_visitors_returning>0</nb_uniq_visitors_returning>
+ <nb_users_returning>0</nb_users_returning>
+ <nb_visits_returning>0</nb_visits_returning>
+ <nb_actions_returning>0</nb_actions_returning>
+ <nb_visits_converted_returning>0</nb_visits_converted_returning>
+ <bounce_count_returning>0</bounce_count_returning>
+ <sum_visit_length_returning>0</sum_visit_length_returning>
+ <max_actions_returning>0</max_actions_returning>
+ <bounce_rate_returning>0%</bounce_rate_returning>
+ <nb_actions_per_visit_returning>0</nb_actions_per_visit_returning>
+ <avg_time_on_site_returning>0</avg_time_on_site_returning>
+ <nb_uniq_visitors_new_change>-100%</nb_uniq_visitors_new_change>
+ <nb_uniq_visitors_new_change_from>+100%</nb_uniq_visitors_new_change_from>
+ <nb_users_new_change>+0%</nb_users_new_change>
+ <nb_users_new_change_from>+0%</nb_users_new_change_from>
+ <nb_visits_new_change>-100%</nb_visits_new_change>
+ <nb_visits_new_change_from>+100%</nb_visits_new_change_from>
+ <nb_actions_new_change>-100%</nb_actions_new_change>
+ <nb_actions_new_change_from>+100%</nb_actions_new_change_from>
+ <nb_visits_converted_new_change>-100%</nb_visits_converted_new_change>
+ <nb_visits_converted_new_change_from>+100%</nb_visits_converted_new_change_from>
+ <bounce_count_new_change>-100%</bounce_count_new_change>
+ <bounce_count_new_change_from>+100%</bounce_count_new_change_from>
+ <sum_visit_length_new_change>+0%</sum_visit_length_new_change>
+ <sum_visit_length_new_change_from>+0%</sum_visit_length_new_change_from>
+ <max_actions_new_change>-100%</max_actions_new_change>
+ <max_actions_new_change_from>+100%</max_actions_new_change_from>
+ <bounce_rate_new_change>-100%</bounce_rate_new_change>
+ <bounce_rate_new_change_from>+100%</bounce_rate_new_change_from>
+ <nb_actions_per_visit_new_change>-100%</nb_actions_per_visit_new_change>
+ <nb_actions_per_visit_new_change_from>+100%</nb_actions_per_visit_new_change_from>
+ <avg_time_on_site_new_change>+0%</avg_time_on_site_new_change>
+ <avg_time_on_site_new_change_from>+0%</avg_time_on_site_new_change_from>
+ <nb_uniq_visitors_returning_change>-100%</nb_uniq_visitors_returning_change>
+ <nb_uniq_visitors_returning_change_from>+100%</nb_uniq_visitors_returning_change_from>
+ <nb_users_returning_change>+0%</nb_users_returning_change>
+ <nb_users_returning_change_from>+0%</nb_users_returning_change_from>
+ <nb_visits_returning_change>-100%</nb_visits_returning_change>
+ <nb_visits_returning_change_from>+100%</nb_visits_returning_change_from>
+ <nb_actions_returning_change>-100%</nb_actions_returning_change>
+ <nb_actions_returning_change_from>+100%</nb_actions_returning_change_from>
+ <nb_visits_converted_returning_change>-100%</nb_visits_converted_returning_change>
+ <nb_visits_converted_returning_change_from>+100%</nb_visits_converted_returning_change_from>
+ <bounce_count_returning_change>-100%</bounce_count_returning_change>
+ <bounce_count_returning_change_from>+100%</bounce_count_returning_change_from>
+ <sum_visit_length_returning_change>+0%</sum_visit_length_returning_change>
+ <sum_visit_length_returning_change_from>+0%</sum_visit_length_returning_change_from>
+ <max_actions_returning_change>-100%</max_actions_returning_change>
+ <max_actions_returning_change_from>+100%</max_actions_returning_change_from>
+ <bounce_rate_returning_change>-100%</bounce_rate_returning_change>
+ <bounce_rate_returning_change_from>+100%</bounce_rate_returning_change_from>
+ <nb_actions_per_visit_returning_change>-100%</nb_actions_per_visit_returning_change>
+ <nb_actions_per_visit_returning_change_from>+100%</nb_actions_per_visit_returning_change_from>
+ <avg_time_on_site_returning_change>+0%</avg_time_on_site_returning_change>
+ <avg_time_on_site_returning_change_from>+0%</avg_time_on_site_returning_change_from>
+ <compareSegment />
+ <compareSegmentPretty>All visits</compareSegmentPretty>
+ <comparePeriod>day</comparePeriod>
+ <compareDate>2012-08-12</compareDate>
+ <comparePeriodPretty>Sunday, August 12, 2012</comparePeriodPretty>
+ <compareSeriesPretty>(August 9 – 16, 2012) (All visits)</compareSeriesPretty>
+ <idsubdatatable>-1</idsubdatatable>
+ </row>
+ <row>
+ <nb_uniq_visitors_new>0</nb_uniq_visitors_new>
+ <nb_users_new>0</nb_users_new>
+ <nb_visits_new>0</nb_visits_new>
+ <nb_actions_new>0</nb_actions_new>
+ <nb_visits_converted_new>0</nb_visits_converted_new>
+ <bounce_count_new>0</bounce_count_new>
+ <sum_visit_length_new>0</sum_visit_length_new>
+ <max_actions_new>0</max_actions_new>
+ <bounce_rate_new>0%</bounce_rate_new>
+ <nb_actions_per_visit_new>0</nb_actions_per_visit_new>
+ <avg_time_on_site_new>0</avg_time_on_site_new>
+ <nb_uniq_visitors_returning>0</nb_uniq_visitors_returning>
+ <nb_users_returning>0</nb_users_returning>
+ <nb_visits_returning>0</nb_visits_returning>
+ <nb_actions_returning>0</nb_actions_returning>
+ <nb_visits_converted_returning>0</nb_visits_converted_returning>
+ <bounce_count_returning>0</bounce_count_returning>
+ <sum_visit_length_returning>0</sum_visit_length_returning>
+ <max_actions_returning>0</max_actions_returning>
+ <bounce_rate_returning>0%</bounce_rate_returning>
+ <nb_actions_per_visit_returning>0</nb_actions_per_visit_returning>
+ <avg_time_on_site_returning>0</avg_time_on_site_returning>
+ <nb_uniq_visitors_new_change>-100%</nb_uniq_visitors_new_change>
+ <nb_uniq_visitors_new_change_from>+100%</nb_uniq_visitors_new_change_from>
+ <nb_users_new_change>+0%</nb_users_new_change>
+ <nb_users_new_change_from>+0%</nb_users_new_change_from>
+ <nb_visits_new_change>-100%</nb_visits_new_change>
+ <nb_visits_new_change_from>+100%</nb_visits_new_change_from>
+ <nb_actions_new_change>-100%</nb_actions_new_change>
+ <nb_actions_new_change_from>+100%</nb_actions_new_change_from>
+ <nb_visits_converted_new_change>-100%</nb_visits_converted_new_change>
+ <nb_visits_converted_new_change_from>+100%</nb_visits_converted_new_change_from>
+ <bounce_count_new_change>-100%</bounce_count_new_change>
+ <bounce_count_new_change_from>+100%</bounce_count_new_change_from>
+ <sum_visit_length_new_change>+0%</sum_visit_length_new_change>
+ <sum_visit_length_new_change_from>+0%</sum_visit_length_new_change_from>
+ <max_actions_new_change>-100%</max_actions_new_change>
+ <max_actions_new_change_from>+100%</max_actions_new_change_from>
+ <bounce_rate_new_change>-100%</bounce_rate_new_change>
+ <bounce_rate_new_change_from>+100%</bounce_rate_new_change_from>
+ <nb_actions_per_visit_new_change>-100%</nb_actions_per_visit_new_change>
+ <nb_actions_per_visit_new_change_from>+100%</nb_actions_per_visit_new_change_from>
+ <avg_time_on_site_new_change>+0%</avg_time_on_site_new_change>
+ <avg_time_on_site_new_change_from>+0%</avg_time_on_site_new_change_from>
+ <nb_uniq_visitors_returning_change>-100%</nb_uniq_visitors_returning_change>
+ <nb_uniq_visitors_returning_change_from>+100%</nb_uniq_visitors_returning_change_from>
+ <nb_users_returning_change>+0%</nb_users_returning_change>
+ <nb_users_returning_change_from>+0%</nb_users_returning_change_from>
+ <nb_visits_returning_change>-100%</nb_visits_returning_change>
+ <nb_visits_returning_change_from>+100%</nb_visits_returning_change_from>
+ <nb_actions_returning_change>-100%</nb_actions_returning_change>
+ <nb_actions_returning_change_from>+100%</nb_actions_returning_change_from>
+ <nb_visits_converted_returning_change>-100%</nb_visits_converted_returning_change>
+ <nb_visits_converted_returning_change_from>+100%</nb_visits_converted_returning_change_from>
+ <bounce_count_returning_change>-100%</bounce_count_returning_change>
+ <bounce_count_returning_change_from>+100%</bounce_count_returning_change_from>
+ <sum_visit_length_returning_change>+0%</sum_visit_length_returning_change>
+ <sum_visit_length_returning_change_from>+0%</sum_visit_length_returning_change_from>
+ <max_actions_returning_change>-100%</max_actions_returning_change>
+ <max_actions_returning_change_from>+100%</max_actions_returning_change_from>
+ <bounce_rate_returning_change>-100%</bounce_rate_returning_change>
+ <bounce_rate_returning_change_from>+100%</bounce_rate_returning_change_from>
+ <nb_actions_per_visit_returning_change>-100%</nb_actions_per_visit_returning_change>
+ <nb_actions_per_visit_returning_change_from>+100%</nb_actions_per_visit_returning_change_from>
+ <avg_time_on_site_returning_change>+0%</avg_time_on_site_returning_change>
+ <avg_time_on_site_returning_change_from>+0%</avg_time_on_site_returning_change_from>
+ <compareSegment />
+ <compareSegmentPretty>All visits</compareSegmentPretty>
+ <comparePeriod>day</comparePeriod>
+ <compareDate>2012-08-13,2012-08-14</compareDate>
+ <comparePeriodPretty>August 13 – 14, 2012</comparePeriodPretty>
+ <compareSeriesPretty>(August 13 – 14, 2012) (All visits)</compareSeriesPretty>
+ <idsubdatatable>-1</idsubdatatable>
+ </row>
+ </comparisons>
+ </result>
+</results> \ No newline at end of file
diff --git a/tests/PHPUnit/System/expected/test_DataComparisonTest_multipleMultiPeriods__VisitFrequency.get_day.xml b/tests/PHPUnit/System/expected/test_DataComparisonTest_multipleMultiPeriods__VisitFrequency.get_day.xml
index c234bed59e..89d75609f7 100644
--- a/tests/PHPUnit/System/expected/test_DataComparisonTest_multipleMultiPeriods__VisitFrequency.get_day.xml
+++ b/tests/PHPUnit/System/expected/test_DataComparisonTest_multipleMultiPeriods__VisitFrequency.get_day.xml
@@ -1,2 +1,2242 @@
<?xml version="1.0" encoding="utf-8" ?>
-<result /> \ No newline at end of file
+<results>
+ <result period="2012-08-09">
+ <nb_uniq_visitors_new>11</nb_uniq_visitors_new>
+ <nb_users_new>0</nb_users_new>
+ <nb_visits_new>11</nb_visits_new>
+ <nb_actions_new>11</nb_actions_new>
+ <nb_visits_converted_new>11</nb_visits_converted_new>
+ <bounce_count_new>11</bounce_count_new>
+ <sum_visit_length_new>0</sum_visit_length_new>
+ <max_actions_new>1</max_actions_new>
+ <bounce_rate_new>100%</bounce_rate_new>
+ <nb_actions_per_visit_new>1</nb_actions_per_visit_new>
+ <avg_time_on_site_new>0</avg_time_on_site_new>
+ <comparisons>
+ <row>
+ <nb_uniq_visitors_new>11</nb_uniq_visitors_new>
+ <nb_users_new>0</nb_users_new>
+ <nb_visits_new>11</nb_visits_new>
+ <nb_actions_new>11</nb_actions_new>
+ <nb_visits_converted_new>11</nb_visits_converted_new>
+ <bounce_count_new>11</bounce_count_new>
+ <sum_visit_length_new>0</sum_visit_length_new>
+ <max_actions_new>1</max_actions_new>
+ <bounce_rate_new>100%</bounce_rate_new>
+ <nb_actions_per_visit_new>1</nb_actions_per_visit_new>
+ <avg_time_on_site_new>0</avg_time_on_site_new>
+ <avg_time_on_site_returning>0</avg_time_on_site_returning>
+ <nb_actions_per_visit_returning>0</nb_actions_per_visit_returning>
+ <bounce_rate_returning>0%</bounce_rate_returning>
+ <compareSegment />
+ <compareSegmentPretty>All visits</compareSegmentPretty>
+ <comparePeriod>day</comparePeriod>
+ <compareDate>2012-08-09</compareDate>
+ <comparePeriodPretty>Thursday, August 9, 2012</comparePeriodPretty>
+ <compareSeriesPretty>(August 9 – 16, 2012) (All visits)</compareSeriesPretty>
+ <idsubdatatable>-1</idsubdatatable>
+ </row>
+ <row>
+ <nb_uniq_visitors_new>2</nb_uniq_visitors_new>
+ <nb_users_new>0</nb_users_new>
+ <nb_visits_new>2</nb_visits_new>
+ <nb_actions_new>2</nb_actions_new>
+ <nb_visits_converted_new>2</nb_visits_converted_new>
+ <bounce_count_new>2</bounce_count_new>
+ <sum_visit_length_new>0</sum_visit_length_new>
+ <max_actions_new>1</max_actions_new>
+ <bounce_rate_new>100%</bounce_rate_new>
+ <nb_actions_per_visit_new>1</nb_actions_per_visit_new>
+ <avg_time_on_site_new>0</avg_time_on_site_new>
+ <avg_time_on_site_returning>0</avg_time_on_site_returning>
+ <nb_actions_per_visit_returning>0</nb_actions_per_visit_returning>
+ <bounce_rate_returning>0%</bounce_rate_returning>
+ <compareSegment>browserCode%3D%3Dff</compareSegment>
+ <compareSegmentPretty>browserCode==ff</compareSegmentPretty>
+ <comparePeriod>day</comparePeriod>
+ <compareDate>2012-08-09</compareDate>
+ <comparePeriodPretty>Thursday, August 9, 2012</comparePeriodPretty>
+ <compareSeriesPretty>(August 9 – 16, 2012) (browserCode==ff)</compareSeriesPretty>
+ <idsubdatatable>-1</idsubdatatable>
+ </row>
+ <row>
+ <nb_uniq_visitors_new>1</nb_uniq_visitors_new>
+ <nb_users_new>0</nb_users_new>
+ <nb_visits_new>1</nb_visits_new>
+ <nb_actions_new>1</nb_actions_new>
+ <nb_visits_converted_new>1</nb_visits_converted_new>
+ <bounce_count_new>1</bounce_count_new>
+ <sum_visit_length_new>0</sum_visit_length_new>
+ <max_actions_new>1</max_actions_new>
+ <bounce_rate_new>100%</bounce_rate_new>
+ <nb_actions_per_visit_new>1</nb_actions_per_visit_new>
+ <avg_time_on_site_new>0</avg_time_on_site_new>
+ <avg_time_on_site_returning>0</avg_time_on_site_returning>
+ <nb_actions_per_visit_returning>0</nb_actions_per_visit_returning>
+ <bounce_rate_returning>0%</bounce_rate_returning>
+ <compareSegment>browserCode%3D%3Die</compareSegment>
+ <compareSegmentPretty>browserCode==ie</compareSegmentPretty>
+ <comparePeriod>day</comparePeriod>
+ <compareDate>2012-08-09</compareDate>
+ <comparePeriodPretty>Thursday, August 9, 2012</comparePeriodPretty>
+ <compareSeriesPretty>(August 9 – 16, 2012) (browserCode==ie)</compareSeriesPretty>
+ <idsubdatatable>-1</idsubdatatable>
+ </row>
+ <row>
+ <nb_uniq_visitors_new>11</nb_uniq_visitors_new>
+ <nb_users_new>0</nb_users_new>
+ <nb_visits_new>11</nb_visits_new>
+ <nb_actions_new>11</nb_actions_new>
+ <nb_visits_converted_new>11</nb_visits_converted_new>
+ <bounce_count_new>11</bounce_count_new>
+ <sum_visit_length_new>0</sum_visit_length_new>
+ <max_actions_new>1</max_actions_new>
+ <bounce_rate_new>100%</bounce_rate_new>
+ <nb_actions_per_visit_new>1</nb_actions_per_visit_new>
+ <avg_time_on_site_new>0</avg_time_on_site_new>
+ <nb_uniq_visitors_new_change>+0%</nb_uniq_visitors_new_change>
+ <nb_uniq_visitors_new_change_from>+0%</nb_uniq_visitors_new_change_from>
+ <nb_users_new_change>+0%</nb_users_new_change>
+ <nb_users_new_change_from>+0%</nb_users_new_change_from>
+ <nb_visits_new_change>+0%</nb_visits_new_change>
+ <nb_visits_new_change_from>+0%</nb_visits_new_change_from>
+ <nb_actions_new_change>+0%</nb_actions_new_change>
+ <nb_actions_new_change_from>+0%</nb_actions_new_change_from>
+ <nb_visits_converted_new_change>+0%</nb_visits_converted_new_change>
+ <nb_visits_converted_new_change_from>+0%</nb_visits_converted_new_change_from>
+ <bounce_count_new_change>+0%</bounce_count_new_change>
+ <bounce_count_new_change_from>+0%</bounce_count_new_change_from>
+ <sum_visit_length_new_change>+0%</sum_visit_length_new_change>
+ <sum_visit_length_new_change_from>+0%</sum_visit_length_new_change_from>
+ <max_actions_new_change>+0%</max_actions_new_change>
+ <max_actions_new_change_from>+0%</max_actions_new_change_from>
+ <bounce_rate_new_change>+0%</bounce_rate_new_change>
+ <bounce_rate_new_change_from>+0%</bounce_rate_new_change_from>
+ <nb_actions_per_visit_new_change>+0%</nb_actions_per_visit_new_change>
+ <nb_actions_per_visit_new_change_from>+0%</nb_actions_per_visit_new_change_from>
+ <avg_time_on_site_new_change>+0%</avg_time_on_site_new_change>
+ <avg_time_on_site_new_change_from>+0%</avg_time_on_site_new_change_from>
+ <avg_time_on_site_returning>0</avg_time_on_site_returning>
+ <nb_actions_per_visit_returning>0</nb_actions_per_visit_returning>
+ <bounce_rate_returning>0%</bounce_rate_returning>
+ <compareSegment />
+ <compareSegmentPretty>All visits</compareSegmentPretty>
+ <comparePeriod>day</comparePeriod>
+ <compareDate>2012-08-09</compareDate>
+ <comparePeriodPretty>Thursday, August 9, 2012</comparePeriodPretty>
+ <compareSeriesPretty>(August 9 – 16, 2012) (All visits)</compareSeriesPretty>
+ <idsubdatatable>-1</idsubdatatable>
+ </row>
+ <row>
+ <nb_uniq_visitors_new>2</nb_uniq_visitors_new>
+ <nb_users_new>0</nb_users_new>
+ <nb_visits_new>2</nb_visits_new>
+ <nb_actions_new>2</nb_actions_new>
+ <nb_visits_converted_new>2</nb_visits_converted_new>
+ <bounce_count_new>2</bounce_count_new>
+ <sum_visit_length_new>0</sum_visit_length_new>
+ <max_actions_new>1</max_actions_new>
+ <bounce_rate_new>100%</bounce_rate_new>
+ <nb_actions_per_visit_new>1</nb_actions_per_visit_new>
+ <avg_time_on_site_new>0</avg_time_on_site_new>
+ <nb_uniq_visitors_new_change>+0%</nb_uniq_visitors_new_change>
+ <nb_uniq_visitors_new_change_from>+0%</nb_uniq_visitors_new_change_from>
+ <nb_users_new_change>+0%</nb_users_new_change>
+ <nb_users_new_change_from>+0%</nb_users_new_change_from>
+ <nb_visits_new_change>+0%</nb_visits_new_change>
+ <nb_visits_new_change_from>+0%</nb_visits_new_change_from>
+ <nb_actions_new_change>+0%</nb_actions_new_change>
+ <nb_actions_new_change_from>+0%</nb_actions_new_change_from>
+ <nb_visits_converted_new_change>+0%</nb_visits_converted_new_change>
+ <nb_visits_converted_new_change_from>+0%</nb_visits_converted_new_change_from>
+ <bounce_count_new_change>+0%</bounce_count_new_change>
+ <bounce_count_new_change_from>+0%</bounce_count_new_change_from>
+ <sum_visit_length_new_change>+0%</sum_visit_length_new_change>
+ <sum_visit_length_new_change_from>+0%</sum_visit_length_new_change_from>
+ <max_actions_new_change>+0%</max_actions_new_change>
+ <max_actions_new_change_from>+0%</max_actions_new_change_from>
+ <bounce_rate_new_change>+0%</bounce_rate_new_change>
+ <bounce_rate_new_change_from>+0%</bounce_rate_new_change_from>
+ <nb_actions_per_visit_new_change>+0%</nb_actions_per_visit_new_change>
+ <nb_actions_per_visit_new_change_from>+0%</nb_actions_per_visit_new_change_from>
+ <avg_time_on_site_new_change>+0%</avg_time_on_site_new_change>
+ <avg_time_on_site_new_change_from>+0%</avg_time_on_site_new_change_from>
+ <avg_time_on_site_returning>0</avg_time_on_site_returning>
+ <nb_actions_per_visit_returning>0</nb_actions_per_visit_returning>
+ <bounce_rate_returning>0%</bounce_rate_returning>
+ <compareSegment>browserCode%3D%3Dff</compareSegment>
+ <compareSegmentPretty>browserCode==ff</compareSegmentPretty>
+ <comparePeriod>day</comparePeriod>
+ <compareDate>2012-08-09</compareDate>
+ <comparePeriodPretty>Thursday, August 9, 2012</comparePeriodPretty>
+ <compareSeriesPretty>(August 9 – 16, 2012) (browserCode==ff)</compareSeriesPretty>
+ <idsubdatatable>-1</idsubdatatable>
+ </row>
+ <row>
+ <nb_uniq_visitors_new>1</nb_uniq_visitors_new>
+ <nb_users_new>0</nb_users_new>
+ <nb_visits_new>1</nb_visits_new>
+ <nb_actions_new>1</nb_actions_new>
+ <nb_visits_converted_new>1</nb_visits_converted_new>
+ <bounce_count_new>1</bounce_count_new>
+ <sum_visit_length_new>0</sum_visit_length_new>
+ <max_actions_new>1</max_actions_new>
+ <bounce_rate_new>100%</bounce_rate_new>
+ <nb_actions_per_visit_new>1</nb_actions_per_visit_new>
+ <avg_time_on_site_new>0</avg_time_on_site_new>
+ <nb_uniq_visitors_new_change>+0%</nb_uniq_visitors_new_change>
+ <nb_uniq_visitors_new_change_from>+0%</nb_uniq_visitors_new_change_from>
+ <nb_users_new_change>+0%</nb_users_new_change>
+ <nb_users_new_change_from>+0%</nb_users_new_change_from>
+ <nb_visits_new_change>+0%</nb_visits_new_change>
+ <nb_visits_new_change_from>+0%</nb_visits_new_change_from>
+ <nb_actions_new_change>+0%</nb_actions_new_change>
+ <nb_actions_new_change_from>+0%</nb_actions_new_change_from>
+ <nb_visits_converted_new_change>+0%</nb_visits_converted_new_change>
+ <nb_visits_converted_new_change_from>+0%</nb_visits_converted_new_change_from>
+ <bounce_count_new_change>+0%</bounce_count_new_change>
+ <bounce_count_new_change_from>+0%</bounce_count_new_change_from>
+ <sum_visit_length_new_change>+0%</sum_visit_length_new_change>
+ <sum_visit_length_new_change_from>+0%</sum_visit_length_new_change_from>
+ <max_actions_new_change>+0%</max_actions_new_change>
+ <max_actions_new_change_from>+0%</max_actions_new_change_from>
+ <bounce_rate_new_change>+0%</bounce_rate_new_change>
+ <bounce_rate_new_change_from>+0%</bounce_rate_new_change_from>
+ <nb_actions_per_visit_new_change>+0%</nb_actions_per_visit_new_change>
+ <nb_actions_per_visit_new_change_from>+0%</nb_actions_per_visit_new_change_from>
+ <avg_time_on_site_new_change>+0%</avg_time_on_site_new_change>
+ <avg_time_on_site_new_change_from>+0%</avg_time_on_site_new_change_from>
+ <avg_time_on_site_returning>0</avg_time_on_site_returning>
+ <nb_actions_per_visit_returning>0</nb_actions_per_visit_returning>
+ <bounce_rate_returning>0%</bounce_rate_returning>
+ <compareSegment>browserCode%3D%3Die</compareSegment>
+ <compareSegmentPretty>browserCode==ie</compareSegmentPretty>
+ <comparePeriod>day</comparePeriod>
+ <compareDate>2012-08-09</compareDate>
+ <comparePeriodPretty>Thursday, August 9, 2012</comparePeriodPretty>
+ <compareSeriesPretty>(August 9 – 16, 2012) (browserCode==ie)</compareSeriesPretty>
+ <idsubdatatable>-1</idsubdatatable>
+ </row>
+ <row>
+ <nb_uniq_visitors_new>0</nb_uniq_visitors_new>
+ <nb_users_new>0</nb_users_new>
+ <nb_visits_new>0</nb_visits_new>
+ <nb_actions_new>0</nb_actions_new>
+ <nb_visits_converted_new>0</nb_visits_converted_new>
+ <bounce_count_new>0</bounce_count_new>
+ <sum_visit_length_new>0</sum_visit_length_new>
+ <max_actions_new>0</max_actions_new>
+ <bounce_rate_new>0%</bounce_rate_new>
+ <nb_actions_per_visit_new>0</nb_actions_per_visit_new>
+ <avg_time_on_site_new>0</avg_time_on_site_new>
+ <nb_uniq_visitors_new_change>-100%</nb_uniq_visitors_new_change>
+ <nb_uniq_visitors_new_change_from>+100%</nb_uniq_visitors_new_change_from>
+ <nb_users_new_change>+0%</nb_users_new_change>
+ <nb_users_new_change_from>+0%</nb_users_new_change_from>
+ <nb_visits_new_change>-100%</nb_visits_new_change>
+ <nb_visits_new_change_from>+100%</nb_visits_new_change_from>
+ <nb_actions_new_change>-100%</nb_actions_new_change>
+ <nb_actions_new_change_from>+100%</nb_actions_new_change_from>
+ <nb_visits_converted_new_change>-100%</nb_visits_converted_new_change>
+ <nb_visits_converted_new_change_from>+100%</nb_visits_converted_new_change_from>
+ <bounce_count_new_change>-100%</bounce_count_new_change>
+ <bounce_count_new_change_from>+100%</bounce_count_new_change_from>
+ <sum_visit_length_new_change>+0%</sum_visit_length_new_change>
+ <sum_visit_length_new_change_from>+0%</sum_visit_length_new_change_from>
+ <max_actions_new_change>-100%</max_actions_new_change>
+ <max_actions_new_change_from>+100%</max_actions_new_change_from>
+ <bounce_rate_new_change>-100%</bounce_rate_new_change>
+ <bounce_rate_new_change_from>+100%</bounce_rate_new_change_from>
+ <nb_actions_per_visit_new_change>-100%</nb_actions_per_visit_new_change>
+ <nb_actions_per_visit_new_change_from>+100%</nb_actions_per_visit_new_change_from>
+ <avg_time_on_site_new_change>+0%</avg_time_on_site_new_change>
+ <avg_time_on_site_new_change_from>+0%</avg_time_on_site_new_change_from>
+ <avg_time_on_site_returning>0</avg_time_on_site_returning>
+ <nb_actions_per_visit_returning>0</nb_actions_per_visit_returning>
+ <bounce_rate_returning>0%</bounce_rate_returning>
+ <compareSegment />
+ <compareSegmentPretty>All visits</compareSegmentPretty>
+ <comparePeriod>day</comparePeriod>
+ <compareDate>2012-08-12</compareDate>
+ <comparePeriodPretty>Sunday, August 12, 2012</comparePeriodPretty>
+ <compareSeriesPretty>(August 12 – 15, 2012) (All visits)</compareSeriesPretty>
+ <idsubdatatable>-1</idsubdatatable>
+ </row>
+ <row>
+ <nb_uniq_visitors_new>0</nb_uniq_visitors_new>
+ <nb_users_new>0</nb_users_new>
+ <nb_visits_new>0</nb_visits_new>
+ <nb_actions_new>0</nb_actions_new>
+ <nb_visits_converted_new>0</nb_visits_converted_new>
+ <bounce_count_new>0</bounce_count_new>
+ <sum_visit_length_new>0</sum_visit_length_new>
+ <max_actions_new>0</max_actions_new>
+ <bounce_rate_new>0%</bounce_rate_new>
+ <nb_actions_per_visit_new>0</nb_actions_per_visit_new>
+ <avg_time_on_site_new>0</avg_time_on_site_new>
+ <nb_uniq_visitors_new_change>-100%</nb_uniq_visitors_new_change>
+ <nb_uniq_visitors_new_change_from>+100%</nb_uniq_visitors_new_change_from>
+ <nb_users_new_change>+0%</nb_users_new_change>
+ <nb_users_new_change_from>+0%</nb_users_new_change_from>
+ <nb_visits_new_change>-100%</nb_visits_new_change>
+ <nb_visits_new_change_from>+100%</nb_visits_new_change_from>
+ <nb_actions_new_change>-100%</nb_actions_new_change>
+ <nb_actions_new_change_from>+100%</nb_actions_new_change_from>
+ <nb_visits_converted_new_change>-100%</nb_visits_converted_new_change>
+ <nb_visits_converted_new_change_from>+100%</nb_visits_converted_new_change_from>
+ <bounce_count_new_change>-100%</bounce_count_new_change>
+ <bounce_count_new_change_from>+100%</bounce_count_new_change_from>
+ <sum_visit_length_new_change>+0%</sum_visit_length_new_change>
+ <sum_visit_length_new_change_from>+0%</sum_visit_length_new_change_from>
+ <max_actions_new_change>-100%</max_actions_new_change>
+ <max_actions_new_change_from>+100%</max_actions_new_change_from>
+ <bounce_rate_new_change>-100%</bounce_rate_new_change>
+ <bounce_rate_new_change_from>+100%</bounce_rate_new_change_from>
+ <nb_actions_per_visit_new_change>-100%</nb_actions_per_visit_new_change>
+ <nb_actions_per_visit_new_change_from>+100%</nb_actions_per_visit_new_change_from>
+ <avg_time_on_site_new_change>+0%</avg_time_on_site_new_change>
+ <avg_time_on_site_new_change_from>+0%</avg_time_on_site_new_change_from>
+ <avg_time_on_site_returning>0</avg_time_on_site_returning>
+ <nb_actions_per_visit_returning>0</nb_actions_per_visit_returning>
+ <bounce_rate_returning>0%</bounce_rate_returning>
+ <compareSegment>browserCode%3D%3Dff</compareSegment>
+ <compareSegmentPretty>browserCode==ff</compareSegmentPretty>
+ <comparePeriod>day</comparePeriod>
+ <compareDate>2012-08-12</compareDate>
+ <comparePeriodPretty>Sunday, August 12, 2012</comparePeriodPretty>
+ <compareSeriesPretty>(August 12 – 15, 2012) (browserCode==ff)</compareSeriesPretty>
+ <idsubdatatable>-1</idsubdatatable>
+ </row>
+ <row>
+ <nb_uniq_visitors_new>0</nb_uniq_visitors_new>
+ <nb_users_new>0</nb_users_new>
+ <nb_visits_new>0</nb_visits_new>
+ <nb_actions_new>0</nb_actions_new>
+ <nb_visits_converted_new>0</nb_visits_converted_new>
+ <bounce_count_new>0</bounce_count_new>
+ <sum_visit_length_new>0</sum_visit_length_new>
+ <max_actions_new>0</max_actions_new>
+ <bounce_rate_new>0%</bounce_rate_new>
+ <nb_actions_per_visit_new>0</nb_actions_per_visit_new>
+ <avg_time_on_site_new>0</avg_time_on_site_new>
+ <nb_uniq_visitors_new_change>-100%</nb_uniq_visitors_new_change>
+ <nb_uniq_visitors_new_change_from>+100%</nb_uniq_visitors_new_change_from>
+ <nb_users_new_change>+0%</nb_users_new_change>
+ <nb_users_new_change_from>+0%</nb_users_new_change_from>
+ <nb_visits_new_change>-100%</nb_visits_new_change>
+ <nb_visits_new_change_from>+100%</nb_visits_new_change_from>
+ <nb_actions_new_change>-100%</nb_actions_new_change>
+ <nb_actions_new_change_from>+100%</nb_actions_new_change_from>
+ <nb_visits_converted_new_change>-100%</nb_visits_converted_new_change>
+ <nb_visits_converted_new_change_from>+100%</nb_visits_converted_new_change_from>
+ <bounce_count_new_change>-100%</bounce_count_new_change>
+ <bounce_count_new_change_from>+100%</bounce_count_new_change_from>
+ <sum_visit_length_new_change>+0%</sum_visit_length_new_change>
+ <sum_visit_length_new_change_from>+0%</sum_visit_length_new_change_from>
+ <max_actions_new_change>-100%</max_actions_new_change>
+ <max_actions_new_change_from>+100%</max_actions_new_change_from>
+ <bounce_rate_new_change>-100%</bounce_rate_new_change>
+ <bounce_rate_new_change_from>+100%</bounce_rate_new_change_from>
+ <nb_actions_per_visit_new_change>-100%</nb_actions_per_visit_new_change>
+ <nb_actions_per_visit_new_change_from>+100%</nb_actions_per_visit_new_change_from>
+ <avg_time_on_site_new_change>+0%</avg_time_on_site_new_change>
+ <avg_time_on_site_new_change_from>+0%</avg_time_on_site_new_change_from>
+ <avg_time_on_site_returning>0</avg_time_on_site_returning>
+ <nb_actions_per_visit_returning>0</nb_actions_per_visit_returning>
+ <bounce_rate_returning>0%</bounce_rate_returning>
+ <compareSegment>browserCode%3D%3Die</compareSegment>
+ <compareSegmentPretty>browserCode==ie</compareSegmentPretty>
+ <comparePeriod>day</comparePeriod>
+ <compareDate>2012-08-12</compareDate>
+ <comparePeriodPretty>Sunday, August 12, 2012</comparePeriodPretty>
+ <compareSeriesPretty>(August 12 – 15, 2012) (browserCode==ie)</compareSeriesPretty>
+ <idsubdatatable>-1</idsubdatatable>
+ </row>
+ </comparisons>
+ </result>
+ <result period="2012-08-10">
+ <nb_uniq_visitors_new>8</nb_uniq_visitors_new>
+ <nb_users_new>0</nb_users_new>
+ <nb_visits_new>8</nb_visits_new>
+ <nb_actions_new>8</nb_actions_new>
+ <nb_visits_converted_new>8</nb_visits_converted_new>
+ <bounce_count_new>8</bounce_count_new>
+ <sum_visit_length_new>0</sum_visit_length_new>
+ <max_actions_new>1</max_actions_new>
+ <bounce_rate_new>100%</bounce_rate_new>
+ <nb_actions_per_visit_new>1</nb_actions_per_visit_new>
+ <avg_time_on_site_new>0</avg_time_on_site_new>
+ <comparisons>
+ <row>
+ <nb_uniq_visitors_new>8</nb_uniq_visitors_new>
+ <nb_users_new>0</nb_users_new>
+ <nb_visits_new>8</nb_visits_new>
+ <nb_actions_new>8</nb_actions_new>
+ <nb_visits_converted_new>8</nb_visits_converted_new>
+ <bounce_count_new>8</bounce_count_new>
+ <sum_visit_length_new>0</sum_visit_length_new>
+ <max_actions_new>1</max_actions_new>
+ <bounce_rate_new>100%</bounce_rate_new>
+ <nb_actions_per_visit_new>1</nb_actions_per_visit_new>
+ <avg_time_on_site_new>0</avg_time_on_site_new>
+ <avg_time_on_site_returning>0</avg_time_on_site_returning>
+ <nb_actions_per_visit_returning>0</nb_actions_per_visit_returning>
+ <bounce_rate_returning>0%</bounce_rate_returning>
+ <compareSegment />
+ <compareSegmentPretty>All visits</compareSegmentPretty>
+ <comparePeriod>day</comparePeriod>
+ <compareDate>2012-08-10</compareDate>
+ <comparePeriodPretty>Friday, August 10, 2012</comparePeriodPretty>
+ <compareSeriesPretty>(August 9 – 16, 2012) (All visits)</compareSeriesPretty>
+ <idsubdatatable>-1</idsubdatatable>
+ </row>
+ <row>
+ <nb_uniq_visitors_new>0</nb_uniq_visitors_new>
+ <nb_users_new>0</nb_users_new>
+ <nb_visits_new>0</nb_visits_new>
+ <nb_actions_new>0</nb_actions_new>
+ <nb_visits_converted_new>0</nb_visits_converted_new>
+ <bounce_count_new>0</bounce_count_new>
+ <sum_visit_length_new>0</sum_visit_length_new>
+ <max_actions_new>0</max_actions_new>
+ <bounce_rate_new>0%</bounce_rate_new>
+ <nb_actions_per_visit_new>0</nb_actions_per_visit_new>
+ <avg_time_on_site_new>0</avg_time_on_site_new>
+ <avg_time_on_site_returning>0</avg_time_on_site_returning>
+ <nb_actions_per_visit_returning>0</nb_actions_per_visit_returning>
+ <bounce_rate_returning>0%</bounce_rate_returning>
+ <compareSegment>browserCode%3D%3Dff</compareSegment>
+ <compareSegmentPretty>browserCode==ff</compareSegmentPretty>
+ <comparePeriod>day</comparePeriod>
+ <compareDate>2012-08-10</compareDate>
+ <comparePeriodPretty>Friday, August 10, 2012</comparePeriodPretty>
+ <compareSeriesPretty>(August 9 – 16, 2012) (browserCode==ff)</compareSeriesPretty>
+ <idsubdatatable>-1</idsubdatatable>
+ </row>
+ <row>
+ <nb_uniq_visitors_new>3</nb_uniq_visitors_new>
+ <nb_users_new>0</nb_users_new>
+ <nb_visits_new>3</nb_visits_new>
+ <nb_actions_new>3</nb_actions_new>
+ <nb_visits_converted_new>3</nb_visits_converted_new>
+ <bounce_count_new>3</bounce_count_new>
+ <sum_visit_length_new>0</sum_visit_length_new>
+ <max_actions_new>1</max_actions_new>
+ <bounce_rate_new>100%</bounce_rate_new>
+ <nb_actions_per_visit_new>1</nb_actions_per_visit_new>
+ <avg_time_on_site_new>0</avg_time_on_site_new>
+ <avg_time_on_site_returning>0</avg_time_on_site_returning>
+ <nb_actions_per_visit_returning>0</nb_actions_per_visit_returning>
+ <bounce_rate_returning>0%</bounce_rate_returning>
+ <compareSegment>browserCode%3D%3Die</compareSegment>
+ <compareSegmentPretty>browserCode==ie</compareSegmentPretty>
+ <comparePeriod>day</comparePeriod>
+ <compareDate>2012-08-10</compareDate>
+ <comparePeriodPretty>Friday, August 10, 2012</comparePeriodPretty>
+ <compareSeriesPretty>(August 9 – 16, 2012) (browserCode==ie)</compareSeriesPretty>
+ <idsubdatatable>-1</idsubdatatable>
+ </row>
+ <row>
+ <nb_uniq_visitors_new>8</nb_uniq_visitors_new>
+ <nb_users_new>0</nb_users_new>
+ <nb_visits_new>8</nb_visits_new>
+ <nb_actions_new>8</nb_actions_new>
+ <nb_visits_converted_new>8</nb_visits_converted_new>
+ <bounce_count_new>8</bounce_count_new>
+ <sum_visit_length_new>0</sum_visit_length_new>
+ <max_actions_new>1</max_actions_new>
+ <bounce_rate_new>100%</bounce_rate_new>
+ <nb_actions_per_visit_new>1</nb_actions_per_visit_new>
+ <avg_time_on_site_new>0</avg_time_on_site_new>
+ <nb_uniq_visitors_new_change>+0%</nb_uniq_visitors_new_change>
+ <nb_uniq_visitors_new_change_from>+0%</nb_uniq_visitors_new_change_from>
+ <nb_users_new_change>+0%</nb_users_new_change>
+ <nb_users_new_change_from>+0%</nb_users_new_change_from>
+ <nb_visits_new_change>+0%</nb_visits_new_change>
+ <nb_visits_new_change_from>+0%</nb_visits_new_change_from>
+ <nb_actions_new_change>+0%</nb_actions_new_change>
+ <nb_actions_new_change_from>+0%</nb_actions_new_change_from>
+ <nb_visits_converted_new_change>+0%</nb_visits_converted_new_change>
+ <nb_visits_converted_new_change_from>+0%</nb_visits_converted_new_change_from>
+ <bounce_count_new_change>+0%</bounce_count_new_change>
+ <bounce_count_new_change_from>+0%</bounce_count_new_change_from>
+ <sum_visit_length_new_change>+0%</sum_visit_length_new_change>
+ <sum_visit_length_new_change_from>+0%</sum_visit_length_new_change_from>
+ <max_actions_new_change>+0%</max_actions_new_change>
+ <max_actions_new_change_from>+0%</max_actions_new_change_from>
+ <bounce_rate_new_change>+0%</bounce_rate_new_change>
+ <bounce_rate_new_change_from>+0%</bounce_rate_new_change_from>
+ <nb_actions_per_visit_new_change>+0%</nb_actions_per_visit_new_change>
+ <nb_actions_per_visit_new_change_from>+0%</nb_actions_per_visit_new_change_from>
+ <avg_time_on_site_new_change>+0%</avg_time_on_site_new_change>
+ <avg_time_on_site_new_change_from>+0%</avg_time_on_site_new_change_from>
+ <avg_time_on_site_returning>0</avg_time_on_site_returning>
+ <nb_actions_per_visit_returning>0</nb_actions_per_visit_returning>
+ <bounce_rate_returning>0%</bounce_rate_returning>
+ <compareSegment />
+ <compareSegmentPretty>All visits</compareSegmentPretty>
+ <comparePeriod>day</comparePeriod>
+ <compareDate>2012-08-10</compareDate>
+ <comparePeriodPretty>Friday, August 10, 2012</comparePeriodPretty>
+ <compareSeriesPretty>(August 9 – 16, 2012) (All visits)</compareSeriesPretty>
+ <idsubdatatable>-1</idsubdatatable>
+ </row>
+ <row>
+ <nb_uniq_visitors_new>0</nb_uniq_visitors_new>
+ <nb_users_new>0</nb_users_new>
+ <nb_visits_new>0</nb_visits_new>
+ <nb_actions_new>0</nb_actions_new>
+ <nb_visits_converted_new>0</nb_visits_converted_new>
+ <bounce_count_new>0</bounce_count_new>
+ <sum_visit_length_new>0</sum_visit_length_new>
+ <max_actions_new>0</max_actions_new>
+ <bounce_rate_new>0%</bounce_rate_new>
+ <nb_actions_per_visit_new>0</nb_actions_per_visit_new>
+ <avg_time_on_site_new>0</avg_time_on_site_new>
+ <nb_uniq_visitors_new_change>+0%</nb_uniq_visitors_new_change>
+ <nb_uniq_visitors_new_change_from>+0%</nb_uniq_visitors_new_change_from>
+ <nb_users_new_change>+0%</nb_users_new_change>
+ <nb_users_new_change_from>+0%</nb_users_new_change_from>
+ <nb_visits_new_change>+0%</nb_visits_new_change>
+ <nb_visits_new_change_from>+0%</nb_visits_new_change_from>
+ <nb_actions_new_change>+0%</nb_actions_new_change>
+ <nb_actions_new_change_from>+0%</nb_actions_new_change_from>
+ <nb_visits_converted_new_change>+0%</nb_visits_converted_new_change>
+ <nb_visits_converted_new_change_from>+0%</nb_visits_converted_new_change_from>
+ <bounce_count_new_change>+0%</bounce_count_new_change>
+ <bounce_count_new_change_from>+0%</bounce_count_new_change_from>
+ <sum_visit_length_new_change>+0%</sum_visit_length_new_change>
+ <sum_visit_length_new_change_from>+0%</sum_visit_length_new_change_from>
+ <max_actions_new_change>+0%</max_actions_new_change>
+ <max_actions_new_change_from>+0%</max_actions_new_change_from>
+ <bounce_rate_new_change>+0%</bounce_rate_new_change>
+ <bounce_rate_new_change_from>+0%</bounce_rate_new_change_from>
+ <nb_actions_per_visit_new_change>+0%</nb_actions_per_visit_new_change>
+ <nb_actions_per_visit_new_change_from>+0%</nb_actions_per_visit_new_change_from>
+ <avg_time_on_site_new_change>+0%</avg_time_on_site_new_change>
+ <avg_time_on_site_new_change_from>+0%</avg_time_on_site_new_change_from>
+ <avg_time_on_site_returning>0</avg_time_on_site_returning>
+ <nb_actions_per_visit_returning>0</nb_actions_per_visit_returning>
+ <bounce_rate_returning>0%</bounce_rate_returning>
+ <compareSegment>browserCode%3D%3Dff</compareSegment>
+ <compareSegmentPretty>browserCode==ff</compareSegmentPretty>
+ <comparePeriod>day</comparePeriod>
+ <compareDate>2012-08-10</compareDate>
+ <comparePeriodPretty>Friday, August 10, 2012</comparePeriodPretty>
+ <compareSeriesPretty>(August 9 – 16, 2012) (browserCode==ff)</compareSeriesPretty>
+ <idsubdatatable>-1</idsubdatatable>
+ </row>
+ <row>
+ <nb_uniq_visitors_new>3</nb_uniq_visitors_new>
+ <nb_users_new>0</nb_users_new>
+ <nb_visits_new>3</nb_visits_new>
+ <nb_actions_new>3</nb_actions_new>
+ <nb_visits_converted_new>3</nb_visits_converted_new>
+ <bounce_count_new>3</bounce_count_new>
+ <sum_visit_length_new>0</sum_visit_length_new>
+ <max_actions_new>1</max_actions_new>
+ <bounce_rate_new>100%</bounce_rate_new>
+ <nb_actions_per_visit_new>1</nb_actions_per_visit_new>
+ <avg_time_on_site_new>0</avg_time_on_site_new>
+ <nb_uniq_visitors_new_change>+0%</nb_uniq_visitors_new_change>
+ <nb_uniq_visitors_new_change_from>+0%</nb_uniq_visitors_new_change_from>
+ <nb_users_new_change>+0%</nb_users_new_change>
+ <nb_users_new_change_from>+0%</nb_users_new_change_from>
+ <nb_visits_new_change>+0%</nb_visits_new_change>
+ <nb_visits_new_change_from>+0%</nb_visits_new_change_from>
+ <nb_actions_new_change>+0%</nb_actions_new_change>
+ <nb_actions_new_change_from>+0%</nb_actions_new_change_from>
+ <nb_visits_converted_new_change>+0%</nb_visits_converted_new_change>
+ <nb_visits_converted_new_change_from>+0%</nb_visits_converted_new_change_from>
+ <bounce_count_new_change>+0%</bounce_count_new_change>
+ <bounce_count_new_change_from>+0%</bounce_count_new_change_from>
+ <sum_visit_length_new_change>+0%</sum_visit_length_new_change>
+ <sum_visit_length_new_change_from>+0%</sum_visit_length_new_change_from>
+ <max_actions_new_change>+0%</max_actions_new_change>
+ <max_actions_new_change_from>+0%</max_actions_new_change_from>
+ <bounce_rate_new_change>+0%</bounce_rate_new_change>
+ <bounce_rate_new_change_from>+0%</bounce_rate_new_change_from>
+ <nb_actions_per_visit_new_change>+0%</nb_actions_per_visit_new_change>
+ <nb_actions_per_visit_new_change_from>+0%</nb_actions_per_visit_new_change_from>
+ <avg_time_on_site_new_change>+0%</avg_time_on_site_new_change>
+ <avg_time_on_site_new_change_from>+0%</avg_time_on_site_new_change_from>
+ <avg_time_on_site_returning>0</avg_time_on_site_returning>
+ <nb_actions_per_visit_returning>0</nb_actions_per_visit_returning>
+ <bounce_rate_returning>0%</bounce_rate_returning>
+ <compareSegment>browserCode%3D%3Die</compareSegment>
+ <compareSegmentPretty>browserCode==ie</compareSegmentPretty>
+ <comparePeriod>day</comparePeriod>
+ <compareDate>2012-08-10</compareDate>
+ <comparePeriodPretty>Friday, August 10, 2012</comparePeriodPretty>
+ <compareSeriesPretty>(August 9 – 16, 2012) (browserCode==ie)</compareSeriesPretty>
+ <idsubdatatable>-1</idsubdatatable>
+ </row>
+ <row>
+ <nb_uniq_visitors_new>0</nb_uniq_visitors_new>
+ <nb_users_new>0</nb_users_new>
+ <nb_visits_new>0</nb_visits_new>
+ <nb_actions_new>0</nb_actions_new>
+ <nb_visits_converted_new>0</nb_visits_converted_new>
+ <bounce_count_new>0</bounce_count_new>
+ <sum_visit_length_new>0</sum_visit_length_new>
+ <max_actions_new>0</max_actions_new>
+ <bounce_rate_new>0%</bounce_rate_new>
+ <nb_actions_per_visit_new>0</nb_actions_per_visit_new>
+ <avg_time_on_site_new>0</avg_time_on_site_new>
+ <nb_uniq_visitors_new_change>-100%</nb_uniq_visitors_new_change>
+ <nb_uniq_visitors_new_change_from>+100%</nb_uniq_visitors_new_change_from>
+ <nb_users_new_change>+0%</nb_users_new_change>
+ <nb_users_new_change_from>+0%</nb_users_new_change_from>
+ <nb_visits_new_change>-100%</nb_visits_new_change>
+ <nb_visits_new_change_from>+100%</nb_visits_new_change_from>
+ <nb_actions_new_change>-100%</nb_actions_new_change>
+ <nb_actions_new_change_from>+100%</nb_actions_new_change_from>
+ <nb_visits_converted_new_change>-100%</nb_visits_converted_new_change>
+ <nb_visits_converted_new_change_from>+100%</nb_visits_converted_new_change_from>
+ <bounce_count_new_change>-100%</bounce_count_new_change>
+ <bounce_count_new_change_from>+100%</bounce_count_new_change_from>
+ <sum_visit_length_new_change>+0%</sum_visit_length_new_change>
+ <sum_visit_length_new_change_from>+0%</sum_visit_length_new_change_from>
+ <max_actions_new_change>-100%</max_actions_new_change>
+ <max_actions_new_change_from>+100%</max_actions_new_change_from>
+ <bounce_rate_new_change>-100%</bounce_rate_new_change>
+ <bounce_rate_new_change_from>+100%</bounce_rate_new_change_from>
+ <nb_actions_per_visit_new_change>-100%</nb_actions_per_visit_new_change>
+ <nb_actions_per_visit_new_change_from>+100%</nb_actions_per_visit_new_change_from>
+ <avg_time_on_site_new_change>+0%</avg_time_on_site_new_change>
+ <avg_time_on_site_new_change_from>+0%</avg_time_on_site_new_change_from>
+ <avg_time_on_site_returning>0</avg_time_on_site_returning>
+ <nb_actions_per_visit_returning>0</nb_actions_per_visit_returning>
+ <bounce_rate_returning>0%</bounce_rate_returning>
+ <compareSegment />
+ <compareSegmentPretty>All visits</compareSegmentPretty>
+ <comparePeriod>day</comparePeriod>
+ <compareDate>2012-08-13</compareDate>
+ <comparePeriodPretty>Monday, August 13, 2012</comparePeriodPretty>
+ <compareSeriesPretty>(August 12 – 15, 2012) (All visits)</compareSeriesPretty>
+ <idsubdatatable>-1</idsubdatatable>
+ </row>
+ <row>
+ <nb_uniq_visitors_new>0</nb_uniq_visitors_new>
+ <nb_users_new>0</nb_users_new>
+ <nb_visits_new>0</nb_visits_new>
+ <nb_actions_new>0</nb_actions_new>
+ <nb_visits_converted_new>0</nb_visits_converted_new>
+ <bounce_count_new>0</bounce_count_new>
+ <sum_visit_length_new>0</sum_visit_length_new>
+ <max_actions_new>0</max_actions_new>
+ <bounce_rate_new>0%</bounce_rate_new>
+ <nb_actions_per_visit_new>0</nb_actions_per_visit_new>
+ <avg_time_on_site_new>0</avg_time_on_site_new>
+ <nb_uniq_visitors_new_change>+0%</nb_uniq_visitors_new_change>
+ <nb_uniq_visitors_new_change_from>+0%</nb_uniq_visitors_new_change_from>
+ <nb_users_new_change>+0%</nb_users_new_change>
+ <nb_users_new_change_from>+0%</nb_users_new_change_from>
+ <nb_visits_new_change>+0%</nb_visits_new_change>
+ <nb_visits_new_change_from>+0%</nb_visits_new_change_from>
+ <nb_actions_new_change>+0%</nb_actions_new_change>
+ <nb_actions_new_change_from>+0%</nb_actions_new_change_from>
+ <nb_visits_converted_new_change>+0%</nb_visits_converted_new_change>
+ <nb_visits_converted_new_change_from>+0%</nb_visits_converted_new_change_from>
+ <bounce_count_new_change>+0%</bounce_count_new_change>
+ <bounce_count_new_change_from>+0%</bounce_count_new_change_from>
+ <sum_visit_length_new_change>+0%</sum_visit_length_new_change>
+ <sum_visit_length_new_change_from>+0%</sum_visit_length_new_change_from>
+ <max_actions_new_change>+0%</max_actions_new_change>
+ <max_actions_new_change_from>+0%</max_actions_new_change_from>
+ <bounce_rate_new_change>+0%</bounce_rate_new_change>
+ <bounce_rate_new_change_from>+0%</bounce_rate_new_change_from>
+ <nb_actions_per_visit_new_change>+0%</nb_actions_per_visit_new_change>
+ <nb_actions_per_visit_new_change_from>+0%</nb_actions_per_visit_new_change_from>
+ <avg_time_on_site_new_change>+0%</avg_time_on_site_new_change>
+ <avg_time_on_site_new_change_from>+0%</avg_time_on_site_new_change_from>
+ <avg_time_on_site_returning>0</avg_time_on_site_returning>
+ <nb_actions_per_visit_returning>0</nb_actions_per_visit_returning>
+ <bounce_rate_returning>0%</bounce_rate_returning>
+ <compareSegment>browserCode%3D%3Dff</compareSegment>
+ <compareSegmentPretty>browserCode==ff</compareSegmentPretty>
+ <comparePeriod>day</comparePeriod>
+ <compareDate>2012-08-13</compareDate>
+ <comparePeriodPretty>Monday, August 13, 2012</comparePeriodPretty>
+ <compareSeriesPretty>(August 12 – 15, 2012) (browserCode==ff)</compareSeriesPretty>
+ <idsubdatatable>-1</idsubdatatable>
+ </row>
+ <row>
+ <nb_uniq_visitors_new>0</nb_uniq_visitors_new>
+ <nb_users_new>0</nb_users_new>
+ <nb_visits_new>0</nb_visits_new>
+ <nb_actions_new>0</nb_actions_new>
+ <nb_visits_converted_new>0</nb_visits_converted_new>
+ <bounce_count_new>0</bounce_count_new>
+ <sum_visit_length_new>0</sum_visit_length_new>
+ <max_actions_new>0</max_actions_new>
+ <bounce_rate_new>0%</bounce_rate_new>
+ <nb_actions_per_visit_new>0</nb_actions_per_visit_new>
+ <avg_time_on_site_new>0</avg_time_on_site_new>
+ <nb_uniq_visitors_new_change>-100%</nb_uniq_visitors_new_change>
+ <nb_uniq_visitors_new_change_from>+100%</nb_uniq_visitors_new_change_from>
+ <nb_users_new_change>+0%</nb_users_new_change>
+ <nb_users_new_change_from>+0%</nb_users_new_change_from>
+ <nb_visits_new_change>-100%</nb_visits_new_change>
+ <nb_visits_new_change_from>+100%</nb_visits_new_change_from>
+ <nb_actions_new_change>-100%</nb_actions_new_change>
+ <nb_actions_new_change_from>+100%</nb_actions_new_change_from>
+ <nb_visits_converted_new_change>-100%</nb_visits_converted_new_change>
+ <nb_visits_converted_new_change_from>+100%</nb_visits_converted_new_change_from>
+ <bounce_count_new_change>-100%</bounce_count_new_change>
+ <bounce_count_new_change_from>+100%</bounce_count_new_change_from>
+ <sum_visit_length_new_change>+0%</sum_visit_length_new_change>
+ <sum_visit_length_new_change_from>+0%</sum_visit_length_new_change_from>
+ <max_actions_new_change>-100%</max_actions_new_change>
+ <max_actions_new_change_from>+100%</max_actions_new_change_from>
+ <bounce_rate_new_change>-100%</bounce_rate_new_change>
+ <bounce_rate_new_change_from>+100%</bounce_rate_new_change_from>
+ <nb_actions_per_visit_new_change>-100%</nb_actions_per_visit_new_change>
+ <nb_actions_per_visit_new_change_from>+100%</nb_actions_per_visit_new_change_from>
+ <avg_time_on_site_new_change>+0%</avg_time_on_site_new_change>
+ <avg_time_on_site_new_change_from>+0%</avg_time_on_site_new_change_from>
+ <avg_time_on_site_returning>0</avg_time_on_site_returning>
+ <nb_actions_per_visit_returning>0</nb_actions_per_visit_returning>
+ <bounce_rate_returning>0%</bounce_rate_returning>
+ <compareSegment>browserCode%3D%3Die</compareSegment>
+ <compareSegmentPretty>browserCode==ie</compareSegmentPretty>
+ <comparePeriod>day</comparePeriod>
+ <compareDate>2012-08-13</compareDate>
+ <comparePeriodPretty>Monday, August 13, 2012</comparePeriodPretty>
+ <compareSeriesPretty>(August 12 – 15, 2012) (browserCode==ie)</compareSeriesPretty>
+ <idsubdatatable>-1</idsubdatatable>
+ </row>
+ </comparisons>
+ </result>
+ <result period="2012-08-11">
+ <nb_uniq_visitors_new>11</nb_uniq_visitors_new>
+ <nb_users_new>1</nb_users_new>
+ <nb_visits_new>11</nb_visits_new>
+ <nb_actions_new>14</nb_actions_new>
+ <nb_visits_converted_new>9</nb_visits_converted_new>
+ <bounce_count_new>9</bounce_count_new>
+ <sum_visit_length_new>305</sum_visit_length_new>
+ <max_actions_new>3</max_actions_new>
+ <bounce_rate_new>82%</bounce_rate_new>
+ <nb_actions_per_visit_new>1.3</nb_actions_per_visit_new>
+ <avg_time_on_site_new>28</avg_time_on_site_new>
+ <comparisons>
+ <row>
+ <nb_uniq_visitors_new>11</nb_uniq_visitors_new>
+ <nb_users_new>1</nb_users_new>
+ <nb_visits_new>11</nb_visits_new>
+ <nb_actions_new>14</nb_actions_new>
+ <nb_visits_converted_new>9</nb_visits_converted_new>
+ <bounce_count_new>9</bounce_count_new>
+ <sum_visit_length_new>305</sum_visit_length_new>
+ <max_actions_new>3</max_actions_new>
+ <bounce_rate_new>82%</bounce_rate_new>
+ <nb_actions_per_visit_new>1.3</nb_actions_per_visit_new>
+ <avg_time_on_site_new>28</avg_time_on_site_new>
+ <avg_time_on_site_returning>0</avg_time_on_site_returning>
+ <nb_actions_per_visit_returning>0</nb_actions_per_visit_returning>
+ <bounce_rate_returning>0%</bounce_rate_returning>
+ <compareSegment />
+ <compareSegmentPretty>All visits</compareSegmentPretty>
+ <comparePeriod>day</comparePeriod>
+ <compareDate>2012-08-11</compareDate>
+ <comparePeriodPretty>Saturday, August 11, 2012</comparePeriodPretty>
+ <compareSeriesPretty>(August 9 – 16, 2012) (All visits)</compareSeriesPretty>
+ <idsubdatatable>-1</idsubdatatable>
+ </row>
+ <row>
+ <nb_uniq_visitors_new>0</nb_uniq_visitors_new>
+ <nb_users_new>0</nb_users_new>
+ <nb_visits_new>0</nb_visits_new>
+ <nb_actions_new>0</nb_actions_new>
+ <nb_visits_converted_new>0</nb_visits_converted_new>
+ <bounce_count_new>0</bounce_count_new>
+ <sum_visit_length_new>0</sum_visit_length_new>
+ <max_actions_new>0</max_actions_new>
+ <bounce_rate_new>0%</bounce_rate_new>
+ <nb_actions_per_visit_new>0</nb_actions_per_visit_new>
+ <avg_time_on_site_new>0</avg_time_on_site_new>
+ <avg_time_on_site_returning>0</avg_time_on_site_returning>
+ <nb_actions_per_visit_returning>0</nb_actions_per_visit_returning>
+ <bounce_rate_returning>0%</bounce_rate_returning>
+ <compareSegment>browserCode%3D%3Dff</compareSegment>
+ <compareSegmentPretty>browserCode==ff</compareSegmentPretty>
+ <comparePeriod>day</comparePeriod>
+ <compareDate>2012-08-11</compareDate>
+ <comparePeriodPretty>Saturday, August 11, 2012</comparePeriodPretty>
+ <compareSeriesPretty>(August 9 – 16, 2012) (browserCode==ff)</compareSeriesPretty>
+ <idsubdatatable>-1</idsubdatatable>
+ </row>
+ <row>
+ <nb_uniq_visitors_new>1</nb_uniq_visitors_new>
+ <nb_users_new>0</nb_users_new>
+ <nb_visits_new>1</nb_visits_new>
+ <nb_actions_new>1</nb_actions_new>
+ <nb_visits_converted_new>1</nb_visits_converted_new>
+ <bounce_count_new>1</bounce_count_new>
+ <sum_visit_length_new>0</sum_visit_length_new>
+ <max_actions_new>1</max_actions_new>
+ <bounce_rate_new>100%</bounce_rate_new>
+ <nb_actions_per_visit_new>1</nb_actions_per_visit_new>
+ <avg_time_on_site_new>0</avg_time_on_site_new>
+ <avg_time_on_site_returning>0</avg_time_on_site_returning>
+ <nb_actions_per_visit_returning>0</nb_actions_per_visit_returning>
+ <bounce_rate_returning>0%</bounce_rate_returning>
+ <compareSegment>browserCode%3D%3Die</compareSegment>
+ <compareSegmentPretty>browserCode==ie</compareSegmentPretty>
+ <comparePeriod>day</comparePeriod>
+ <compareDate>2012-08-11</compareDate>
+ <comparePeriodPretty>Saturday, August 11, 2012</comparePeriodPretty>
+ <compareSeriesPretty>(August 9 – 16, 2012) (browserCode==ie)</compareSeriesPretty>
+ <idsubdatatable>-1</idsubdatatable>
+ </row>
+ <row>
+ <nb_uniq_visitors_new>11</nb_uniq_visitors_new>
+ <nb_users_new>1</nb_users_new>
+ <nb_visits_new>11</nb_visits_new>
+ <nb_actions_new>14</nb_actions_new>
+ <nb_visits_converted_new>9</nb_visits_converted_new>
+ <bounce_count_new>9</bounce_count_new>
+ <sum_visit_length_new>305</sum_visit_length_new>
+ <max_actions_new>3</max_actions_new>
+ <bounce_rate_new>82%</bounce_rate_new>
+ <nb_actions_per_visit_new>1.3</nb_actions_per_visit_new>
+ <avg_time_on_site_new>28</avg_time_on_site_new>
+ <nb_uniq_visitors_new_change>+0%</nb_uniq_visitors_new_change>
+ <nb_uniq_visitors_new_change_from>+0%</nb_uniq_visitors_new_change_from>
+ <nb_users_new_change>+0%</nb_users_new_change>
+ <nb_users_new_change_from>+0%</nb_users_new_change_from>
+ <nb_visits_new_change>+0%</nb_visits_new_change>
+ <nb_visits_new_change_from>+0%</nb_visits_new_change_from>
+ <nb_actions_new_change>+0%</nb_actions_new_change>
+ <nb_actions_new_change_from>+0%</nb_actions_new_change_from>
+ <nb_visits_converted_new_change>+0%</nb_visits_converted_new_change>
+ <nb_visits_converted_new_change_from>+0%</nb_visits_converted_new_change_from>
+ <bounce_count_new_change>+0%</bounce_count_new_change>
+ <bounce_count_new_change_from>+0%</bounce_count_new_change_from>
+ <sum_visit_length_new_change>+0%</sum_visit_length_new_change>
+ <sum_visit_length_new_change_from>+0%</sum_visit_length_new_change_from>
+ <max_actions_new_change>+0%</max_actions_new_change>
+ <max_actions_new_change_from>+0%</max_actions_new_change_from>
+ <bounce_rate_new_change>+0%</bounce_rate_new_change>
+ <bounce_rate_new_change_from>+0%</bounce_rate_new_change_from>
+ <nb_actions_per_visit_new_change>+0%</nb_actions_per_visit_new_change>
+ <nb_actions_per_visit_new_change_from>+0%</nb_actions_per_visit_new_change_from>
+ <avg_time_on_site_new_change>+0%</avg_time_on_site_new_change>
+ <avg_time_on_site_new_change_from>+0%</avg_time_on_site_new_change_from>
+ <avg_time_on_site_returning>0</avg_time_on_site_returning>
+ <nb_actions_per_visit_returning>0</nb_actions_per_visit_returning>
+ <bounce_rate_returning>0%</bounce_rate_returning>
+ <compareSegment />
+ <compareSegmentPretty>All visits</compareSegmentPretty>
+ <comparePeriod>day</comparePeriod>
+ <compareDate>2012-08-11</compareDate>
+ <comparePeriodPretty>Saturday, August 11, 2012</comparePeriodPretty>
+ <compareSeriesPretty>(August 9 – 16, 2012) (All visits)</compareSeriesPretty>
+ <idsubdatatable>-1</idsubdatatable>
+ </row>
+ <row>
+ <nb_uniq_visitors_new>0</nb_uniq_visitors_new>
+ <nb_users_new>0</nb_users_new>
+ <nb_visits_new>0</nb_visits_new>
+ <nb_actions_new>0</nb_actions_new>
+ <nb_visits_converted_new>0</nb_visits_converted_new>
+ <bounce_count_new>0</bounce_count_new>
+ <sum_visit_length_new>0</sum_visit_length_new>
+ <max_actions_new>0</max_actions_new>
+ <bounce_rate_new>0%</bounce_rate_new>
+ <nb_actions_per_visit_new>0</nb_actions_per_visit_new>
+ <avg_time_on_site_new>0</avg_time_on_site_new>
+ <nb_uniq_visitors_new_change>+0%</nb_uniq_visitors_new_change>
+ <nb_uniq_visitors_new_change_from>+0%</nb_uniq_visitors_new_change_from>
+ <nb_users_new_change>+0%</nb_users_new_change>
+ <nb_users_new_change_from>+0%</nb_users_new_change_from>
+ <nb_visits_new_change>+0%</nb_visits_new_change>
+ <nb_visits_new_change_from>+0%</nb_visits_new_change_from>
+ <nb_actions_new_change>+0%</nb_actions_new_change>
+ <nb_actions_new_change_from>+0%</nb_actions_new_change_from>
+ <nb_visits_converted_new_change>+0%</nb_visits_converted_new_change>
+ <nb_visits_converted_new_change_from>+0%</nb_visits_converted_new_change_from>
+ <bounce_count_new_change>+0%</bounce_count_new_change>
+ <bounce_count_new_change_from>+0%</bounce_count_new_change_from>
+ <sum_visit_length_new_change>+0%</sum_visit_length_new_change>
+ <sum_visit_length_new_change_from>+0%</sum_visit_length_new_change_from>
+ <max_actions_new_change>+0%</max_actions_new_change>
+ <max_actions_new_change_from>+0%</max_actions_new_change_from>
+ <bounce_rate_new_change>+0%</bounce_rate_new_change>
+ <bounce_rate_new_change_from>+0%</bounce_rate_new_change_from>
+ <nb_actions_per_visit_new_change>+0%</nb_actions_per_visit_new_change>
+ <nb_actions_per_visit_new_change_from>+0%</nb_actions_per_visit_new_change_from>
+ <avg_time_on_site_new_change>+0%</avg_time_on_site_new_change>
+ <avg_time_on_site_new_change_from>+0%</avg_time_on_site_new_change_from>
+ <avg_time_on_site_returning>0</avg_time_on_site_returning>
+ <nb_actions_per_visit_returning>0</nb_actions_per_visit_returning>
+ <bounce_rate_returning>0%</bounce_rate_returning>
+ <compareSegment>browserCode%3D%3Dff</compareSegment>
+ <compareSegmentPretty>browserCode==ff</compareSegmentPretty>
+ <comparePeriod>day</comparePeriod>
+ <compareDate>2012-08-11</compareDate>
+ <comparePeriodPretty>Saturday, August 11, 2012</comparePeriodPretty>
+ <compareSeriesPretty>(August 9 – 16, 2012) (browserCode==ff)</compareSeriesPretty>
+ <idsubdatatable>-1</idsubdatatable>
+ </row>
+ <row>
+ <nb_uniq_visitors_new>1</nb_uniq_visitors_new>
+ <nb_users_new>0</nb_users_new>
+ <nb_visits_new>1</nb_visits_new>
+ <nb_actions_new>1</nb_actions_new>
+ <nb_visits_converted_new>1</nb_visits_converted_new>
+ <bounce_count_new>1</bounce_count_new>
+ <sum_visit_length_new>0</sum_visit_length_new>
+ <max_actions_new>1</max_actions_new>
+ <bounce_rate_new>100%</bounce_rate_new>
+ <nb_actions_per_visit_new>1</nb_actions_per_visit_new>
+ <avg_time_on_site_new>0</avg_time_on_site_new>
+ <nb_uniq_visitors_new_change>+0%</nb_uniq_visitors_new_change>
+ <nb_uniq_visitors_new_change_from>+0%</nb_uniq_visitors_new_change_from>
+ <nb_users_new_change>+0%</nb_users_new_change>
+ <nb_users_new_change_from>+0%</nb_users_new_change_from>
+ <nb_visits_new_change>+0%</nb_visits_new_change>
+ <nb_visits_new_change_from>+0%</nb_visits_new_change_from>
+ <nb_actions_new_change>+0%</nb_actions_new_change>
+ <nb_actions_new_change_from>+0%</nb_actions_new_change_from>
+ <nb_visits_converted_new_change>+0%</nb_visits_converted_new_change>
+ <nb_visits_converted_new_change_from>+0%</nb_visits_converted_new_change_from>
+ <bounce_count_new_change>+0%</bounce_count_new_change>
+ <bounce_count_new_change_from>+0%</bounce_count_new_change_from>
+ <sum_visit_length_new_change>+0%</sum_visit_length_new_change>
+ <sum_visit_length_new_change_from>+0%</sum_visit_length_new_change_from>
+ <max_actions_new_change>+0%</max_actions_new_change>
+ <max_actions_new_change_from>+0%</max_actions_new_change_from>
+ <bounce_rate_new_change>+0%</bounce_rate_new_change>
+ <bounce_rate_new_change_from>+0%</bounce_rate_new_change_from>
+ <nb_actions_per_visit_new_change>+0%</nb_actions_per_visit_new_change>
+ <nb_actions_per_visit_new_change_from>+0%</nb_actions_per_visit_new_change_from>
+ <avg_time_on_site_new_change>+0%</avg_time_on_site_new_change>
+ <avg_time_on_site_new_change_from>+0%</avg_time_on_site_new_change_from>
+ <avg_time_on_site_returning>0</avg_time_on_site_returning>
+ <nb_actions_per_visit_returning>0</nb_actions_per_visit_returning>
+ <bounce_rate_returning>0%</bounce_rate_returning>
+ <compareSegment>browserCode%3D%3Die</compareSegment>
+ <compareSegmentPretty>browserCode==ie</compareSegmentPretty>
+ <comparePeriod>day</comparePeriod>
+ <compareDate>2012-08-11</compareDate>
+ <comparePeriodPretty>Saturday, August 11, 2012</comparePeriodPretty>
+ <compareSeriesPretty>(August 9 – 16, 2012) (browserCode==ie)</compareSeriesPretty>
+ <idsubdatatable>-1</idsubdatatable>
+ </row>
+ <row>
+ <nb_uniq_visitors_new>0</nb_uniq_visitors_new>
+ <nb_users_new>0</nb_users_new>
+ <nb_visits_new>0</nb_visits_new>
+ <nb_actions_new>0</nb_actions_new>
+ <nb_visits_converted_new>0</nb_visits_converted_new>
+ <bounce_count_new>0</bounce_count_new>
+ <sum_visit_length_new>0</sum_visit_length_new>
+ <max_actions_new>0</max_actions_new>
+ <bounce_rate_new>0%</bounce_rate_new>
+ <nb_actions_per_visit_new>0</nb_actions_per_visit_new>
+ <avg_time_on_site_new>0</avg_time_on_site_new>
+ <nb_uniq_visitors_new_change>-100%</nb_uniq_visitors_new_change>
+ <nb_uniq_visitors_new_change_from>+100%</nb_uniq_visitors_new_change_from>
+ <nb_users_new_change>-100%</nb_users_new_change>
+ <nb_users_new_change_from>+100%</nb_users_new_change_from>
+ <nb_visits_new_change>-100%</nb_visits_new_change>
+ <nb_visits_new_change_from>+100%</nb_visits_new_change_from>
+ <nb_actions_new_change>-100%</nb_actions_new_change>
+ <nb_actions_new_change_from>+100%</nb_actions_new_change_from>
+ <nb_visits_converted_new_change>-100%</nb_visits_converted_new_change>
+ <nb_visits_converted_new_change_from>+100%</nb_visits_converted_new_change_from>
+ <bounce_count_new_change>-100%</bounce_count_new_change>
+ <bounce_count_new_change_from>+100%</bounce_count_new_change_from>
+ <sum_visit_length_new_change>-100%</sum_visit_length_new_change>
+ <sum_visit_length_new_change_from>+100%</sum_visit_length_new_change_from>
+ <max_actions_new_change>-100%</max_actions_new_change>
+ <max_actions_new_change_from>+100%</max_actions_new_change_from>
+ <bounce_rate_new_change>-100%</bounce_rate_new_change>
+ <bounce_rate_new_change_from>+100%</bounce_rate_new_change_from>
+ <nb_actions_per_visit_new_change>-100%</nb_actions_per_visit_new_change>
+ <nb_actions_per_visit_new_change_from>+100%</nb_actions_per_visit_new_change_from>
+ <avg_time_on_site_new_change>-100%</avg_time_on_site_new_change>
+ <avg_time_on_site_new_change_from>+100%</avg_time_on_site_new_change_from>
+ <avg_time_on_site_returning>0</avg_time_on_site_returning>
+ <nb_actions_per_visit_returning>0</nb_actions_per_visit_returning>
+ <bounce_rate_returning>0%</bounce_rate_returning>
+ <compareSegment />
+ <compareSegmentPretty>All visits</compareSegmentPretty>
+ <comparePeriod>day</comparePeriod>
+ <compareDate>2012-08-14</compareDate>
+ <comparePeriodPretty>Tuesday, August 14, 2012</comparePeriodPretty>
+ <compareSeriesPretty>(August 12 – 15, 2012) (All visits)</compareSeriesPretty>
+ <idsubdatatable>-1</idsubdatatable>
+ </row>
+ <row>
+ <nb_uniq_visitors_new>0</nb_uniq_visitors_new>
+ <nb_users_new>0</nb_users_new>
+ <nb_visits_new>0</nb_visits_new>
+ <nb_actions_new>0</nb_actions_new>
+ <nb_visits_converted_new>0</nb_visits_converted_new>
+ <bounce_count_new>0</bounce_count_new>
+ <sum_visit_length_new>0</sum_visit_length_new>
+ <max_actions_new>0</max_actions_new>
+ <bounce_rate_new>0%</bounce_rate_new>
+ <nb_actions_per_visit_new>0</nb_actions_per_visit_new>
+ <avg_time_on_site_new>0</avg_time_on_site_new>
+ <nb_uniq_visitors_new_change>+0%</nb_uniq_visitors_new_change>
+ <nb_uniq_visitors_new_change_from>+0%</nb_uniq_visitors_new_change_from>
+ <nb_users_new_change>+0%</nb_users_new_change>
+ <nb_users_new_change_from>+0%</nb_users_new_change_from>
+ <nb_visits_new_change>+0%</nb_visits_new_change>
+ <nb_visits_new_change_from>+0%</nb_visits_new_change_from>
+ <nb_actions_new_change>+0%</nb_actions_new_change>
+ <nb_actions_new_change_from>+0%</nb_actions_new_change_from>
+ <nb_visits_converted_new_change>+0%</nb_visits_converted_new_change>
+ <nb_visits_converted_new_change_from>+0%</nb_visits_converted_new_change_from>
+ <bounce_count_new_change>+0%</bounce_count_new_change>
+ <bounce_count_new_change_from>+0%</bounce_count_new_change_from>
+ <sum_visit_length_new_change>+0%</sum_visit_length_new_change>
+ <sum_visit_length_new_change_from>+0%</sum_visit_length_new_change_from>
+ <max_actions_new_change>+0%</max_actions_new_change>
+ <max_actions_new_change_from>+0%</max_actions_new_change_from>
+ <bounce_rate_new_change>+0%</bounce_rate_new_change>
+ <bounce_rate_new_change_from>+0%</bounce_rate_new_change_from>
+ <nb_actions_per_visit_new_change>+0%</nb_actions_per_visit_new_change>
+ <nb_actions_per_visit_new_change_from>+0%</nb_actions_per_visit_new_change_from>
+ <avg_time_on_site_new_change>+0%</avg_time_on_site_new_change>
+ <avg_time_on_site_new_change_from>+0%</avg_time_on_site_new_change_from>
+ <avg_time_on_site_returning>0</avg_time_on_site_returning>
+ <nb_actions_per_visit_returning>0</nb_actions_per_visit_returning>
+ <bounce_rate_returning>0%</bounce_rate_returning>
+ <compareSegment>browserCode%3D%3Dff</compareSegment>
+ <compareSegmentPretty>browserCode==ff</compareSegmentPretty>
+ <comparePeriod>day</comparePeriod>
+ <compareDate>2012-08-14</compareDate>
+ <comparePeriodPretty>Tuesday, August 14, 2012</comparePeriodPretty>
+ <compareSeriesPretty>(August 12 – 15, 2012) (browserCode==ff)</compareSeriesPretty>
+ <idsubdatatable>-1</idsubdatatable>
+ </row>
+ <row>
+ <nb_uniq_visitors_new>0</nb_uniq_visitors_new>
+ <nb_users_new>0</nb_users_new>
+ <nb_visits_new>0</nb_visits_new>
+ <nb_actions_new>0</nb_actions_new>
+ <nb_visits_converted_new>0</nb_visits_converted_new>
+ <bounce_count_new>0</bounce_count_new>
+ <sum_visit_length_new>0</sum_visit_length_new>
+ <max_actions_new>0</max_actions_new>
+ <bounce_rate_new>0%</bounce_rate_new>
+ <nb_actions_per_visit_new>0</nb_actions_per_visit_new>
+ <avg_time_on_site_new>0</avg_time_on_site_new>
+ <nb_uniq_visitors_new_change>-100%</nb_uniq_visitors_new_change>
+ <nb_uniq_visitors_new_change_from>+100%</nb_uniq_visitors_new_change_from>
+ <nb_users_new_change>+0%</nb_users_new_change>
+ <nb_users_new_change_from>+0%</nb_users_new_change_from>
+ <nb_visits_new_change>-100%</nb_visits_new_change>
+ <nb_visits_new_change_from>+100%</nb_visits_new_change_from>
+ <nb_actions_new_change>-100%</nb_actions_new_change>
+ <nb_actions_new_change_from>+100%</nb_actions_new_change_from>
+ <nb_visits_converted_new_change>-100%</nb_visits_converted_new_change>
+ <nb_visits_converted_new_change_from>+100%</nb_visits_converted_new_change_from>
+ <bounce_count_new_change>-100%</bounce_count_new_change>
+ <bounce_count_new_change_from>+100%</bounce_count_new_change_from>
+ <sum_visit_length_new_change>+0%</sum_visit_length_new_change>
+ <sum_visit_length_new_change_from>+0%</sum_visit_length_new_change_from>
+ <max_actions_new_change>-100%</max_actions_new_change>
+ <max_actions_new_change_from>+100%</max_actions_new_change_from>
+ <bounce_rate_new_change>-100%</bounce_rate_new_change>
+ <bounce_rate_new_change_from>+100%</bounce_rate_new_change_from>
+ <nb_actions_per_visit_new_change>-100%</nb_actions_per_visit_new_change>
+ <nb_actions_per_visit_new_change_from>+100%</nb_actions_per_visit_new_change_from>
+ <avg_time_on_site_new_change>+0%</avg_time_on_site_new_change>
+ <avg_time_on_site_new_change_from>+0%</avg_time_on_site_new_change_from>
+ <avg_time_on_site_returning>0</avg_time_on_site_returning>
+ <nb_actions_per_visit_returning>0</nb_actions_per_visit_returning>
+ <bounce_rate_returning>0%</bounce_rate_returning>
+ <compareSegment>browserCode%3D%3Die</compareSegment>
+ <compareSegmentPretty>browserCode==ie</compareSegmentPretty>
+ <comparePeriod>day</comparePeriod>
+ <compareDate>2012-08-14</compareDate>
+ <comparePeriodPretty>Tuesday, August 14, 2012</comparePeriodPretty>
+ <compareSeriesPretty>(August 12 – 15, 2012) (browserCode==ie)</compareSeriesPretty>
+ <idsubdatatable>-1</idsubdatatable>
+ </row>
+ </comparisons>
+ </result>
+ <result period="2012-08-12">
+ <comparisons>
+ <row>
+ <avg_time_on_site_returning>0</avg_time_on_site_returning>
+ <nb_actions_per_visit_returning>0</nb_actions_per_visit_returning>
+ <bounce_rate_returning>0%</bounce_rate_returning>
+ <avg_time_on_site_new>0</avg_time_on_site_new>
+ <nb_actions_per_visit_new>0</nb_actions_per_visit_new>
+ <bounce_rate_new>0%</bounce_rate_new>
+ <compareSegment />
+ <compareSegmentPretty>All visits</compareSegmentPretty>
+ <comparePeriod>day</comparePeriod>
+ <compareDate>2012-08-12</compareDate>
+ <comparePeriodPretty>Sunday, August 12, 2012</comparePeriodPretty>
+ <compareSeriesPretty>(August 9 – 16, 2012) (All visits)</compareSeriesPretty>
+ <idsubdatatable>-1</idsubdatatable>
+ </row>
+ <row>
+ <avg_time_on_site_returning>0</avg_time_on_site_returning>
+ <nb_actions_per_visit_returning>0</nb_actions_per_visit_returning>
+ <bounce_rate_returning>0%</bounce_rate_returning>
+ <avg_time_on_site_new>0</avg_time_on_site_new>
+ <nb_actions_per_visit_new>0</nb_actions_per_visit_new>
+ <bounce_rate_new>0%</bounce_rate_new>
+ <compareSegment>browserCode%3D%3Dff</compareSegment>
+ <compareSegmentPretty>browserCode==ff</compareSegmentPretty>
+ <comparePeriod>day</comparePeriod>
+ <compareDate>2012-08-12</compareDate>
+ <comparePeriodPretty>Sunday, August 12, 2012</comparePeriodPretty>
+ <compareSeriesPretty>(August 9 – 16, 2012) (browserCode==ff)</compareSeriesPretty>
+ <idsubdatatable>-1</idsubdatatable>
+ </row>
+ <row>
+ <avg_time_on_site_returning>0</avg_time_on_site_returning>
+ <nb_actions_per_visit_returning>0</nb_actions_per_visit_returning>
+ <bounce_rate_returning>0%</bounce_rate_returning>
+ <avg_time_on_site_new>0</avg_time_on_site_new>
+ <nb_actions_per_visit_new>0</nb_actions_per_visit_new>
+ <bounce_rate_new>0%</bounce_rate_new>
+ <compareSegment>browserCode%3D%3Die</compareSegment>
+ <compareSegmentPretty>browserCode==ie</compareSegmentPretty>
+ <comparePeriod>day</comparePeriod>
+ <compareDate>2012-08-12</compareDate>
+ <comparePeriodPretty>Sunday, August 12, 2012</comparePeriodPretty>
+ <compareSeriesPretty>(August 9 – 16, 2012) (browserCode==ie)</compareSeriesPretty>
+ <idsubdatatable>-1</idsubdatatable>
+ </row>
+ <row>
+ <avg_time_on_site_returning>0</avg_time_on_site_returning>
+ <nb_actions_per_visit_returning>0</nb_actions_per_visit_returning>
+ <bounce_rate_returning>0%</bounce_rate_returning>
+ <avg_time_on_site_new>0</avg_time_on_site_new>
+ <nb_actions_per_visit_new>0</nb_actions_per_visit_new>
+ <bounce_rate_new>0%</bounce_rate_new>
+ <compareSegment />
+ <compareSegmentPretty>All visits</compareSegmentPretty>
+ <comparePeriod>day</comparePeriod>
+ <compareDate>2012-08-12</compareDate>
+ <comparePeriodPretty>Sunday, August 12, 2012</comparePeriodPretty>
+ <compareSeriesPretty>(August 9 – 16, 2012) (All visits)</compareSeriesPretty>
+ <idsubdatatable>-1</idsubdatatable>
+ </row>
+ <row>
+ <avg_time_on_site_returning>0</avg_time_on_site_returning>
+ <nb_actions_per_visit_returning>0</nb_actions_per_visit_returning>
+ <bounce_rate_returning>0%</bounce_rate_returning>
+ <avg_time_on_site_new>0</avg_time_on_site_new>
+ <nb_actions_per_visit_new>0</nb_actions_per_visit_new>
+ <bounce_rate_new>0%</bounce_rate_new>
+ <compareSegment>browserCode%3D%3Dff</compareSegment>
+ <compareSegmentPretty>browserCode==ff</compareSegmentPretty>
+ <comparePeriod>day</comparePeriod>
+ <compareDate>2012-08-12</compareDate>
+ <comparePeriodPretty>Sunday, August 12, 2012</comparePeriodPretty>
+ <compareSeriesPretty>(August 9 – 16, 2012) (browserCode==ff)</compareSeriesPretty>
+ <idsubdatatable>-1</idsubdatatable>
+ </row>
+ <row>
+ <avg_time_on_site_returning>0</avg_time_on_site_returning>
+ <nb_actions_per_visit_returning>0</nb_actions_per_visit_returning>
+ <bounce_rate_returning>0%</bounce_rate_returning>
+ <avg_time_on_site_new>0</avg_time_on_site_new>
+ <nb_actions_per_visit_new>0</nb_actions_per_visit_new>
+ <bounce_rate_new>0%</bounce_rate_new>
+ <compareSegment>browserCode%3D%3Die</compareSegment>
+ <compareSegmentPretty>browserCode==ie</compareSegmentPretty>
+ <comparePeriod>day</comparePeriod>
+ <compareDate>2012-08-12</compareDate>
+ <comparePeriodPretty>Sunday, August 12, 2012</comparePeriodPretty>
+ <compareSeriesPretty>(August 9 – 16, 2012) (browserCode==ie)</compareSeriesPretty>
+ <idsubdatatable>-1</idsubdatatable>
+ </row>
+ <row>
+ <nb_uniq_visitors_new>1</nb_uniq_visitors_new>
+ <nb_users_new>0</nb_users_new>
+ <nb_visits_new>1</nb_visits_new>
+ <nb_actions_new>1</nb_actions_new>
+ <nb_visits_converted_new>1</nb_visits_converted_new>
+ <bounce_count_new>1</bounce_count_new>
+ <sum_visit_length_new>0</sum_visit_length_new>
+ <max_actions_new>1</max_actions_new>
+ <bounce_rate_new>100%</bounce_rate_new>
+ <nb_actions_per_visit_new>1</nb_actions_per_visit_new>
+ <avg_time_on_site_new>0</avg_time_on_site_new>
+ <nb_uniq_visitors_returning>1</nb_uniq_visitors_returning>
+ <nb_users_returning>0</nb_users_returning>
+ <nb_visits_returning>1</nb_visits_returning>
+ <nb_actions_returning>1</nb_actions_returning>
+ <nb_visits_converted_returning>1</nb_visits_converted_returning>
+ <bounce_count_returning>1</bounce_count_returning>
+ <sum_visit_length_returning>0</sum_visit_length_returning>
+ <max_actions_returning>1</max_actions_returning>
+ <bounce_rate_returning>100%</bounce_rate_returning>
+ <nb_actions_per_visit_returning>1</nb_actions_per_visit_returning>
+ <avg_time_on_site_returning>0</avg_time_on_site_returning>
+ <nb_uniq_visitors_new_change>+100%</nb_uniq_visitors_new_change>
+ <nb_uniq_visitors_new_change_from>-100%</nb_uniq_visitors_new_change_from>
+ <nb_users_new_change>+0%</nb_users_new_change>
+ <nb_users_new_change_from>+0%</nb_users_new_change_from>
+ <nb_visits_new_change>+100%</nb_visits_new_change>
+ <nb_visits_new_change_from>-100%</nb_visits_new_change_from>
+ <nb_actions_new_change>+100%</nb_actions_new_change>
+ <nb_actions_new_change_from>-100%</nb_actions_new_change_from>
+ <nb_visits_converted_new_change>+100%</nb_visits_converted_new_change>
+ <nb_visits_converted_new_change_from>-100%</nb_visits_converted_new_change_from>
+ <bounce_count_new_change>+100%</bounce_count_new_change>
+ <bounce_count_new_change_from>-100%</bounce_count_new_change_from>
+ <sum_visit_length_new_change>+0%</sum_visit_length_new_change>
+ <sum_visit_length_new_change_from>+0%</sum_visit_length_new_change_from>
+ <max_actions_new_change>+100%</max_actions_new_change>
+ <max_actions_new_change_from>-100%</max_actions_new_change_from>
+ <bounce_rate_new_change>+100%</bounce_rate_new_change>
+ <bounce_rate_new_change_from>-100%</bounce_rate_new_change_from>
+ <nb_actions_per_visit_new_change>+100%</nb_actions_per_visit_new_change>
+ <nb_actions_per_visit_new_change_from>-100%</nb_actions_per_visit_new_change_from>
+ <avg_time_on_site_new_change>+0%</avg_time_on_site_new_change>
+ <avg_time_on_site_new_change_from>+0%</avg_time_on_site_new_change_from>
+ <nb_uniq_visitors_returning_change>+100%</nb_uniq_visitors_returning_change>
+ <nb_uniq_visitors_returning_change_from>-100%</nb_uniq_visitors_returning_change_from>
+ <nb_users_returning_change>+0%</nb_users_returning_change>
+ <nb_users_returning_change_from>+0%</nb_users_returning_change_from>
+ <nb_visits_returning_change>+100%</nb_visits_returning_change>
+ <nb_visits_returning_change_from>-100%</nb_visits_returning_change_from>
+ <nb_actions_returning_change>+100%</nb_actions_returning_change>
+ <nb_actions_returning_change_from>-100%</nb_actions_returning_change_from>
+ <nb_visits_converted_returning_change>+100%</nb_visits_converted_returning_change>
+ <nb_visits_converted_returning_change_from>-100%</nb_visits_converted_returning_change_from>
+ <bounce_count_returning_change>+100%</bounce_count_returning_change>
+ <bounce_count_returning_change_from>-100%</bounce_count_returning_change_from>
+ <sum_visit_length_returning_change>+0%</sum_visit_length_returning_change>
+ <sum_visit_length_returning_change_from>+0%</sum_visit_length_returning_change_from>
+ <max_actions_returning_change>+100%</max_actions_returning_change>
+ <max_actions_returning_change_from>-100%</max_actions_returning_change_from>
+ <bounce_rate_returning_change>+100%</bounce_rate_returning_change>
+ <bounce_rate_returning_change_from>-100%</bounce_rate_returning_change_from>
+ <nb_actions_per_visit_returning_change>+100%</nb_actions_per_visit_returning_change>
+ <nb_actions_per_visit_returning_change_from>-100%</nb_actions_per_visit_returning_change_from>
+ <avg_time_on_site_returning_change>+0%</avg_time_on_site_returning_change>
+ <avg_time_on_site_returning_change_from>+0%</avg_time_on_site_returning_change_from>
+ <compareSegment />
+ <compareSegmentPretty>All visits</compareSegmentPretty>
+ <comparePeriod>day</comparePeriod>
+ <compareDate>2012-08-15</compareDate>
+ <comparePeriodPretty>Wednesday, August 15, 2012</comparePeriodPretty>
+ <compareSeriesPretty>(August 12 – 15, 2012) (All visits)</compareSeriesPretty>
+ <idsubdatatable>-1</idsubdatatable>
+ </row>
+ <row>
+ <avg_time_on_site_returning>0</avg_time_on_site_returning>
+ <nb_actions_per_visit_returning>0</nb_actions_per_visit_returning>
+ <bounce_rate_returning>0%</bounce_rate_returning>
+ <avg_time_on_site_new>0</avg_time_on_site_new>
+ <nb_actions_per_visit_new>0</nb_actions_per_visit_new>
+ <bounce_rate_new>0%</bounce_rate_new>
+ <compareSegment>browserCode%3D%3Dff</compareSegment>
+ <compareSegmentPretty>browserCode==ff</compareSegmentPretty>
+ <comparePeriod>day</comparePeriod>
+ <compareDate>2012-08-15</compareDate>
+ <comparePeriodPretty>Wednesday, August 15, 2012</comparePeriodPretty>
+ <compareSeriesPretty>(August 12 – 15, 2012) (browserCode==ff)</compareSeriesPretty>
+ <idsubdatatable>-1</idsubdatatable>
+ </row>
+ <row>
+ <nb_uniq_visitors_new>1</nb_uniq_visitors_new>
+ <nb_users_new>0</nb_users_new>
+ <nb_visits_new>1</nb_visits_new>
+ <nb_actions_new>1</nb_actions_new>
+ <nb_visits_converted_new>1</nb_visits_converted_new>
+ <bounce_count_new>1</bounce_count_new>
+ <sum_visit_length_new>0</sum_visit_length_new>
+ <max_actions_new>1</max_actions_new>
+ <bounce_rate_new>100%</bounce_rate_new>
+ <nb_actions_per_visit_new>1</nb_actions_per_visit_new>
+ <avg_time_on_site_new>0</avg_time_on_site_new>
+ <nb_uniq_visitors_new_change>+100%</nb_uniq_visitors_new_change>
+ <nb_uniq_visitors_new_change_from>-100%</nb_uniq_visitors_new_change_from>
+ <nb_users_new_change>+0%</nb_users_new_change>
+ <nb_users_new_change_from>+0%</nb_users_new_change_from>
+ <nb_visits_new_change>+100%</nb_visits_new_change>
+ <nb_visits_new_change_from>-100%</nb_visits_new_change_from>
+ <nb_actions_new_change>+100%</nb_actions_new_change>
+ <nb_actions_new_change_from>-100%</nb_actions_new_change_from>
+ <nb_visits_converted_new_change>+100%</nb_visits_converted_new_change>
+ <nb_visits_converted_new_change_from>-100%</nb_visits_converted_new_change_from>
+ <bounce_count_new_change>+100%</bounce_count_new_change>
+ <bounce_count_new_change_from>-100%</bounce_count_new_change_from>
+ <sum_visit_length_new_change>+0%</sum_visit_length_new_change>
+ <sum_visit_length_new_change_from>+0%</sum_visit_length_new_change_from>
+ <max_actions_new_change>+100%</max_actions_new_change>
+ <max_actions_new_change_from>-100%</max_actions_new_change_from>
+ <bounce_rate_new_change>+100%</bounce_rate_new_change>
+ <bounce_rate_new_change_from>-100%</bounce_rate_new_change_from>
+ <nb_actions_per_visit_new_change>+100%</nb_actions_per_visit_new_change>
+ <nb_actions_per_visit_new_change_from>-100%</nb_actions_per_visit_new_change_from>
+ <avg_time_on_site_new_change>+0%</avg_time_on_site_new_change>
+ <avg_time_on_site_new_change_from>+0%</avg_time_on_site_new_change_from>
+ <avg_time_on_site_returning>0</avg_time_on_site_returning>
+ <nb_actions_per_visit_returning>0</nb_actions_per_visit_returning>
+ <bounce_rate_returning>0%</bounce_rate_returning>
+ <compareSegment>browserCode%3D%3Die</compareSegment>
+ <compareSegmentPretty>browserCode==ie</compareSegmentPretty>
+ <comparePeriod>day</comparePeriod>
+ <compareDate>2012-08-15</compareDate>
+ <comparePeriodPretty>Wednesday, August 15, 2012</comparePeriodPretty>
+ <compareSeriesPretty>(August 12 – 15, 2012) (browserCode==ie)</compareSeriesPretty>
+ <idsubdatatable>-1</idsubdatatable>
+ </row>
+ </comparisons>
+ </result>
+ <result period="2012-08-13">
+ <comparisons>
+ <row>
+ <avg_time_on_site_returning>0</avg_time_on_site_returning>
+ <nb_actions_per_visit_returning>0</nb_actions_per_visit_returning>
+ <bounce_rate_returning>0%</bounce_rate_returning>
+ <avg_time_on_site_new>0</avg_time_on_site_new>
+ <nb_actions_per_visit_new>0</nb_actions_per_visit_new>
+ <bounce_rate_new>0%</bounce_rate_new>
+ <compareSegment />
+ <compareSegmentPretty>All visits</compareSegmentPretty>
+ <comparePeriod>day</comparePeriod>
+ <compareDate>2012-08-13</compareDate>
+ <comparePeriodPretty>Monday, August 13, 2012</comparePeriodPretty>
+ <compareSeriesPretty>(August 9 – 16, 2012) (All visits)</compareSeriesPretty>
+ <idsubdatatable>-1</idsubdatatable>
+ </row>
+ <row>
+ <avg_time_on_site_returning>0</avg_time_on_site_returning>
+ <nb_actions_per_visit_returning>0</nb_actions_per_visit_returning>
+ <bounce_rate_returning>0%</bounce_rate_returning>
+ <avg_time_on_site_new>0</avg_time_on_site_new>
+ <nb_actions_per_visit_new>0</nb_actions_per_visit_new>
+ <bounce_rate_new>0%</bounce_rate_new>
+ <compareSegment>browserCode%3D%3Dff</compareSegment>
+ <compareSegmentPretty>browserCode==ff</compareSegmentPretty>
+ <comparePeriod>day</comparePeriod>
+ <compareDate>2012-08-13</compareDate>
+ <comparePeriodPretty>Monday, August 13, 2012</comparePeriodPretty>
+ <compareSeriesPretty>(August 9 – 16, 2012) (browserCode==ff)</compareSeriesPretty>
+ <idsubdatatable>-1</idsubdatatable>
+ </row>
+ <row>
+ <avg_time_on_site_returning>0</avg_time_on_site_returning>
+ <nb_actions_per_visit_returning>0</nb_actions_per_visit_returning>
+ <bounce_rate_returning>0%</bounce_rate_returning>
+ <avg_time_on_site_new>0</avg_time_on_site_new>
+ <nb_actions_per_visit_new>0</nb_actions_per_visit_new>
+ <bounce_rate_new>0%</bounce_rate_new>
+ <compareSegment>browserCode%3D%3Die</compareSegment>
+ <compareSegmentPretty>browserCode==ie</compareSegmentPretty>
+ <comparePeriod>day</comparePeriod>
+ <compareDate>2012-08-13</compareDate>
+ <comparePeriodPretty>Monday, August 13, 2012</comparePeriodPretty>
+ <compareSeriesPretty>(August 9 – 16, 2012) (browserCode==ie)</compareSeriesPretty>
+ <idsubdatatable>-1</idsubdatatable>
+ </row>
+ <row>
+ <avg_time_on_site_returning>0</avg_time_on_site_returning>
+ <nb_actions_per_visit_returning>0</nb_actions_per_visit_returning>
+ <bounce_rate_returning>0%</bounce_rate_returning>
+ <avg_time_on_site_new>0</avg_time_on_site_new>
+ <nb_actions_per_visit_new>0</nb_actions_per_visit_new>
+ <bounce_rate_new>0%</bounce_rate_new>
+ <compareSegment />
+ <compareSegmentPretty>All visits</compareSegmentPretty>
+ <comparePeriod>day</comparePeriod>
+ <compareDate>2012-08-13</compareDate>
+ <comparePeriodPretty>Monday, August 13, 2012</comparePeriodPretty>
+ <compareSeriesPretty>(August 9 – 16, 2012) (All visits)</compareSeriesPretty>
+ <idsubdatatable>-1</idsubdatatable>
+ </row>
+ <row>
+ <avg_time_on_site_returning>0</avg_time_on_site_returning>
+ <nb_actions_per_visit_returning>0</nb_actions_per_visit_returning>
+ <bounce_rate_returning>0%</bounce_rate_returning>
+ <avg_time_on_site_new>0</avg_time_on_site_new>
+ <nb_actions_per_visit_new>0</nb_actions_per_visit_new>
+ <bounce_rate_new>0%</bounce_rate_new>
+ <compareSegment>browserCode%3D%3Dff</compareSegment>
+ <compareSegmentPretty>browserCode==ff</compareSegmentPretty>
+ <comparePeriod>day</comparePeriod>
+ <compareDate>2012-08-13</compareDate>
+ <comparePeriodPretty>Monday, August 13, 2012</comparePeriodPretty>
+ <compareSeriesPretty>(August 9 – 16, 2012) (browserCode==ff)</compareSeriesPretty>
+ <idsubdatatable>-1</idsubdatatable>
+ </row>
+ <row>
+ <avg_time_on_site_returning>0</avg_time_on_site_returning>
+ <nb_actions_per_visit_returning>0</nb_actions_per_visit_returning>
+ <bounce_rate_returning>0%</bounce_rate_returning>
+ <avg_time_on_site_new>0</avg_time_on_site_new>
+ <nb_actions_per_visit_new>0</nb_actions_per_visit_new>
+ <bounce_rate_new>0%</bounce_rate_new>
+ <compareSegment>browserCode%3D%3Die</compareSegment>
+ <compareSegmentPretty>browserCode==ie</compareSegmentPretty>
+ <comparePeriod>day</comparePeriod>
+ <compareDate>2012-08-13</compareDate>
+ <comparePeriodPretty>Monday, August 13, 2012</comparePeriodPretty>
+ <compareSeriesPretty>(August 9 – 16, 2012) (browserCode==ie)</compareSeriesPretty>
+ <idsubdatatable>-1</idsubdatatable>
+ </row>
+ <row>
+ <avg_time_on_site_returning>0</avg_time_on_site_returning>
+ <nb_actions_per_visit_returning>0</nb_actions_per_visit_returning>
+ <bounce_rate_returning>0%</bounce_rate_returning>
+ <avg_time_on_site_new>0</avg_time_on_site_new>
+ <nb_actions_per_visit_new>0</nb_actions_per_visit_new>
+ <bounce_rate_new>0%</bounce_rate_new>
+ <compareSegment />
+ <compareSegmentPretty>All visits</compareSegmentPretty>
+ <comparePeriod>day</comparePeriod>
+ <compareDate>2012-08-12,2012-08-15</compareDate>
+ <comparePeriodPretty>August 12 – 15, 2012</comparePeriodPretty>
+ <compareSeriesPretty>(August 12 – 15, 2012) (All visits)</compareSeriesPretty>
+ <idsubdatatable>-1</idsubdatatable>
+ </row>
+ <row>
+ <avg_time_on_site_returning>0</avg_time_on_site_returning>
+ <nb_actions_per_visit_returning>0</nb_actions_per_visit_returning>
+ <bounce_rate_returning>0%</bounce_rate_returning>
+ <avg_time_on_site_new>0</avg_time_on_site_new>
+ <nb_actions_per_visit_new>0</nb_actions_per_visit_new>
+ <bounce_rate_new>0%</bounce_rate_new>
+ <compareSegment>browserCode%3D%3Dff</compareSegment>
+ <compareSegmentPretty>browserCode==ff</compareSegmentPretty>
+ <comparePeriod>day</comparePeriod>
+ <compareDate>2012-08-12,2012-08-15</compareDate>
+ <comparePeriodPretty>August 12 – 15, 2012</comparePeriodPretty>
+ <compareSeriesPretty>(August 12 – 15, 2012) (browserCode==ff)</compareSeriesPretty>
+ <idsubdatatable>-1</idsubdatatable>
+ </row>
+ <row>
+ <avg_time_on_site_returning>0</avg_time_on_site_returning>
+ <nb_actions_per_visit_returning>0</nb_actions_per_visit_returning>
+ <bounce_rate_returning>0%</bounce_rate_returning>
+ <avg_time_on_site_new>0</avg_time_on_site_new>
+ <nb_actions_per_visit_new>0</nb_actions_per_visit_new>
+ <bounce_rate_new>0%</bounce_rate_new>
+ <compareSegment>browserCode%3D%3Die</compareSegment>
+ <compareSegmentPretty>browserCode==ie</compareSegmentPretty>
+ <comparePeriod>day</comparePeriod>
+ <compareDate>2012-08-12,2012-08-15</compareDate>
+ <comparePeriodPretty>August 12 – 15, 2012</comparePeriodPretty>
+ <compareSeriesPretty>(August 12 – 15, 2012) (browserCode==ie)</compareSeriesPretty>
+ <idsubdatatable>-1</idsubdatatable>
+ </row>
+ </comparisons>
+ </result>
+ <result period="2012-08-14">
+ <comparisons>
+ <row>
+ <avg_time_on_site_returning>0</avg_time_on_site_returning>
+ <nb_actions_per_visit_returning>0</nb_actions_per_visit_returning>
+ <bounce_rate_returning>0%</bounce_rate_returning>
+ <avg_time_on_site_new>0</avg_time_on_site_new>
+ <nb_actions_per_visit_new>0</nb_actions_per_visit_new>
+ <bounce_rate_new>0%</bounce_rate_new>
+ <compareSegment />
+ <compareSegmentPretty>All visits</compareSegmentPretty>
+ <comparePeriod>day</comparePeriod>
+ <compareDate>2012-08-14</compareDate>
+ <comparePeriodPretty>Tuesday, August 14, 2012</comparePeriodPretty>
+ <compareSeriesPretty>(August 9 – 16, 2012) (All visits)</compareSeriesPretty>
+ <idsubdatatable>-1</idsubdatatable>
+ </row>
+ <row>
+ <avg_time_on_site_returning>0</avg_time_on_site_returning>
+ <nb_actions_per_visit_returning>0</nb_actions_per_visit_returning>
+ <bounce_rate_returning>0%</bounce_rate_returning>
+ <avg_time_on_site_new>0</avg_time_on_site_new>
+ <nb_actions_per_visit_new>0</nb_actions_per_visit_new>
+ <bounce_rate_new>0%</bounce_rate_new>
+ <compareSegment>browserCode%3D%3Dff</compareSegment>
+ <compareSegmentPretty>browserCode==ff</compareSegmentPretty>
+ <comparePeriod>day</comparePeriod>
+ <compareDate>2012-08-14</compareDate>
+ <comparePeriodPretty>Tuesday, August 14, 2012</comparePeriodPretty>
+ <compareSeriesPretty>(August 9 – 16, 2012) (browserCode==ff)</compareSeriesPretty>
+ <idsubdatatable>-1</idsubdatatable>
+ </row>
+ <row>
+ <avg_time_on_site_returning>0</avg_time_on_site_returning>
+ <nb_actions_per_visit_returning>0</nb_actions_per_visit_returning>
+ <bounce_rate_returning>0%</bounce_rate_returning>
+ <avg_time_on_site_new>0</avg_time_on_site_new>
+ <nb_actions_per_visit_new>0</nb_actions_per_visit_new>
+ <bounce_rate_new>0%</bounce_rate_new>
+ <compareSegment>browserCode%3D%3Die</compareSegment>
+ <compareSegmentPretty>browserCode==ie</compareSegmentPretty>
+ <comparePeriod>day</comparePeriod>
+ <compareDate>2012-08-14</compareDate>
+ <comparePeriodPretty>Tuesday, August 14, 2012</comparePeriodPretty>
+ <compareSeriesPretty>(August 9 – 16, 2012) (browserCode==ie)</compareSeriesPretty>
+ <idsubdatatable>-1</idsubdatatable>
+ </row>
+ <row>
+ <avg_time_on_site_returning>0</avg_time_on_site_returning>
+ <nb_actions_per_visit_returning>0</nb_actions_per_visit_returning>
+ <bounce_rate_returning>0%</bounce_rate_returning>
+ <avg_time_on_site_new>0</avg_time_on_site_new>
+ <nb_actions_per_visit_new>0</nb_actions_per_visit_new>
+ <bounce_rate_new>0%</bounce_rate_new>
+ <compareSegment />
+ <compareSegmentPretty>All visits</compareSegmentPretty>
+ <comparePeriod>day</comparePeriod>
+ <compareDate>2012-08-14</compareDate>
+ <comparePeriodPretty>Tuesday, August 14, 2012</comparePeriodPretty>
+ <compareSeriesPretty>(August 9 – 16, 2012) (All visits)</compareSeriesPretty>
+ <idsubdatatable>-1</idsubdatatable>
+ </row>
+ <row>
+ <avg_time_on_site_returning>0</avg_time_on_site_returning>
+ <nb_actions_per_visit_returning>0</nb_actions_per_visit_returning>
+ <bounce_rate_returning>0%</bounce_rate_returning>
+ <avg_time_on_site_new>0</avg_time_on_site_new>
+ <nb_actions_per_visit_new>0</nb_actions_per_visit_new>
+ <bounce_rate_new>0%</bounce_rate_new>
+ <compareSegment>browserCode%3D%3Dff</compareSegment>
+ <compareSegmentPretty>browserCode==ff</compareSegmentPretty>
+ <comparePeriod>day</comparePeriod>
+ <compareDate>2012-08-14</compareDate>
+ <comparePeriodPretty>Tuesday, August 14, 2012</comparePeriodPretty>
+ <compareSeriesPretty>(August 9 – 16, 2012) (browserCode==ff)</compareSeriesPretty>
+ <idsubdatatable>-1</idsubdatatable>
+ </row>
+ <row>
+ <avg_time_on_site_returning>0</avg_time_on_site_returning>
+ <nb_actions_per_visit_returning>0</nb_actions_per_visit_returning>
+ <bounce_rate_returning>0%</bounce_rate_returning>
+ <avg_time_on_site_new>0</avg_time_on_site_new>
+ <nb_actions_per_visit_new>0</nb_actions_per_visit_new>
+ <bounce_rate_new>0%</bounce_rate_new>
+ <compareSegment>browserCode%3D%3Die</compareSegment>
+ <compareSegmentPretty>browserCode==ie</compareSegmentPretty>
+ <comparePeriod>day</comparePeriod>
+ <compareDate>2012-08-14</compareDate>
+ <comparePeriodPretty>Tuesday, August 14, 2012</comparePeriodPretty>
+ <compareSeriesPretty>(August 9 – 16, 2012) (browserCode==ie)</compareSeriesPretty>
+ <idsubdatatable>-1</idsubdatatable>
+ </row>
+ <row>
+ <avg_time_on_site_returning>0</avg_time_on_site_returning>
+ <nb_actions_per_visit_returning>0</nb_actions_per_visit_returning>
+ <bounce_rate_returning>0%</bounce_rate_returning>
+ <avg_time_on_site_new>0</avg_time_on_site_new>
+ <nb_actions_per_visit_new>0</nb_actions_per_visit_new>
+ <bounce_rate_new>0%</bounce_rate_new>
+ <compareSegment />
+ <compareSegmentPretty>All visits</compareSegmentPretty>
+ <comparePeriod>day</comparePeriod>
+ <compareDate>2012-08-12,2012-08-15</compareDate>
+ <comparePeriodPretty>August 12 – 15, 2012</comparePeriodPretty>
+ <compareSeriesPretty>(August 12 – 15, 2012) (All visits)</compareSeriesPretty>
+ <idsubdatatable>-1</idsubdatatable>
+ </row>
+ <row>
+ <avg_time_on_site_returning>0</avg_time_on_site_returning>
+ <nb_actions_per_visit_returning>0</nb_actions_per_visit_returning>
+ <bounce_rate_returning>0%</bounce_rate_returning>
+ <avg_time_on_site_new>0</avg_time_on_site_new>
+ <nb_actions_per_visit_new>0</nb_actions_per_visit_new>
+ <bounce_rate_new>0%</bounce_rate_new>
+ <compareSegment>browserCode%3D%3Dff</compareSegment>
+ <compareSegmentPretty>browserCode==ff</compareSegmentPretty>
+ <comparePeriod>day</comparePeriod>
+ <compareDate>2012-08-12,2012-08-15</compareDate>
+ <comparePeriodPretty>August 12 – 15, 2012</comparePeriodPretty>
+ <compareSeriesPretty>(August 12 – 15, 2012) (browserCode==ff)</compareSeriesPretty>
+ <idsubdatatable>-1</idsubdatatable>
+ </row>
+ <row>
+ <avg_time_on_site_returning>0</avg_time_on_site_returning>
+ <nb_actions_per_visit_returning>0</nb_actions_per_visit_returning>
+ <bounce_rate_returning>0%</bounce_rate_returning>
+ <avg_time_on_site_new>0</avg_time_on_site_new>
+ <nb_actions_per_visit_new>0</nb_actions_per_visit_new>
+ <bounce_rate_new>0%</bounce_rate_new>
+ <compareSegment>browserCode%3D%3Die</compareSegment>
+ <compareSegmentPretty>browserCode==ie</compareSegmentPretty>
+ <comparePeriod>day</comparePeriod>
+ <compareDate>2012-08-12,2012-08-15</compareDate>
+ <comparePeriodPretty>August 12 – 15, 2012</comparePeriodPretty>
+ <compareSeriesPretty>(August 12 – 15, 2012) (browserCode==ie)</compareSeriesPretty>
+ <idsubdatatable>-1</idsubdatatable>
+ </row>
+ </comparisons>
+ </result>
+ <result period="2012-08-15">
+ <nb_uniq_visitors_new>1</nb_uniq_visitors_new>
+ <nb_users_new>0</nb_users_new>
+ <nb_visits_new>1</nb_visits_new>
+ <nb_actions_new>1</nb_actions_new>
+ <nb_visits_converted_new>1</nb_visits_converted_new>
+ <bounce_count_new>1</bounce_count_new>
+ <sum_visit_length_new>0</sum_visit_length_new>
+ <max_actions_new>1</max_actions_new>
+ <bounce_rate_new>100%</bounce_rate_new>
+ <nb_actions_per_visit_new>1</nb_actions_per_visit_new>
+ <avg_time_on_site_new>0</avg_time_on_site_new>
+ <nb_uniq_visitors_returning>1</nb_uniq_visitors_returning>
+ <nb_users_returning>0</nb_users_returning>
+ <nb_visits_returning>1</nb_visits_returning>
+ <nb_actions_returning>1</nb_actions_returning>
+ <nb_visits_converted_returning>1</nb_visits_converted_returning>
+ <bounce_count_returning>1</bounce_count_returning>
+ <sum_visit_length_returning>0</sum_visit_length_returning>
+ <max_actions_returning>1</max_actions_returning>
+ <bounce_rate_returning>100%</bounce_rate_returning>
+ <nb_actions_per_visit_returning>1</nb_actions_per_visit_returning>
+ <avg_time_on_site_returning>0</avg_time_on_site_returning>
+ <comparisons>
+ <row>
+ <nb_uniq_visitors_new>1</nb_uniq_visitors_new>
+ <nb_users_new>0</nb_users_new>
+ <nb_visits_new>1</nb_visits_new>
+ <nb_actions_new>1</nb_actions_new>
+ <nb_visits_converted_new>1</nb_visits_converted_new>
+ <bounce_count_new>1</bounce_count_new>
+ <sum_visit_length_new>0</sum_visit_length_new>
+ <max_actions_new>1</max_actions_new>
+ <bounce_rate_new>100%</bounce_rate_new>
+ <nb_actions_per_visit_new>1</nb_actions_per_visit_new>
+ <avg_time_on_site_new>0</avg_time_on_site_new>
+ <nb_uniq_visitors_returning>1</nb_uniq_visitors_returning>
+ <nb_users_returning>0</nb_users_returning>
+ <nb_visits_returning>1</nb_visits_returning>
+ <nb_actions_returning>1</nb_actions_returning>
+ <nb_visits_converted_returning>1</nb_visits_converted_returning>
+ <bounce_count_returning>1</bounce_count_returning>
+ <sum_visit_length_returning>0</sum_visit_length_returning>
+ <max_actions_returning>1</max_actions_returning>
+ <bounce_rate_returning>100%</bounce_rate_returning>
+ <nb_actions_per_visit_returning>1</nb_actions_per_visit_returning>
+ <avg_time_on_site_returning>0</avg_time_on_site_returning>
+ <compareSegment />
+ <compareSegmentPretty>All visits</compareSegmentPretty>
+ <comparePeriod>day</comparePeriod>
+ <compareDate>2012-08-15</compareDate>
+ <comparePeriodPretty>Wednesday, August 15, 2012</comparePeriodPretty>
+ <compareSeriesPretty>(August 9 – 16, 2012) (All visits)</compareSeriesPretty>
+ <idsubdatatable>-1</idsubdatatable>
+ </row>
+ <row>
+ <nb_uniq_visitors_new>0</nb_uniq_visitors_new>
+ <nb_users_new>0</nb_users_new>
+ <nb_visits_new>0</nb_visits_new>
+ <nb_actions_new>0</nb_actions_new>
+ <nb_visits_converted_new>0</nb_visits_converted_new>
+ <bounce_count_new>0</bounce_count_new>
+ <sum_visit_length_new>0</sum_visit_length_new>
+ <max_actions_new>0</max_actions_new>
+ <bounce_rate_new>0%</bounce_rate_new>
+ <nb_actions_per_visit_new>0</nb_actions_per_visit_new>
+ <avg_time_on_site_new>0</avg_time_on_site_new>
+ <nb_uniq_visitors_returning>0</nb_uniq_visitors_returning>
+ <nb_users_returning>0</nb_users_returning>
+ <nb_visits_returning>0</nb_visits_returning>
+ <nb_actions_returning>0</nb_actions_returning>
+ <nb_visits_converted_returning>0</nb_visits_converted_returning>
+ <bounce_count_returning>0</bounce_count_returning>
+ <sum_visit_length_returning>0</sum_visit_length_returning>
+ <max_actions_returning>0</max_actions_returning>
+ <bounce_rate_returning>0%</bounce_rate_returning>
+ <nb_actions_per_visit_returning>0</nb_actions_per_visit_returning>
+ <avg_time_on_site_returning>0</avg_time_on_site_returning>
+ <compareSegment>browserCode%3D%3Dff</compareSegment>
+ <compareSegmentPretty>browserCode==ff</compareSegmentPretty>
+ <comparePeriod>day</comparePeriod>
+ <compareDate>2012-08-15</compareDate>
+ <comparePeriodPretty>Wednesday, August 15, 2012</comparePeriodPretty>
+ <compareSeriesPretty>(August 9 – 16, 2012) (browserCode==ff)</compareSeriesPretty>
+ <idsubdatatable>-1</idsubdatatable>
+ </row>
+ <row>
+ <nb_uniq_visitors_new>1</nb_uniq_visitors_new>
+ <nb_users_new>0</nb_users_new>
+ <nb_visits_new>1</nb_visits_new>
+ <nb_actions_new>1</nb_actions_new>
+ <nb_visits_converted_new>1</nb_visits_converted_new>
+ <bounce_count_new>1</bounce_count_new>
+ <sum_visit_length_new>0</sum_visit_length_new>
+ <max_actions_new>1</max_actions_new>
+ <bounce_rate_new>100%</bounce_rate_new>
+ <nb_actions_per_visit_new>1</nb_actions_per_visit_new>
+ <avg_time_on_site_new>0</avg_time_on_site_new>
+ <avg_time_on_site_returning>0</avg_time_on_site_returning>
+ <nb_actions_per_visit_returning>0</nb_actions_per_visit_returning>
+ <bounce_rate_returning>0%</bounce_rate_returning>
+ <compareSegment>browserCode%3D%3Die</compareSegment>
+ <compareSegmentPretty>browserCode==ie</compareSegmentPretty>
+ <comparePeriod>day</comparePeriod>
+ <compareDate>2012-08-15</compareDate>
+ <comparePeriodPretty>Wednesday, August 15, 2012</comparePeriodPretty>
+ <compareSeriesPretty>(August 9 – 16, 2012) (browserCode==ie)</compareSeriesPretty>
+ <idsubdatatable>-1</idsubdatatable>
+ </row>
+ <row>
+ <nb_uniq_visitors_new>1</nb_uniq_visitors_new>
+ <nb_users_new>0</nb_users_new>
+ <nb_visits_new>1</nb_visits_new>
+ <nb_actions_new>1</nb_actions_new>
+ <nb_visits_converted_new>1</nb_visits_converted_new>
+ <bounce_count_new>1</bounce_count_new>
+ <sum_visit_length_new>0</sum_visit_length_new>
+ <max_actions_new>1</max_actions_new>
+ <bounce_rate_new>100%</bounce_rate_new>
+ <nb_actions_per_visit_new>1</nb_actions_per_visit_new>
+ <avg_time_on_site_new>0</avg_time_on_site_new>
+ <nb_uniq_visitors_returning>1</nb_uniq_visitors_returning>
+ <nb_users_returning>0</nb_users_returning>
+ <nb_visits_returning>1</nb_visits_returning>
+ <nb_actions_returning>1</nb_actions_returning>
+ <nb_visits_converted_returning>1</nb_visits_converted_returning>
+ <bounce_count_returning>1</bounce_count_returning>
+ <sum_visit_length_returning>0</sum_visit_length_returning>
+ <max_actions_returning>1</max_actions_returning>
+ <bounce_rate_returning>100%</bounce_rate_returning>
+ <nb_actions_per_visit_returning>1</nb_actions_per_visit_returning>
+ <avg_time_on_site_returning>0</avg_time_on_site_returning>
+ <nb_uniq_visitors_new_change>+0%</nb_uniq_visitors_new_change>
+ <nb_uniq_visitors_new_change_from>+0%</nb_uniq_visitors_new_change_from>
+ <nb_users_new_change>+0%</nb_users_new_change>
+ <nb_users_new_change_from>+0%</nb_users_new_change_from>
+ <nb_visits_new_change>+0%</nb_visits_new_change>
+ <nb_visits_new_change_from>+0%</nb_visits_new_change_from>
+ <nb_actions_new_change>+0%</nb_actions_new_change>
+ <nb_actions_new_change_from>+0%</nb_actions_new_change_from>
+ <nb_visits_converted_new_change>+0%</nb_visits_converted_new_change>
+ <nb_visits_converted_new_change_from>+0%</nb_visits_converted_new_change_from>
+ <bounce_count_new_change>+0%</bounce_count_new_change>
+ <bounce_count_new_change_from>+0%</bounce_count_new_change_from>
+ <sum_visit_length_new_change>+0%</sum_visit_length_new_change>
+ <sum_visit_length_new_change_from>+0%</sum_visit_length_new_change_from>
+ <max_actions_new_change>+0%</max_actions_new_change>
+ <max_actions_new_change_from>+0%</max_actions_new_change_from>
+ <bounce_rate_new_change>+0%</bounce_rate_new_change>
+ <bounce_rate_new_change_from>+0%</bounce_rate_new_change_from>
+ <nb_actions_per_visit_new_change>+0%</nb_actions_per_visit_new_change>
+ <nb_actions_per_visit_new_change_from>+0%</nb_actions_per_visit_new_change_from>
+ <avg_time_on_site_new_change>+0%</avg_time_on_site_new_change>
+ <avg_time_on_site_new_change_from>+0%</avg_time_on_site_new_change_from>
+ <nb_uniq_visitors_returning_change>+0%</nb_uniq_visitors_returning_change>
+ <nb_uniq_visitors_returning_change_from>+0%</nb_uniq_visitors_returning_change_from>
+ <nb_users_returning_change>+0%</nb_users_returning_change>
+ <nb_users_returning_change_from>+0%</nb_users_returning_change_from>
+ <nb_visits_returning_change>+0%</nb_visits_returning_change>
+ <nb_visits_returning_change_from>+0%</nb_visits_returning_change_from>
+ <nb_actions_returning_change>+0%</nb_actions_returning_change>
+ <nb_actions_returning_change_from>+0%</nb_actions_returning_change_from>
+ <nb_visits_converted_returning_change>+0%</nb_visits_converted_returning_change>
+ <nb_visits_converted_returning_change_from>+0%</nb_visits_converted_returning_change_from>
+ <bounce_count_returning_change>+0%</bounce_count_returning_change>
+ <bounce_count_returning_change_from>+0%</bounce_count_returning_change_from>
+ <sum_visit_length_returning_change>+0%</sum_visit_length_returning_change>
+ <sum_visit_length_returning_change_from>+0%</sum_visit_length_returning_change_from>
+ <max_actions_returning_change>+0%</max_actions_returning_change>
+ <max_actions_returning_change_from>+0%</max_actions_returning_change_from>
+ <bounce_rate_returning_change>+0%</bounce_rate_returning_change>
+ <bounce_rate_returning_change_from>+0%</bounce_rate_returning_change_from>
+ <nb_actions_per_visit_returning_change>+0%</nb_actions_per_visit_returning_change>
+ <nb_actions_per_visit_returning_change_from>+0%</nb_actions_per_visit_returning_change_from>
+ <avg_time_on_site_returning_change>+0%</avg_time_on_site_returning_change>
+ <avg_time_on_site_returning_change_from>+0%</avg_time_on_site_returning_change_from>
+ <compareSegment />
+ <compareSegmentPretty>All visits</compareSegmentPretty>
+ <comparePeriod>day</comparePeriod>
+ <compareDate>2012-08-15</compareDate>
+ <comparePeriodPretty>Wednesday, August 15, 2012</comparePeriodPretty>
+ <compareSeriesPretty>(August 9 – 16, 2012) (All visits)</compareSeriesPretty>
+ <idsubdatatable>-1</idsubdatatable>
+ </row>
+ <row>
+ <nb_uniq_visitors_new>0</nb_uniq_visitors_new>
+ <nb_users_new>0</nb_users_new>
+ <nb_visits_new>0</nb_visits_new>
+ <nb_actions_new>0</nb_actions_new>
+ <nb_visits_converted_new>0</nb_visits_converted_new>
+ <bounce_count_new>0</bounce_count_new>
+ <sum_visit_length_new>0</sum_visit_length_new>
+ <max_actions_new>0</max_actions_new>
+ <bounce_rate_new>0%</bounce_rate_new>
+ <nb_actions_per_visit_new>0</nb_actions_per_visit_new>
+ <avg_time_on_site_new>0</avg_time_on_site_new>
+ <nb_uniq_visitors_returning>0</nb_uniq_visitors_returning>
+ <nb_users_returning>0</nb_users_returning>
+ <nb_visits_returning>0</nb_visits_returning>
+ <nb_actions_returning>0</nb_actions_returning>
+ <nb_visits_converted_returning>0</nb_visits_converted_returning>
+ <bounce_count_returning>0</bounce_count_returning>
+ <sum_visit_length_returning>0</sum_visit_length_returning>
+ <max_actions_returning>0</max_actions_returning>
+ <bounce_rate_returning>0%</bounce_rate_returning>
+ <nb_actions_per_visit_returning>0</nb_actions_per_visit_returning>
+ <avg_time_on_site_returning>0</avg_time_on_site_returning>
+ <nb_uniq_visitors_new_change>+0%</nb_uniq_visitors_new_change>
+ <nb_uniq_visitors_new_change_from>+0%</nb_uniq_visitors_new_change_from>
+ <nb_users_new_change>+0%</nb_users_new_change>
+ <nb_users_new_change_from>+0%</nb_users_new_change_from>
+ <nb_visits_new_change>+0%</nb_visits_new_change>
+ <nb_visits_new_change_from>+0%</nb_visits_new_change_from>
+ <nb_actions_new_change>+0%</nb_actions_new_change>
+ <nb_actions_new_change_from>+0%</nb_actions_new_change_from>
+ <nb_visits_converted_new_change>+0%</nb_visits_converted_new_change>
+ <nb_visits_converted_new_change_from>+0%</nb_visits_converted_new_change_from>
+ <bounce_count_new_change>+0%</bounce_count_new_change>
+ <bounce_count_new_change_from>+0%</bounce_count_new_change_from>
+ <sum_visit_length_new_change>+0%</sum_visit_length_new_change>
+ <sum_visit_length_new_change_from>+0%</sum_visit_length_new_change_from>
+ <max_actions_new_change>+0%</max_actions_new_change>
+ <max_actions_new_change_from>+0%</max_actions_new_change_from>
+ <bounce_rate_new_change>+0%</bounce_rate_new_change>
+ <bounce_rate_new_change_from>+0%</bounce_rate_new_change_from>
+ <nb_actions_per_visit_new_change>+0%</nb_actions_per_visit_new_change>
+ <nb_actions_per_visit_new_change_from>+0%</nb_actions_per_visit_new_change_from>
+ <avg_time_on_site_new_change>+0%</avg_time_on_site_new_change>
+ <avg_time_on_site_new_change_from>+0%</avg_time_on_site_new_change_from>
+ <nb_uniq_visitors_returning_change>+0%</nb_uniq_visitors_returning_change>
+ <nb_uniq_visitors_returning_change_from>+0%</nb_uniq_visitors_returning_change_from>
+ <nb_users_returning_change>+0%</nb_users_returning_change>
+ <nb_users_returning_change_from>+0%</nb_users_returning_change_from>
+ <nb_visits_returning_change>+0%</nb_visits_returning_change>
+ <nb_visits_returning_change_from>+0%</nb_visits_returning_change_from>
+ <nb_actions_returning_change>+0%</nb_actions_returning_change>
+ <nb_actions_returning_change_from>+0%</nb_actions_returning_change_from>
+ <nb_visits_converted_returning_change>+0%</nb_visits_converted_returning_change>
+ <nb_visits_converted_returning_change_from>+0%</nb_visits_converted_returning_change_from>
+ <bounce_count_returning_change>+0%</bounce_count_returning_change>
+ <bounce_count_returning_change_from>+0%</bounce_count_returning_change_from>
+ <sum_visit_length_returning_change>+0%</sum_visit_length_returning_change>
+ <sum_visit_length_returning_change_from>+0%</sum_visit_length_returning_change_from>
+ <max_actions_returning_change>+0%</max_actions_returning_change>
+ <max_actions_returning_change_from>+0%</max_actions_returning_change_from>
+ <bounce_rate_returning_change>+0%</bounce_rate_returning_change>
+ <bounce_rate_returning_change_from>+0%</bounce_rate_returning_change_from>
+ <nb_actions_per_visit_returning_change>+0%</nb_actions_per_visit_returning_change>
+ <nb_actions_per_visit_returning_change_from>+0%</nb_actions_per_visit_returning_change_from>
+ <avg_time_on_site_returning_change>+0%</avg_time_on_site_returning_change>
+ <avg_time_on_site_returning_change_from>+0%</avg_time_on_site_returning_change_from>
+ <compareSegment>browserCode%3D%3Dff</compareSegment>
+ <compareSegmentPretty>browserCode==ff</compareSegmentPretty>
+ <comparePeriod>day</comparePeriod>
+ <compareDate>2012-08-15</compareDate>
+ <comparePeriodPretty>Wednesday, August 15, 2012</comparePeriodPretty>
+ <compareSeriesPretty>(August 9 – 16, 2012) (browserCode==ff)</compareSeriesPretty>
+ <idsubdatatable>-1</idsubdatatable>
+ </row>
+ <row>
+ <nb_uniq_visitors_new>1</nb_uniq_visitors_new>
+ <nb_users_new>0</nb_users_new>
+ <nb_visits_new>1</nb_visits_new>
+ <nb_actions_new>1</nb_actions_new>
+ <nb_visits_converted_new>1</nb_visits_converted_new>
+ <bounce_count_new>1</bounce_count_new>
+ <sum_visit_length_new>0</sum_visit_length_new>
+ <max_actions_new>1</max_actions_new>
+ <bounce_rate_new>100%</bounce_rate_new>
+ <nb_actions_per_visit_new>1</nb_actions_per_visit_new>
+ <avg_time_on_site_new>0</avg_time_on_site_new>
+ <nb_uniq_visitors_new_change>+0%</nb_uniq_visitors_new_change>
+ <nb_uniq_visitors_new_change_from>+0%</nb_uniq_visitors_new_change_from>
+ <nb_users_new_change>+0%</nb_users_new_change>
+ <nb_users_new_change_from>+0%</nb_users_new_change_from>
+ <nb_visits_new_change>+0%</nb_visits_new_change>
+ <nb_visits_new_change_from>+0%</nb_visits_new_change_from>
+ <nb_actions_new_change>+0%</nb_actions_new_change>
+ <nb_actions_new_change_from>+0%</nb_actions_new_change_from>
+ <nb_visits_converted_new_change>+0%</nb_visits_converted_new_change>
+ <nb_visits_converted_new_change_from>+0%</nb_visits_converted_new_change_from>
+ <bounce_count_new_change>+0%</bounce_count_new_change>
+ <bounce_count_new_change_from>+0%</bounce_count_new_change_from>
+ <sum_visit_length_new_change>+0%</sum_visit_length_new_change>
+ <sum_visit_length_new_change_from>+0%</sum_visit_length_new_change_from>
+ <max_actions_new_change>+0%</max_actions_new_change>
+ <max_actions_new_change_from>+0%</max_actions_new_change_from>
+ <bounce_rate_new_change>+0%</bounce_rate_new_change>
+ <bounce_rate_new_change_from>+0%</bounce_rate_new_change_from>
+ <nb_actions_per_visit_new_change>+0%</nb_actions_per_visit_new_change>
+ <nb_actions_per_visit_new_change_from>+0%</nb_actions_per_visit_new_change_from>
+ <avg_time_on_site_new_change>+0%</avg_time_on_site_new_change>
+ <avg_time_on_site_new_change_from>+0%</avg_time_on_site_new_change_from>
+ <avg_time_on_site_returning>0</avg_time_on_site_returning>
+ <nb_actions_per_visit_returning>0</nb_actions_per_visit_returning>
+ <bounce_rate_returning>0%</bounce_rate_returning>
+ <compareSegment>browserCode%3D%3Die</compareSegment>
+ <compareSegmentPretty>browserCode==ie</compareSegmentPretty>
+ <comparePeriod>day</comparePeriod>
+ <compareDate>2012-08-15</compareDate>
+ <comparePeriodPretty>Wednesday, August 15, 2012</comparePeriodPretty>
+ <compareSeriesPretty>(August 9 – 16, 2012) (browserCode==ie)</compareSeriesPretty>
+ <idsubdatatable>-1</idsubdatatable>
+ </row>
+ <row>
+ <nb_uniq_visitors_new>0</nb_uniq_visitors_new>
+ <nb_users_new>0</nb_users_new>
+ <nb_visits_new>0</nb_visits_new>
+ <nb_actions_new>0</nb_actions_new>
+ <nb_visits_converted_new>0</nb_visits_converted_new>
+ <bounce_count_new>0</bounce_count_new>
+ <sum_visit_length_new>0</sum_visit_length_new>
+ <max_actions_new>0</max_actions_new>
+ <bounce_rate_new>0%</bounce_rate_new>
+ <nb_actions_per_visit_new>0</nb_actions_per_visit_new>
+ <avg_time_on_site_new>0</avg_time_on_site_new>
+ <nb_uniq_visitors_returning>0</nb_uniq_visitors_returning>
+ <nb_users_returning>0</nb_users_returning>
+ <nb_visits_returning>0</nb_visits_returning>
+ <nb_actions_returning>0</nb_actions_returning>
+ <nb_visits_converted_returning>0</nb_visits_converted_returning>
+ <bounce_count_returning>0</bounce_count_returning>
+ <sum_visit_length_returning>0</sum_visit_length_returning>
+ <max_actions_returning>0</max_actions_returning>
+ <bounce_rate_returning>0%</bounce_rate_returning>
+ <nb_actions_per_visit_returning>0</nb_actions_per_visit_returning>
+ <avg_time_on_site_returning>0</avg_time_on_site_returning>
+ <nb_uniq_visitors_new_change>-100%</nb_uniq_visitors_new_change>
+ <nb_uniq_visitors_new_change_from>+100%</nb_uniq_visitors_new_change_from>
+ <nb_users_new_change>+0%</nb_users_new_change>
+ <nb_users_new_change_from>+0%</nb_users_new_change_from>
+ <nb_visits_new_change>-100%</nb_visits_new_change>
+ <nb_visits_new_change_from>+100%</nb_visits_new_change_from>
+ <nb_actions_new_change>-100%</nb_actions_new_change>
+ <nb_actions_new_change_from>+100%</nb_actions_new_change_from>
+ <nb_visits_converted_new_change>-100%</nb_visits_converted_new_change>
+ <nb_visits_converted_new_change_from>+100%</nb_visits_converted_new_change_from>
+ <bounce_count_new_change>-100%</bounce_count_new_change>
+ <bounce_count_new_change_from>+100%</bounce_count_new_change_from>
+ <sum_visit_length_new_change>+0%</sum_visit_length_new_change>
+ <sum_visit_length_new_change_from>+0%</sum_visit_length_new_change_from>
+ <max_actions_new_change>-100%</max_actions_new_change>
+ <max_actions_new_change_from>+100%</max_actions_new_change_from>
+ <bounce_rate_new_change>-100%</bounce_rate_new_change>
+ <bounce_rate_new_change_from>+100%</bounce_rate_new_change_from>
+ <nb_actions_per_visit_new_change>-100%</nb_actions_per_visit_new_change>
+ <nb_actions_per_visit_new_change_from>+100%</nb_actions_per_visit_new_change_from>
+ <avg_time_on_site_new_change>+0%</avg_time_on_site_new_change>
+ <avg_time_on_site_new_change_from>+0%</avg_time_on_site_new_change_from>
+ <nb_uniq_visitors_returning_change>-100%</nb_uniq_visitors_returning_change>
+ <nb_uniq_visitors_returning_change_from>+100%</nb_uniq_visitors_returning_change_from>
+ <nb_users_returning_change>+0%</nb_users_returning_change>
+ <nb_users_returning_change_from>+0%</nb_users_returning_change_from>
+ <nb_visits_returning_change>-100%</nb_visits_returning_change>
+ <nb_visits_returning_change_from>+100%</nb_visits_returning_change_from>
+ <nb_actions_returning_change>-100%</nb_actions_returning_change>
+ <nb_actions_returning_change_from>+100%</nb_actions_returning_change_from>
+ <nb_visits_converted_returning_change>-100%</nb_visits_converted_returning_change>
+ <nb_visits_converted_returning_change_from>+100%</nb_visits_converted_returning_change_from>
+ <bounce_count_returning_change>-100%</bounce_count_returning_change>
+ <bounce_count_returning_change_from>+100%</bounce_count_returning_change_from>
+ <sum_visit_length_returning_change>+0%</sum_visit_length_returning_change>
+ <sum_visit_length_returning_change_from>+0%</sum_visit_length_returning_change_from>
+ <max_actions_returning_change>-100%</max_actions_returning_change>
+ <max_actions_returning_change_from>+100%</max_actions_returning_change_from>
+ <bounce_rate_returning_change>-100%</bounce_rate_returning_change>
+ <bounce_rate_returning_change_from>+100%</bounce_rate_returning_change_from>
+ <nb_actions_per_visit_returning_change>-100%</nb_actions_per_visit_returning_change>
+ <nb_actions_per_visit_returning_change_from>+100%</nb_actions_per_visit_returning_change_from>
+ <avg_time_on_site_returning_change>+0%</avg_time_on_site_returning_change>
+ <avg_time_on_site_returning_change_from>+0%</avg_time_on_site_returning_change_from>
+ <compareSegment />
+ <compareSegmentPretty>All visits</compareSegmentPretty>
+ <comparePeriod>day</comparePeriod>
+ <compareDate>2012-08-12,2012-08-15</compareDate>
+ <comparePeriodPretty>August 12 – 15, 2012</comparePeriodPretty>
+ <compareSeriesPretty>(August 12 – 15, 2012) (All visits)</compareSeriesPretty>
+ <idsubdatatable>-1</idsubdatatable>
+ </row>
+ <row>
+ <nb_uniq_visitors_new>0</nb_uniq_visitors_new>
+ <nb_users_new>0</nb_users_new>
+ <nb_visits_new>0</nb_visits_new>
+ <nb_actions_new>0</nb_actions_new>
+ <nb_visits_converted_new>0</nb_visits_converted_new>
+ <bounce_count_new>0</bounce_count_new>
+ <sum_visit_length_new>0</sum_visit_length_new>
+ <max_actions_new>0</max_actions_new>
+ <bounce_rate_new>0%</bounce_rate_new>
+ <nb_actions_per_visit_new>0</nb_actions_per_visit_new>
+ <avg_time_on_site_new>0</avg_time_on_site_new>
+ <nb_uniq_visitors_returning>0</nb_uniq_visitors_returning>
+ <nb_users_returning>0</nb_users_returning>
+ <nb_visits_returning>0</nb_visits_returning>
+ <nb_actions_returning>0</nb_actions_returning>
+ <nb_visits_converted_returning>0</nb_visits_converted_returning>
+ <bounce_count_returning>0</bounce_count_returning>
+ <sum_visit_length_returning>0</sum_visit_length_returning>
+ <max_actions_returning>0</max_actions_returning>
+ <bounce_rate_returning>0%</bounce_rate_returning>
+ <nb_actions_per_visit_returning>0</nb_actions_per_visit_returning>
+ <avg_time_on_site_returning>0</avg_time_on_site_returning>
+ <nb_uniq_visitors_new_change>+0%</nb_uniq_visitors_new_change>
+ <nb_uniq_visitors_new_change_from>+0%</nb_uniq_visitors_new_change_from>
+ <nb_users_new_change>+0%</nb_users_new_change>
+ <nb_users_new_change_from>+0%</nb_users_new_change_from>
+ <nb_visits_new_change>+0%</nb_visits_new_change>
+ <nb_visits_new_change_from>+0%</nb_visits_new_change_from>
+ <nb_actions_new_change>+0%</nb_actions_new_change>
+ <nb_actions_new_change_from>+0%</nb_actions_new_change_from>
+ <nb_visits_converted_new_change>+0%</nb_visits_converted_new_change>
+ <nb_visits_converted_new_change_from>+0%</nb_visits_converted_new_change_from>
+ <bounce_count_new_change>+0%</bounce_count_new_change>
+ <bounce_count_new_change_from>+0%</bounce_count_new_change_from>
+ <sum_visit_length_new_change>+0%</sum_visit_length_new_change>
+ <sum_visit_length_new_change_from>+0%</sum_visit_length_new_change_from>
+ <max_actions_new_change>+0%</max_actions_new_change>
+ <max_actions_new_change_from>+0%</max_actions_new_change_from>
+ <bounce_rate_new_change>+0%</bounce_rate_new_change>
+ <bounce_rate_new_change_from>+0%</bounce_rate_new_change_from>
+ <nb_actions_per_visit_new_change>+0%</nb_actions_per_visit_new_change>
+ <nb_actions_per_visit_new_change_from>+0%</nb_actions_per_visit_new_change_from>
+ <avg_time_on_site_new_change>+0%</avg_time_on_site_new_change>
+ <avg_time_on_site_new_change_from>+0%</avg_time_on_site_new_change_from>
+ <nb_uniq_visitors_returning_change>+0%</nb_uniq_visitors_returning_change>
+ <nb_uniq_visitors_returning_change_from>+0%</nb_uniq_visitors_returning_change_from>
+ <nb_users_returning_change>+0%</nb_users_returning_change>
+ <nb_users_returning_change_from>+0%</nb_users_returning_change_from>
+ <nb_visits_returning_change>+0%</nb_visits_returning_change>
+ <nb_visits_returning_change_from>+0%</nb_visits_returning_change_from>
+ <nb_actions_returning_change>+0%</nb_actions_returning_change>
+ <nb_actions_returning_change_from>+0%</nb_actions_returning_change_from>
+ <nb_visits_converted_returning_change>+0%</nb_visits_converted_returning_change>
+ <nb_visits_converted_returning_change_from>+0%</nb_visits_converted_returning_change_from>
+ <bounce_count_returning_change>+0%</bounce_count_returning_change>
+ <bounce_count_returning_change_from>+0%</bounce_count_returning_change_from>
+ <sum_visit_length_returning_change>+0%</sum_visit_length_returning_change>
+ <sum_visit_length_returning_change_from>+0%</sum_visit_length_returning_change_from>
+ <max_actions_returning_change>+0%</max_actions_returning_change>
+ <max_actions_returning_change_from>+0%</max_actions_returning_change_from>
+ <bounce_rate_returning_change>+0%</bounce_rate_returning_change>
+ <bounce_rate_returning_change_from>+0%</bounce_rate_returning_change_from>
+ <nb_actions_per_visit_returning_change>+0%</nb_actions_per_visit_returning_change>
+ <nb_actions_per_visit_returning_change_from>+0%</nb_actions_per_visit_returning_change_from>
+ <avg_time_on_site_returning_change>+0%</avg_time_on_site_returning_change>
+ <avg_time_on_site_returning_change_from>+0%</avg_time_on_site_returning_change_from>
+ <compareSegment>browserCode%3D%3Dff</compareSegment>
+ <compareSegmentPretty>browserCode==ff</compareSegmentPretty>
+ <comparePeriod>day</comparePeriod>
+ <compareDate>2012-08-12,2012-08-15</compareDate>
+ <comparePeriodPretty>August 12 – 15, 2012</comparePeriodPretty>
+ <compareSeriesPretty>(August 12 – 15, 2012) (browserCode==ff)</compareSeriesPretty>
+ <idsubdatatable>-1</idsubdatatable>
+ </row>
+ <row>
+ <nb_uniq_visitors_new>0</nb_uniq_visitors_new>
+ <nb_users_new>0</nb_users_new>
+ <nb_visits_new>0</nb_visits_new>
+ <nb_actions_new>0</nb_actions_new>
+ <nb_visits_converted_new>0</nb_visits_converted_new>
+ <bounce_count_new>0</bounce_count_new>
+ <sum_visit_length_new>0</sum_visit_length_new>
+ <max_actions_new>0</max_actions_new>
+ <bounce_rate_new>0%</bounce_rate_new>
+ <nb_actions_per_visit_new>0</nb_actions_per_visit_new>
+ <avg_time_on_site_new>0</avg_time_on_site_new>
+ <nb_uniq_visitors_returning>0</nb_uniq_visitors_returning>
+ <nb_users_returning>0</nb_users_returning>
+ <nb_visits_returning>0</nb_visits_returning>
+ <nb_actions_returning>0</nb_actions_returning>
+ <nb_visits_converted_returning>0</nb_visits_converted_returning>
+ <bounce_count_returning>0</bounce_count_returning>
+ <sum_visit_length_returning>0</sum_visit_length_returning>
+ <max_actions_returning>0</max_actions_returning>
+ <bounce_rate_returning>0%</bounce_rate_returning>
+ <nb_actions_per_visit_returning>0</nb_actions_per_visit_returning>
+ <avg_time_on_site_returning>0</avg_time_on_site_returning>
+ <nb_uniq_visitors_new_change>-100%</nb_uniq_visitors_new_change>
+ <nb_uniq_visitors_new_change_from>+100%</nb_uniq_visitors_new_change_from>
+ <nb_users_new_change>+0%</nb_users_new_change>
+ <nb_users_new_change_from>+0%</nb_users_new_change_from>
+ <nb_visits_new_change>-100%</nb_visits_new_change>
+ <nb_visits_new_change_from>+100%</nb_visits_new_change_from>
+ <nb_actions_new_change>-100%</nb_actions_new_change>
+ <nb_actions_new_change_from>+100%</nb_actions_new_change_from>
+ <nb_visits_converted_new_change>-100%</nb_visits_converted_new_change>
+ <nb_visits_converted_new_change_from>+100%</nb_visits_converted_new_change_from>
+ <bounce_count_new_change>-100%</bounce_count_new_change>
+ <bounce_count_new_change_from>+100%</bounce_count_new_change_from>
+ <sum_visit_length_new_change>+0%</sum_visit_length_new_change>
+ <sum_visit_length_new_change_from>+0%</sum_visit_length_new_change_from>
+ <max_actions_new_change>-100%</max_actions_new_change>
+ <max_actions_new_change_from>+100%</max_actions_new_change_from>
+ <bounce_rate_new_change>-100%</bounce_rate_new_change>
+ <bounce_rate_new_change_from>+100%</bounce_rate_new_change_from>
+ <nb_actions_per_visit_new_change>-100%</nb_actions_per_visit_new_change>
+ <nb_actions_per_visit_new_change_from>+100%</nb_actions_per_visit_new_change_from>
+ <avg_time_on_site_new_change>+0%</avg_time_on_site_new_change>
+ <avg_time_on_site_new_change_from>+0%</avg_time_on_site_new_change_from>
+ <nb_uniq_visitors_returning_change>+0%</nb_uniq_visitors_returning_change>
+ <nb_uniq_visitors_returning_change_from>+0%</nb_uniq_visitors_returning_change_from>
+ <nb_users_returning_change>+0%</nb_users_returning_change>
+ <nb_users_returning_change_from>+0%</nb_users_returning_change_from>
+ <nb_visits_returning_change>+0%</nb_visits_returning_change>
+ <nb_visits_returning_change_from>+0%</nb_visits_returning_change_from>
+ <nb_actions_returning_change>+0%</nb_actions_returning_change>
+ <nb_actions_returning_change_from>+0%</nb_actions_returning_change_from>
+ <nb_visits_converted_returning_change>+0%</nb_visits_converted_returning_change>
+ <nb_visits_converted_returning_change_from>+0%</nb_visits_converted_returning_change_from>
+ <bounce_count_returning_change>+0%</bounce_count_returning_change>
+ <bounce_count_returning_change_from>+0%</bounce_count_returning_change_from>
+ <sum_visit_length_returning_change>+0%</sum_visit_length_returning_change>
+ <sum_visit_length_returning_change_from>+0%</sum_visit_length_returning_change_from>
+ <max_actions_returning_change>+0%</max_actions_returning_change>
+ <max_actions_returning_change_from>+0%</max_actions_returning_change_from>
+ <bounce_rate_returning_change>+0%</bounce_rate_returning_change>
+ <bounce_rate_returning_change_from>+0%</bounce_rate_returning_change_from>
+ <nb_actions_per_visit_returning_change>+0%</nb_actions_per_visit_returning_change>
+ <nb_actions_per_visit_returning_change_from>+0%</nb_actions_per_visit_returning_change_from>
+ <avg_time_on_site_returning_change>+0%</avg_time_on_site_returning_change>
+ <avg_time_on_site_returning_change_from>+0%</avg_time_on_site_returning_change_from>
+ <compareSegment>browserCode%3D%3Die</compareSegment>
+ <compareSegmentPretty>browserCode==ie</compareSegmentPretty>
+ <comparePeriod>day</comparePeriod>
+ <compareDate>2012-08-12,2012-08-15</compareDate>
+ <comparePeriodPretty>August 12 – 15, 2012</comparePeriodPretty>
+ <compareSeriesPretty>(August 12 – 15, 2012) (browserCode==ie)</compareSeriesPretty>
+ <idsubdatatable>-1</idsubdatatable>
+ </row>
+ </comparisons>
+ </result>
+ <result period="2012-08-16">
+ <comparisons>
+ <row>
+ <avg_time_on_site_returning>0</avg_time_on_site_returning>
+ <nb_actions_per_visit_returning>0</nb_actions_per_visit_returning>
+ <bounce_rate_returning>0%</bounce_rate_returning>
+ <avg_time_on_site_new>0</avg_time_on_site_new>
+ <nb_actions_per_visit_new>0</nb_actions_per_visit_new>
+ <bounce_rate_new>0%</bounce_rate_new>
+ <compareSegment />
+ <compareSegmentPretty>All visits</compareSegmentPretty>
+ <comparePeriod>day</comparePeriod>
+ <compareDate>2012-08-16</compareDate>
+ <comparePeriodPretty>Thursday, August 16, 2012</comparePeriodPretty>
+ <compareSeriesPretty>(August 9 – 16, 2012) (All visits)</compareSeriesPretty>
+ <idsubdatatable>-1</idsubdatatable>
+ </row>
+ <row>
+ <avg_time_on_site_returning>0</avg_time_on_site_returning>
+ <nb_actions_per_visit_returning>0</nb_actions_per_visit_returning>
+ <bounce_rate_returning>0%</bounce_rate_returning>
+ <avg_time_on_site_new>0</avg_time_on_site_new>
+ <nb_actions_per_visit_new>0</nb_actions_per_visit_new>
+ <bounce_rate_new>0%</bounce_rate_new>
+ <compareSegment>browserCode%3D%3Dff</compareSegment>
+ <compareSegmentPretty>browserCode==ff</compareSegmentPretty>
+ <comparePeriod>day</comparePeriod>
+ <compareDate>2012-08-16</compareDate>
+ <comparePeriodPretty>Thursday, August 16, 2012</comparePeriodPretty>
+ <compareSeriesPretty>(August 9 – 16, 2012) (browserCode==ff)</compareSeriesPretty>
+ <idsubdatatable>-1</idsubdatatable>
+ </row>
+ <row>
+ <avg_time_on_site_returning>0</avg_time_on_site_returning>
+ <nb_actions_per_visit_returning>0</nb_actions_per_visit_returning>
+ <bounce_rate_returning>0%</bounce_rate_returning>
+ <avg_time_on_site_new>0</avg_time_on_site_new>
+ <nb_actions_per_visit_new>0</nb_actions_per_visit_new>
+ <bounce_rate_new>0%</bounce_rate_new>
+ <compareSegment>browserCode%3D%3Die</compareSegment>
+ <compareSegmentPretty>browserCode==ie</compareSegmentPretty>
+ <comparePeriod>day</comparePeriod>
+ <compareDate>2012-08-16</compareDate>
+ <comparePeriodPretty>Thursday, August 16, 2012</comparePeriodPretty>
+ <compareSeriesPretty>(August 9 – 16, 2012) (browserCode==ie)</compareSeriesPretty>
+ <idsubdatatable>-1</idsubdatatable>
+ </row>
+ <row>
+ <avg_time_on_site_returning>0</avg_time_on_site_returning>
+ <nb_actions_per_visit_returning>0</nb_actions_per_visit_returning>
+ <bounce_rate_returning>0%</bounce_rate_returning>
+ <avg_time_on_site_new>0</avg_time_on_site_new>
+ <nb_actions_per_visit_new>0</nb_actions_per_visit_new>
+ <bounce_rate_new>0%</bounce_rate_new>
+ <compareSegment />
+ <compareSegmentPretty>All visits</compareSegmentPretty>
+ <comparePeriod>day</comparePeriod>
+ <compareDate>2012-08-16</compareDate>
+ <comparePeriodPretty>Thursday, August 16, 2012</comparePeriodPretty>
+ <compareSeriesPretty>(August 9 – 16, 2012) (All visits)</compareSeriesPretty>
+ <idsubdatatable>-1</idsubdatatable>
+ </row>
+ <row>
+ <avg_time_on_site_returning>0</avg_time_on_site_returning>
+ <nb_actions_per_visit_returning>0</nb_actions_per_visit_returning>
+ <bounce_rate_returning>0%</bounce_rate_returning>
+ <avg_time_on_site_new>0</avg_time_on_site_new>
+ <nb_actions_per_visit_new>0</nb_actions_per_visit_new>
+ <bounce_rate_new>0%</bounce_rate_new>
+ <compareSegment>browserCode%3D%3Dff</compareSegment>
+ <compareSegmentPretty>browserCode==ff</compareSegmentPretty>
+ <comparePeriod>day</comparePeriod>
+ <compareDate>2012-08-16</compareDate>
+ <comparePeriodPretty>Thursday, August 16, 2012</comparePeriodPretty>
+ <compareSeriesPretty>(August 9 – 16, 2012) (browserCode==ff)</compareSeriesPretty>
+ <idsubdatatable>-1</idsubdatatable>
+ </row>
+ <row>
+ <avg_time_on_site_returning>0</avg_time_on_site_returning>
+ <nb_actions_per_visit_returning>0</nb_actions_per_visit_returning>
+ <bounce_rate_returning>0%</bounce_rate_returning>
+ <avg_time_on_site_new>0</avg_time_on_site_new>
+ <nb_actions_per_visit_new>0</nb_actions_per_visit_new>
+ <bounce_rate_new>0%</bounce_rate_new>
+ <compareSegment>browserCode%3D%3Die</compareSegment>
+ <compareSegmentPretty>browserCode==ie</compareSegmentPretty>
+ <comparePeriod>day</comparePeriod>
+ <compareDate>2012-08-16</compareDate>
+ <comparePeriodPretty>Thursday, August 16, 2012</comparePeriodPretty>
+ <compareSeriesPretty>(August 9 – 16, 2012) (browserCode==ie)</compareSeriesPretty>
+ <idsubdatatable>-1</idsubdatatable>
+ </row>
+ <row>
+ <avg_time_on_site_returning>0</avg_time_on_site_returning>
+ <nb_actions_per_visit_returning>0</nb_actions_per_visit_returning>
+ <bounce_rate_returning>0%</bounce_rate_returning>
+ <avg_time_on_site_new>0</avg_time_on_site_new>
+ <nb_actions_per_visit_new>0</nb_actions_per_visit_new>
+ <bounce_rate_new>0%</bounce_rate_new>
+ <compareSegment />
+ <compareSegmentPretty>All visits</compareSegmentPretty>
+ <comparePeriod>day</comparePeriod>
+ <compareDate>2012-08-12,2012-08-15</compareDate>
+ <comparePeriodPretty>August 12 – 15, 2012</comparePeriodPretty>
+ <compareSeriesPretty>(August 12 – 15, 2012) (All visits)</compareSeriesPretty>
+ <idsubdatatable>-1</idsubdatatable>
+ </row>
+ <row>
+ <avg_time_on_site_returning>0</avg_time_on_site_returning>
+ <nb_actions_per_visit_returning>0</nb_actions_per_visit_returning>
+ <bounce_rate_returning>0%</bounce_rate_returning>
+ <avg_time_on_site_new>0</avg_time_on_site_new>
+ <nb_actions_per_visit_new>0</nb_actions_per_visit_new>
+ <bounce_rate_new>0%</bounce_rate_new>
+ <compareSegment>browserCode%3D%3Dff</compareSegment>
+ <compareSegmentPretty>browserCode==ff</compareSegmentPretty>
+ <comparePeriod>day</comparePeriod>
+ <compareDate>2012-08-12,2012-08-15</compareDate>
+ <comparePeriodPretty>August 12 – 15, 2012</comparePeriodPretty>
+ <compareSeriesPretty>(August 12 – 15, 2012) (browserCode==ff)</compareSeriesPretty>
+ <idsubdatatable>-1</idsubdatatable>
+ </row>
+ <row>
+ <avg_time_on_site_returning>0</avg_time_on_site_returning>
+ <nb_actions_per_visit_returning>0</nb_actions_per_visit_returning>
+ <bounce_rate_returning>0%</bounce_rate_returning>
+ <avg_time_on_site_new>0</avg_time_on_site_new>
+ <nb_actions_per_visit_new>0</nb_actions_per_visit_new>
+ <bounce_rate_new>0%</bounce_rate_new>
+ <compareSegment>browserCode%3D%3Die</compareSegment>
+ <compareSegmentPretty>browserCode==ie</compareSegmentPretty>
+ <comparePeriod>day</comparePeriod>
+ <compareDate>2012-08-12,2012-08-15</compareDate>
+ <comparePeriodPretty>August 12 – 15, 2012</comparePeriodPretty>
+ <compareSeriesPretty>(August 12 – 15, 2012) (browserCode==ie)</compareSeriesPretty>
+ <idsubdatatable>-1</idsubdatatable>
+ </row>
+ </comparisons>
+ </result>
+</results> \ No newline at end of file
diff --git a/tests/PHPUnit/System/expected/test_OneVisitorTwoVisits_csv__API.get_month.csv b/tests/PHPUnit/System/expected/test_OneVisitorTwoVisits_csv__API.get_month.csv
index b88579e9dc..4bf360776a 100644
--- a/tests/PHPUnit/System/expected/test_OneVisitorTwoVisits_csv__API.get_month.csv
+++ b/tests/PHPUnit/System/expected/test_OneVisitorTwoVisits_csv__API.get_month.csv
Binary files differ
diff --git a/tests/PHPUnit/System/expected/test_TwoVisitors_twoWebsites_differentDays_VisitFrequency.get_firstSite_lastN__API.getProcessedReport_day.xml b/tests/PHPUnit/System/expected/test_TwoVisitors_twoWebsites_differentDays_VisitFrequency.get_firstSite_lastN__API.getProcessedReport_day.xml
index 1cbd29b47c..e1323cb324 100644
--- a/tests/PHPUnit/System/expected/test_TwoVisitors_twoWebsites_differentDays_VisitFrequency.get_firstSite_lastN__API.getProcessedReport_day.xml
+++ b/tests/PHPUnit/System/expected/test_TwoVisitors_twoWebsites_differentDays_VisitFrequency.get_firstSite_lastN__API.getProcessedReport_day.xml
@@ -50,8 +50,143 @@
<nb_actions_per_visit_new>Avg. Actions per New Visit</nb_actions_per_visit_new>
<bounce_rate_new>Bounce Rate for New Visits</bounce_rate_new>
</columns>
- <reportData />
- <reportMetadata />
+ <reportData>
+ <result prettyDate="Sunday, January 3, 2010">
+ <nb_uniq_visitors_new>2</nb_uniq_visitors_new>
+ <nb_users_new>0</nb_users_new>
+ <nb_visits_new>2</nb_visits_new>
+ <nb_actions_new>2</nb_actions_new>
+ <max_actions_new>1</max_actions_new>
+ <bounce_rate_new>100%</bounce_rate_new>
+ <nb_actions_per_visit_new>1</nb_actions_per_visit_new>
+ <avg_time_on_site_new>00:00:00</avg_time_on_site_new>
+ <nb_visits_returning>0</nb_visits_returning>
+ <nb_actions_returning>0</nb_actions_returning>
+ <nb_uniq_visitors_returning>0</nb_uniq_visitors_returning>
+ <nb_users_returning>0</nb_users_returning>
+ <max_actions_returning>0</max_actions_returning>
+ <avg_time_on_site_returning>00:00:00</avg_time_on_site_returning>
+ <nb_actions_per_visit_returning>0</nb_actions_per_visit_returning>
+ <bounce_rate_returning>0%</bounce_rate_returning>
+ </result>
+ <result prettyDate="Monday, January 4, 2010">
+ <nb_uniq_visitors_returning>1</nb_uniq_visitors_returning>
+ <nb_users_returning>0</nb_users_returning>
+ <nb_visits_returning>1</nb_visits_returning>
+ <nb_actions_returning>1</nb_actions_returning>
+ <max_actions_returning>1</max_actions_returning>
+ <bounce_rate_returning>100%</bounce_rate_returning>
+ <nb_actions_per_visit_returning>1</nb_actions_per_visit_returning>
+ <avg_time_on_site_returning>00:00:00</avg_time_on_site_returning>
+ <nb_visits_new>0</nb_visits_new>
+ <nb_actions_new>0</nb_actions_new>
+ <nb_uniq_visitors_new>0</nb_uniq_visitors_new>
+ <nb_users_new>0</nb_users_new>
+ <max_actions_new>0</max_actions_new>
+ <avg_time_on_site_new>00:00:00</avg_time_on_site_new>
+ <nb_actions_per_visit_new>0</nb_actions_per_visit_new>
+ <bounce_rate_new>0%</bounce_rate_new>
+ </result>
+ <result prettyDate="Tuesday, January 5, 2010">
+ <nb_uniq_visitors_returning>1</nb_uniq_visitors_returning>
+ <nb_users_returning>0</nb_users_returning>
+ <nb_visits_returning>1</nb_visits_returning>
+ <nb_actions_returning>5</nb_actions_returning>
+ <max_actions_returning>5</max_actions_returning>
+ <bounce_rate_returning>0%</bounce_rate_returning>
+ <nb_actions_per_visit_returning>5</nb_actions_per_visit_returning>
+ <avg_time_on_site_returning>00:15:01</avg_time_on_site_returning>
+ <nb_visits_new>0</nb_visits_new>
+ <nb_actions_new>0</nb_actions_new>
+ <nb_uniq_visitors_new>0</nb_uniq_visitors_new>
+ <nb_users_new>0</nb_users_new>
+ <max_actions_new>0</max_actions_new>
+ <avg_time_on_site_new>00:00:00</avg_time_on_site_new>
+ <nb_actions_per_visit_new>0</nb_actions_per_visit_new>
+ <bounce_rate_new>0%</bounce_rate_new>
+ </result>
+ <result prettyDate="Wednesday, January 6, 2010">
+ <nb_uniq_visitors_returning>1</nb_uniq_visitors_returning>
+ <nb_users_returning>0</nb_users_returning>
+ <nb_visits_returning>1</nb_visits_returning>
+ <nb_actions_returning>5</nb_actions_returning>
+ <max_actions_returning>5</max_actions_returning>
+ <bounce_rate_returning>0%</bounce_rate_returning>
+ <nb_actions_per_visit_returning>5</nb_actions_per_visit_returning>
+ <avg_time_on_site_returning>00:15:01</avg_time_on_site_returning>
+ <nb_visits_new>0</nb_visits_new>
+ <nb_actions_new>0</nb_actions_new>
+ <nb_uniq_visitors_new>0</nb_uniq_visitors_new>
+ <nb_users_new>0</nb_users_new>
+ <max_actions_new>0</max_actions_new>
+ <avg_time_on_site_new>00:00:00</avg_time_on_site_new>
+ <nb_actions_per_visit_new>0</nb_actions_per_visit_new>
+ <bounce_rate_new>0%</bounce_rate_new>
+ </result>
+ <result prettyDate="Thursday, January 7, 2010">
+ <nb_uniq_visitors_returning>1</nb_uniq_visitors_returning>
+ <nb_users_returning>0</nb_users_returning>
+ <nb_visits_returning>1</nb_visits_returning>
+ <nb_actions_returning>5</nb_actions_returning>
+ <max_actions_returning>5</max_actions_returning>
+ <bounce_rate_returning>0%</bounce_rate_returning>
+ <nb_actions_per_visit_returning>5</nb_actions_per_visit_returning>
+ <avg_time_on_site_returning>00:15:01</avg_time_on_site_returning>
+ <nb_visits_new>0</nb_visits_new>
+ <nb_actions_new>0</nb_actions_new>
+ <nb_uniq_visitors_new>0</nb_uniq_visitors_new>
+ <nb_users_new>0</nb_users_new>
+ <max_actions_new>0</max_actions_new>
+ <avg_time_on_site_new>00:00:00</avg_time_on_site_new>
+ <nb_actions_per_visit_new>0</nb_actions_per_visit_new>
+ <bounce_rate_new>0%</bounce_rate_new>
+ </result>
+ <result prettyDate="Friday, January 8, 2010">
+ <nb_uniq_visitors_returning>1</nb_uniq_visitors_returning>
+ <nb_users_returning>0</nb_users_returning>
+ <nb_visits_returning>1</nb_visits_returning>
+ <nb_actions_returning>5</nb_actions_returning>
+ <max_actions_returning>5</max_actions_returning>
+ <bounce_rate_returning>0%</bounce_rate_returning>
+ <nb_actions_per_visit_returning>5</nb_actions_per_visit_returning>
+ <avg_time_on_site_returning>00:15:01</avg_time_on_site_returning>
+ <nb_visits_new>0</nb_visits_new>
+ <nb_actions_new>0</nb_actions_new>
+ <nb_uniq_visitors_new>0</nb_uniq_visitors_new>
+ <nb_users_new>0</nb_users_new>
+ <max_actions_new>0</max_actions_new>
+ <avg_time_on_site_new>00:00:00</avg_time_on_site_new>
+ <nb_actions_per_visit_new>0</nb_actions_per_visit_new>
+ <bounce_rate_new>0%</bounce_rate_new>
+ </result>
+ <result prettyDate="Saturday, January 9, 2010">
+ <nb_uniq_visitors_returning>1</nb_uniq_visitors_returning>
+ <nb_users_returning>0</nb_users_returning>
+ <nb_visits_returning>1</nb_visits_returning>
+ <nb_actions_returning>5</nb_actions_returning>
+ <max_actions_returning>5</max_actions_returning>
+ <bounce_rate_returning>0%</bounce_rate_returning>
+ <nb_actions_per_visit_returning>5</nb_actions_per_visit_returning>
+ <avg_time_on_site_returning>00:15:01</avg_time_on_site_returning>
+ <nb_visits_new>0</nb_visits_new>
+ <nb_actions_new>0</nb_actions_new>
+ <nb_uniq_visitors_new>0</nb_uniq_visitors_new>
+ <nb_users_new>0</nb_users_new>
+ <max_actions_new>0</max_actions_new>
+ <avg_time_on_site_new>00:00:00</avg_time_on_site_new>
+ <nb_actions_per_visit_new>0</nb_actions_per_visit_new>
+ <bounce_rate_new>0%</bounce_rate_new>
+ </result>
+ </reportData>
+ <reportMetadata>
+ <result prettyDate="Sunday, January 3, 2010" />
+ <result prettyDate="Monday, January 4, 2010" />
+ <result prettyDate="Tuesday, January 5, 2010" />
+ <result prettyDate="Wednesday, January 6, 2010" />
+ <result prettyDate="Thursday, January 7, 2010" />
+ <result prettyDate="Friday, January 8, 2010" />
+ <result prettyDate="Saturday, January 9, 2010" />
+ </reportMetadata>
<reportTotal>
</reportTotal>
</result> \ No newline at end of file
diff --git a/tests/PHPUnit/System/expected/test_TwoVisitors_twoWebsites_differentDays__VisitFrequency.get_day.xml b/tests/PHPUnit/System/expected/test_TwoVisitors_twoWebsites_differentDays__VisitFrequency.get_day.xml
index c234bed59e..edf9ab6424 100644
--- a/tests/PHPUnit/System/expected/test_TwoVisitors_twoWebsites_differentDays__VisitFrequency.get_day.xml
+++ b/tests/PHPUnit/System/expected/test_TwoVisitors_twoWebsites_differentDays__VisitFrequency.get_day.xml
@@ -1,2 +1,117 @@
<?xml version="1.0" encoding="utf-8" ?>
-<result /> \ No newline at end of file
+<results>
+ <result period="1">
+ <result date="2010-01-03">
+ <nb_uniq_visitors_new>2</nb_uniq_visitors_new>
+ <nb_users_new>0</nb_users_new>
+ <nb_visits_new>2</nb_visits_new>
+ <nb_actions_new>2</nb_actions_new>
+ <nb_visits_converted_new>0</nb_visits_converted_new>
+ <bounce_count_new>2</bounce_count_new>
+ <sum_visit_length_new>0</sum_visit_length_new>
+ <max_actions_new>1</max_actions_new>
+ <bounce_rate_new>100%</bounce_rate_new>
+ <nb_actions_per_visit_new>1</nb_actions_per_visit_new>
+ <avg_time_on_site_new>0</avg_time_on_site_new>
+ </result>
+ <result date="2010-01-04">
+ <nb_uniq_visitors_returning>1</nb_uniq_visitors_returning>
+ <nb_users_returning>0</nb_users_returning>
+ <nb_visits_returning>1</nb_visits_returning>
+ <nb_actions_returning>1</nb_actions_returning>
+ <nb_visits_converted_returning>0</nb_visits_converted_returning>
+ <bounce_count_returning>1</bounce_count_returning>
+ <sum_visit_length_returning>0</sum_visit_length_returning>
+ <max_actions_returning>1</max_actions_returning>
+ <bounce_rate_returning>100%</bounce_rate_returning>
+ <nb_actions_per_visit_returning>1</nb_actions_per_visit_returning>
+ <avg_time_on_site_returning>0</avg_time_on_site_returning>
+ </result>
+ <result date="2010-01-05">
+ <nb_uniq_visitors_returning>1</nb_uniq_visitors_returning>
+ <nb_users_returning>0</nb_users_returning>
+ <nb_visits_returning>1</nb_visits_returning>
+ <nb_actions_returning>5</nb_actions_returning>
+ <nb_visits_converted_returning>0</nb_visits_converted_returning>
+ <bounce_count_returning>0</bounce_count_returning>
+ <sum_visit_length_returning>901</sum_visit_length_returning>
+ <max_actions_returning>5</max_actions_returning>
+ <bounce_rate_returning>0%</bounce_rate_returning>
+ <nb_actions_per_visit_returning>5</nb_actions_per_visit_returning>
+ <avg_time_on_site_returning>901</avg_time_on_site_returning>
+ </result>
+ <result date="2010-01-06">
+ <nb_uniq_visitors_returning>1</nb_uniq_visitors_returning>
+ <nb_users_returning>0</nb_users_returning>
+ <nb_visits_returning>1</nb_visits_returning>
+ <nb_actions_returning>5</nb_actions_returning>
+ <nb_visits_converted_returning>0</nb_visits_converted_returning>
+ <bounce_count_returning>0</bounce_count_returning>
+ <sum_visit_length_returning>901</sum_visit_length_returning>
+ <max_actions_returning>5</max_actions_returning>
+ <bounce_rate_returning>0%</bounce_rate_returning>
+ <nb_actions_per_visit_returning>5</nb_actions_per_visit_returning>
+ <avg_time_on_site_returning>901</avg_time_on_site_returning>
+ </result>
+ <result date="2010-01-07">
+ <nb_uniq_visitors_returning>1</nb_uniq_visitors_returning>
+ <nb_users_returning>0</nb_users_returning>
+ <nb_visits_returning>1</nb_visits_returning>
+ <nb_actions_returning>5</nb_actions_returning>
+ <nb_visits_converted_returning>0</nb_visits_converted_returning>
+ <bounce_count_returning>0</bounce_count_returning>
+ <sum_visit_length_returning>901</sum_visit_length_returning>
+ <max_actions_returning>5</max_actions_returning>
+ <bounce_rate_returning>0%</bounce_rate_returning>
+ <nb_actions_per_visit_returning>5</nb_actions_per_visit_returning>
+ <avg_time_on_site_returning>901</avg_time_on_site_returning>
+ </result>
+ <result date="2010-01-08">
+ <nb_uniq_visitors_returning>1</nb_uniq_visitors_returning>
+ <nb_users_returning>0</nb_users_returning>
+ <nb_visits_returning>1</nb_visits_returning>
+ <nb_actions_returning>5</nb_actions_returning>
+ <nb_visits_converted_returning>0</nb_visits_converted_returning>
+ <bounce_count_returning>0</bounce_count_returning>
+ <sum_visit_length_returning>901</sum_visit_length_returning>
+ <max_actions_returning>5</max_actions_returning>
+ <bounce_rate_returning>0%</bounce_rate_returning>
+ <nb_actions_per_visit_returning>5</nb_actions_per_visit_returning>
+ <avg_time_on_site_returning>901</avg_time_on_site_returning>
+ </result>
+ <result date="2010-01-09">
+ <nb_uniq_visitors_returning>1</nb_uniq_visitors_returning>
+ <nb_users_returning>0</nb_users_returning>
+ <nb_visits_returning>1</nb_visits_returning>
+ <nb_actions_returning>5</nb_actions_returning>
+ <nb_visits_converted_returning>0</nb_visits_converted_returning>
+ <bounce_count_returning>0</bounce_count_returning>
+ <sum_visit_length_returning>901</sum_visit_length_returning>
+ <max_actions_returning>5</max_actions_returning>
+ <bounce_rate_returning>0%</bounce_rate_returning>
+ <nb_actions_per_visit_returning>5</nb_actions_per_visit_returning>
+ <avg_time_on_site_returning>901</avg_time_on_site_returning>
+ </result>
+ </result>
+ <result period="2">
+ <result date="2010-01-03" />
+ <result date="2010-01-04">
+ <nb_uniq_visitors_new>1</nb_uniq_visitors_new>
+ <nb_users_new>0</nb_users_new>
+ <nb_visits_new>1</nb_visits_new>
+ <nb_actions_new>3</nb_actions_new>
+ <nb_visits_converted_new>0</nb_visits_converted_new>
+ <bounce_count_new>0</bounce_count_new>
+ <sum_visit_length_new>1</sum_visit_length_new>
+ <max_actions_new>3</max_actions_new>
+ <bounce_rate_new>0%</bounce_rate_new>
+ <nb_actions_per_visit_new>3</nb_actions_per_visit_new>
+ <avg_time_on_site_new>1</avg_time_on_site_new>
+ </result>
+ <result date="2010-01-05" />
+ <result date="2010-01-06" />
+ <result date="2010-01-07" />
+ <result date="2010-01-08" />
+ <result date="2010-01-09" />
+ </result>
+</results> \ No newline at end of file
diff --git a/tests/PHPUnit/System/expected/test_TwoVisitors_twoWebsites_differentDays__VisitFrequency.get_month.xml b/tests/PHPUnit/System/expected/test_TwoVisitors_twoWebsites_differentDays__VisitFrequency.get_month.xml
index c234bed59e..1f47da714e 100644
--- a/tests/PHPUnit/System/expected/test_TwoVisitors_twoWebsites_differentDays__VisitFrequency.get_month.xml
+++ b/tests/PHPUnit/System/expected/test_TwoVisitors_twoWebsites_differentDays__VisitFrequency.get_month.xml
@@ -1,2 +1,56 @@
<?xml version="1.0" encoding="utf-8" ?>
-<result /> \ No newline at end of file
+<results>
+ <result period="1">
+ <result date="2010-01">
+ <nb_uniq_visitors_new>2</nb_uniq_visitors_new>
+ <nb_users_new>0</nb_users_new>
+ <nb_visits_new>2</nb_visits_new>
+ <nb_actions_new>2</nb_actions_new>
+ <nb_visits_converted_new>0</nb_visits_converted_new>
+ <bounce_count_new>2</bounce_count_new>
+ <sum_visit_length_new>0</sum_visit_length_new>
+ <max_actions_new>1</max_actions_new>
+ <bounce_rate_new>100%</bounce_rate_new>
+ <nb_actions_per_visit_new>1</nb_actions_per_visit_new>
+ <avg_time_on_site_new>0</avg_time_on_site_new>
+ <nb_uniq_visitors_returning>2</nb_uniq_visitors_returning>
+ <nb_users_returning>0</nb_users_returning>
+ <nb_visits_returning>9</nb_visits_returning>
+ <nb_actions_returning>41</nb_actions_returning>
+ <nb_visits_converted_returning>0</nb_visits_converted_returning>
+ <bounce_count_returning>1</bounce_count_returning>
+ <sum_visit_length_returning>7208</sum_visit_length_returning>
+ <max_actions_returning>5</max_actions_returning>
+ <bounce_rate_returning>11%</bounce_rate_returning>
+ <nb_actions_per_visit_returning>4.6</nb_actions_per_visit_returning>
+ <avg_time_on_site_returning>801</avg_time_on_site_returning>
+ </result>
+ <result date="2010-02" />
+ <result date="2010-03" />
+ <result date="2010-04" />
+ <result date="2010-05" />
+ <result date="2010-06" />
+ <result date="2010-07" />
+ </result>
+ <result period="2">
+ <result date="2010-01">
+ <nb_uniq_visitors_new>1</nb_uniq_visitors_new>
+ <nb_users_new>0</nb_users_new>
+ <nb_visits_new>1</nb_visits_new>
+ <nb_actions_new>3</nb_actions_new>
+ <nb_visits_converted_new>0</nb_visits_converted_new>
+ <bounce_count_new>0</bounce_count_new>
+ <sum_visit_length_new>1</sum_visit_length_new>
+ <max_actions_new>3</max_actions_new>
+ <bounce_rate_new>0%</bounce_rate_new>
+ <nb_actions_per_visit_new>3</nb_actions_per_visit_new>
+ <avg_time_on_site_new>1</avg_time_on_site_new>
+ </result>
+ <result date="2010-02" />
+ <result date="2010-03" />
+ <result date="2010-04" />
+ <result date="2010-05" />
+ <result date="2010-06" />
+ <result date="2010-07" />
+ </result>
+</results> \ No newline at end of file
diff --git a/tests/PHPUnit/System/expected/test_TwoVisitors_twoWebsites_differentDays__VisitFrequency.get_week.xml b/tests/PHPUnit/System/expected/test_TwoVisitors_twoWebsites_differentDays__VisitFrequency.get_week.xml
index c234bed59e..882222bccc 100644
--- a/tests/PHPUnit/System/expected/test_TwoVisitors_twoWebsites_differentDays__VisitFrequency.get_week.xml
+++ b/tests/PHPUnit/System/expected/test_TwoVisitors_twoWebsites_differentDays__VisitFrequency.get_week.xml
@@ -1,2 +1,69 @@
<?xml version="1.0" encoding="utf-8" ?>
-<result /> \ No newline at end of file
+<results>
+ <result period="1">
+ <result date="2009-12-28,2010-01-03">
+ <nb_uniq_visitors_new>2</nb_uniq_visitors_new>
+ <nb_users_new>0</nb_users_new>
+ <nb_visits_new>2</nb_visits_new>
+ <nb_actions_new>2</nb_actions_new>
+ <nb_visits_converted_new>0</nb_visits_converted_new>
+ <bounce_count_new>2</bounce_count_new>
+ <sum_visit_length_new>0</sum_visit_length_new>
+ <max_actions_new>1</max_actions_new>
+ <bounce_rate_new>100%</bounce_rate_new>
+ <nb_actions_per_visit_new>1</nb_actions_per_visit_new>
+ <avg_time_on_site_new>0</avg_time_on_site_new>
+ </result>
+ <result date="2010-01-04,2010-01-10">
+ <nb_uniq_visitors_returning>2</nb_uniq_visitors_returning>
+ <nb_users_returning>0</nb_users_returning>
+ <nb_visits_returning>7</nb_visits_returning>
+ <nb_actions_returning>31</nb_actions_returning>
+ <nb_visits_converted_returning>0</nb_visits_converted_returning>
+ <bounce_count_returning>1</bounce_count_returning>
+ <sum_visit_length_returning>5406</sum_visit_length_returning>
+ <max_actions_returning>5</max_actions_returning>
+ <bounce_rate_returning>14%</bounce_rate_returning>
+ <nb_actions_per_visit_returning>4.4</nb_actions_per_visit_returning>
+ <avg_time_on_site_returning>772</avg_time_on_site_returning>
+ </result>
+ <result date="2010-01-11,2010-01-17">
+ <nb_uniq_visitors_returning>1</nb_uniq_visitors_returning>
+ <nb_users_returning>0</nb_users_returning>
+ <nb_visits_returning>2</nb_visits_returning>
+ <nb_actions_returning>10</nb_actions_returning>
+ <nb_visits_converted_returning>0</nb_visits_converted_returning>
+ <bounce_count_returning>0</bounce_count_returning>
+ <sum_visit_length_returning>1802</sum_visit_length_returning>
+ <max_actions_returning>5</max_actions_returning>
+ <bounce_rate_returning>0%</bounce_rate_returning>
+ <nb_actions_per_visit_returning>5</nb_actions_per_visit_returning>
+ <avg_time_on_site_returning>901</avg_time_on_site_returning>
+ </result>
+ <result date="2010-01-18,2010-01-24" />
+ <result date="2010-01-25,2010-01-31" />
+ <result date="2010-02-01,2010-02-07" />
+ <result date="2010-02-08,2010-02-14" />
+ </result>
+ <result period="2">
+ <result date="2009-12-28,2010-01-03" />
+ <result date="2010-01-04,2010-01-10">
+ <nb_uniq_visitors_new>1</nb_uniq_visitors_new>
+ <nb_users_new>0</nb_users_new>
+ <nb_visits_new>1</nb_visits_new>
+ <nb_actions_new>3</nb_actions_new>
+ <nb_visits_converted_new>0</nb_visits_converted_new>
+ <bounce_count_new>0</bounce_count_new>
+ <sum_visit_length_new>1</sum_visit_length_new>
+ <max_actions_new>3</max_actions_new>
+ <bounce_rate_new>0%</bounce_rate_new>
+ <nb_actions_per_visit_new>3</nb_actions_per_visit_new>
+ <avg_time_on_site_new>1</avg_time_on_site_new>
+ </result>
+ <result date="2010-01-11,2010-01-17" />
+ <result date="2010-01-18,2010-01-24" />
+ <result date="2010-01-25,2010-01-31" />
+ <result date="2010-02-01,2010-02-07" />
+ <result date="2010-02-08,2010-02-14" />
+ </result>
+</results> \ No newline at end of file
diff --git a/tests/PHPUnit/System/expected/test_TwoVisitors_twoWebsites_differentDays__VisitFrequency.get_year.xml b/tests/PHPUnit/System/expected/test_TwoVisitors_twoWebsites_differentDays__VisitFrequency.get_year.xml
index c234bed59e..c74cbd4a36 100644
--- a/tests/PHPUnit/System/expected/test_TwoVisitors_twoWebsites_differentDays__VisitFrequency.get_year.xml
+++ b/tests/PHPUnit/System/expected/test_TwoVisitors_twoWebsites_differentDays__VisitFrequency.get_year.xml
@@ -1,2 +1,50 @@
<?xml version="1.0" encoding="utf-8" ?>
-<result /> \ No newline at end of file
+<results>
+ <result period="1">
+ <result date="2010">
+ <nb_visits_new>2</nb_visits_new>
+ <nb_actions_new>2</nb_actions_new>
+ <nb_visits_converted_new>0</nb_visits_converted_new>
+ <bounce_count_new>2</bounce_count_new>
+ <sum_visit_length_new>0</sum_visit_length_new>
+ <max_actions_new>1</max_actions_new>
+ <bounce_rate_new>100%</bounce_rate_new>
+ <nb_actions_per_visit_new>1</nb_actions_per_visit_new>
+ <avg_time_on_site_new>0</avg_time_on_site_new>
+ <nb_visits_returning>9</nb_visits_returning>
+ <nb_actions_returning>41</nb_actions_returning>
+ <nb_visits_converted_returning>0</nb_visits_converted_returning>
+ <bounce_count_returning>1</bounce_count_returning>
+ <sum_visit_length_returning>7208</sum_visit_length_returning>
+ <max_actions_returning>5</max_actions_returning>
+ <bounce_rate_returning>11%</bounce_rate_returning>
+ <nb_actions_per_visit_returning>4.6</nb_actions_per_visit_returning>
+ <avg_time_on_site_returning>801</avg_time_on_site_returning>
+ </result>
+ <result date="2011" />
+ <result date="2012" />
+ <result date="2013" />
+ <result date="2014" />
+ <result date="2015" />
+ <result date="2016" />
+ </result>
+ <result period="2">
+ <result date="2010">
+ <nb_visits_new>1</nb_visits_new>
+ <nb_actions_new>3</nb_actions_new>
+ <nb_visits_converted_new>0</nb_visits_converted_new>
+ <bounce_count_new>0</bounce_count_new>
+ <sum_visit_length_new>1</sum_visit_length_new>
+ <max_actions_new>3</max_actions_new>
+ <bounce_rate_new>0%</bounce_rate_new>
+ <nb_actions_per_visit_new>3</nb_actions_per_visit_new>
+ <avg_time_on_site_new>1</avg_time_on_site_new>
+ </result>
+ <result date="2011" />
+ <result date="2012" />
+ <result date="2013" />
+ <result date="2014" />
+ <result date="2015" />
+ <result date="2016" />
+ </result>
+</results> \ No newline at end of file
diff --git a/tests/PHPUnit/System/expected/test_TwoVisitors_twoWebsites_differentDays_idSiteOne___VisitFrequency.get_day.xml b/tests/PHPUnit/System/expected/test_TwoVisitors_twoWebsites_differentDays_idSiteOne___VisitFrequency.get_day.xml
index c234bed59e..9265ec61ae 100644
--- a/tests/PHPUnit/System/expected/test_TwoVisitors_twoWebsites_differentDays_idSiteOne___VisitFrequency.get_day.xml
+++ b/tests/PHPUnit/System/expected/test_TwoVisitors_twoWebsites_differentDays_idSiteOne___VisitFrequency.get_day.xml
@@ -1,2 +1,94 @@
<?xml version="1.0" encoding="utf-8" ?>
-<result /> \ No newline at end of file
+<results>
+ <result period="2010-01-03">
+ <nb_uniq_visitors_new>2</nb_uniq_visitors_new>
+ <nb_users_new>0</nb_users_new>
+ <nb_visits_new>2</nb_visits_new>
+ <nb_actions_new>2</nb_actions_new>
+ <nb_visits_converted_new>0</nb_visits_converted_new>
+ <bounce_count_new>2</bounce_count_new>
+ <sum_visit_length_new>0</sum_visit_length_new>
+ <max_actions_new>1</max_actions_new>
+ <bounce_rate_new>100%</bounce_rate_new>
+ <nb_actions_per_visit_new>1</nb_actions_per_visit_new>
+ <avg_time_on_site_new>0</avg_time_on_site_new>
+ </result>
+ <result period="2010-01-04">
+ <nb_uniq_visitors_returning>1</nb_uniq_visitors_returning>
+ <nb_users_returning>0</nb_users_returning>
+ <nb_visits_returning>1</nb_visits_returning>
+ <nb_actions_returning>1</nb_actions_returning>
+ <nb_visits_converted_returning>0</nb_visits_converted_returning>
+ <bounce_count_returning>1</bounce_count_returning>
+ <sum_visit_length_returning>0</sum_visit_length_returning>
+ <max_actions_returning>1</max_actions_returning>
+ <bounce_rate_returning>100%</bounce_rate_returning>
+ <nb_actions_per_visit_returning>1</nb_actions_per_visit_returning>
+ <avg_time_on_site_returning>0</avg_time_on_site_returning>
+ </result>
+ <result period="2010-01-05">
+ <nb_uniq_visitors_returning>1</nb_uniq_visitors_returning>
+ <nb_users_returning>0</nb_users_returning>
+ <nb_visits_returning>1</nb_visits_returning>
+ <nb_actions_returning>5</nb_actions_returning>
+ <nb_visits_converted_returning>0</nb_visits_converted_returning>
+ <bounce_count_returning>0</bounce_count_returning>
+ <sum_visit_length_returning>901</sum_visit_length_returning>
+ <max_actions_returning>5</max_actions_returning>
+ <bounce_rate_returning>0%</bounce_rate_returning>
+ <nb_actions_per_visit_returning>5</nb_actions_per_visit_returning>
+ <avg_time_on_site_returning>901</avg_time_on_site_returning>
+ </result>
+ <result period="2010-01-06">
+ <nb_uniq_visitors_returning>1</nb_uniq_visitors_returning>
+ <nb_users_returning>0</nb_users_returning>
+ <nb_visits_returning>1</nb_visits_returning>
+ <nb_actions_returning>5</nb_actions_returning>
+ <nb_visits_converted_returning>0</nb_visits_converted_returning>
+ <bounce_count_returning>0</bounce_count_returning>
+ <sum_visit_length_returning>901</sum_visit_length_returning>
+ <max_actions_returning>5</max_actions_returning>
+ <bounce_rate_returning>0%</bounce_rate_returning>
+ <nb_actions_per_visit_returning>5</nb_actions_per_visit_returning>
+ <avg_time_on_site_returning>901</avg_time_on_site_returning>
+ </result>
+ <result period="2010-01-07">
+ <nb_uniq_visitors_returning>1</nb_uniq_visitors_returning>
+ <nb_users_returning>0</nb_users_returning>
+ <nb_visits_returning>1</nb_visits_returning>
+ <nb_actions_returning>5</nb_actions_returning>
+ <nb_visits_converted_returning>0</nb_visits_converted_returning>
+ <bounce_count_returning>0</bounce_count_returning>
+ <sum_visit_length_returning>901</sum_visit_length_returning>
+ <max_actions_returning>5</max_actions_returning>
+ <bounce_rate_returning>0%</bounce_rate_returning>
+ <nb_actions_per_visit_returning>5</nb_actions_per_visit_returning>
+ <avg_time_on_site_returning>901</avg_time_on_site_returning>
+ </result>
+ <result period="2010-01-08">
+ <nb_uniq_visitors_returning>1</nb_uniq_visitors_returning>
+ <nb_users_returning>0</nb_users_returning>
+ <nb_visits_returning>1</nb_visits_returning>
+ <nb_actions_returning>5</nb_actions_returning>
+ <nb_visits_converted_returning>0</nb_visits_converted_returning>
+ <bounce_count_returning>0</bounce_count_returning>
+ <sum_visit_length_returning>901</sum_visit_length_returning>
+ <max_actions_returning>5</max_actions_returning>
+ <bounce_rate_returning>0%</bounce_rate_returning>
+ <nb_actions_per_visit_returning>5</nb_actions_per_visit_returning>
+ <avg_time_on_site_returning>901</avg_time_on_site_returning>
+ </result>
+ <result period="2010-01-09">
+ <nb_uniq_visitors_returning>1</nb_uniq_visitors_returning>
+ <nb_users_returning>0</nb_users_returning>
+ <nb_visits_returning>1</nb_visits_returning>
+ <nb_actions_returning>5</nb_actions_returning>
+ <nb_visits_converted_returning>0</nb_visits_converted_returning>
+ <bounce_count_returning>0</bounce_count_returning>
+ <sum_visit_length_returning>901</sum_visit_length_returning>
+ <max_actions_returning>5</max_actions_returning>
+ <bounce_rate_returning>0%</bounce_rate_returning>
+ <nb_actions_per_visit_returning>5</nb_actions_per_visit_returning>
+ <avg_time_on_site_returning>901</avg_time_on_site_returning>
+ </result>
+</results> \ No newline at end of file
diff --git a/tests/PHPUnit/System/expected/test_TwoVisitors_twoWebsites_differentDays_idSiteOne___VisitFrequency.get_month.xml b/tests/PHPUnit/System/expected/test_TwoVisitors_twoWebsites_differentDays_idSiteOne___VisitFrequency.get_month.xml
index c234bed59e..5dbf1082e6 100644
--- a/tests/PHPUnit/System/expected/test_TwoVisitors_twoWebsites_differentDays_idSiteOne___VisitFrequency.get_month.xml
+++ b/tests/PHPUnit/System/expected/test_TwoVisitors_twoWebsites_differentDays_idSiteOne___VisitFrequency.get_month.xml
@@ -1,2 +1,33 @@
<?xml version="1.0" encoding="utf-8" ?>
-<result /> \ No newline at end of file
+<results>
+ <result period="2010-01">
+ <nb_uniq_visitors_new>2</nb_uniq_visitors_new>
+ <nb_users_new>0</nb_users_new>
+ <nb_visits_new>2</nb_visits_new>
+ <nb_actions_new>2</nb_actions_new>
+ <nb_visits_converted_new>0</nb_visits_converted_new>
+ <bounce_count_new>2</bounce_count_new>
+ <sum_visit_length_new>0</sum_visit_length_new>
+ <max_actions_new>1</max_actions_new>
+ <bounce_rate_new>100%</bounce_rate_new>
+ <nb_actions_per_visit_new>1</nb_actions_per_visit_new>
+ <avg_time_on_site_new>0</avg_time_on_site_new>
+ <nb_uniq_visitors_returning>2</nb_uniq_visitors_returning>
+ <nb_users_returning>0</nb_users_returning>
+ <nb_visits_returning>9</nb_visits_returning>
+ <nb_actions_returning>41</nb_actions_returning>
+ <nb_visits_converted_returning>0</nb_visits_converted_returning>
+ <bounce_count_returning>1</bounce_count_returning>
+ <sum_visit_length_returning>7208</sum_visit_length_returning>
+ <max_actions_returning>5</max_actions_returning>
+ <bounce_rate_returning>11%</bounce_rate_returning>
+ <nb_actions_per_visit_returning>4.6</nb_actions_per_visit_returning>
+ <avg_time_on_site_returning>801</avg_time_on_site_returning>
+ </result>
+ <result period="2010-02" />
+ <result period="2010-03" />
+ <result period="2010-04" />
+ <result period="2010-05" />
+ <result period="2010-06" />
+ <result period="2010-07" />
+</results> \ No newline at end of file
diff --git a/tests/PHPUnit/System/expected/test_TwoVisitors_twoWebsites_differentDays_idSiteOne___VisitFrequency.get_week.xml b/tests/PHPUnit/System/expected/test_TwoVisitors_twoWebsites_differentDays_idSiteOne___VisitFrequency.get_week.xml
index c234bed59e..4f0d3baa56 100644
--- a/tests/PHPUnit/System/expected/test_TwoVisitors_twoWebsites_differentDays_idSiteOne___VisitFrequency.get_week.xml
+++ b/tests/PHPUnit/System/expected/test_TwoVisitors_twoWebsites_differentDays_idSiteOne___VisitFrequency.get_week.xml
@@ -1,2 +1,46 @@
<?xml version="1.0" encoding="utf-8" ?>
-<result /> \ No newline at end of file
+<results>
+ <result period="2009-12-28,2010-01-03">
+ <nb_uniq_visitors_new>2</nb_uniq_visitors_new>
+ <nb_users_new>0</nb_users_new>
+ <nb_visits_new>2</nb_visits_new>
+ <nb_actions_new>2</nb_actions_new>
+ <nb_visits_converted_new>0</nb_visits_converted_new>
+ <bounce_count_new>2</bounce_count_new>
+ <sum_visit_length_new>0</sum_visit_length_new>
+ <max_actions_new>1</max_actions_new>
+ <bounce_rate_new>100%</bounce_rate_new>
+ <nb_actions_per_visit_new>1</nb_actions_per_visit_new>
+ <avg_time_on_site_new>0</avg_time_on_site_new>
+ </result>
+ <result period="2010-01-04,2010-01-10">
+ <nb_uniq_visitors_returning>2</nb_uniq_visitors_returning>
+ <nb_users_returning>0</nb_users_returning>
+ <nb_visits_returning>7</nb_visits_returning>
+ <nb_actions_returning>31</nb_actions_returning>
+ <nb_visits_converted_returning>0</nb_visits_converted_returning>
+ <bounce_count_returning>1</bounce_count_returning>
+ <sum_visit_length_returning>5406</sum_visit_length_returning>
+ <max_actions_returning>5</max_actions_returning>
+ <bounce_rate_returning>14%</bounce_rate_returning>
+ <nb_actions_per_visit_returning>4.4</nb_actions_per_visit_returning>
+ <avg_time_on_site_returning>772</avg_time_on_site_returning>
+ </result>
+ <result period="2010-01-11,2010-01-17">
+ <nb_uniq_visitors_returning>1</nb_uniq_visitors_returning>
+ <nb_users_returning>0</nb_users_returning>
+ <nb_visits_returning>2</nb_visits_returning>
+ <nb_actions_returning>10</nb_actions_returning>
+ <nb_visits_converted_returning>0</nb_visits_converted_returning>
+ <bounce_count_returning>0</bounce_count_returning>
+ <sum_visit_length_returning>1802</sum_visit_length_returning>
+ <max_actions_returning>5</max_actions_returning>
+ <bounce_rate_returning>0%</bounce_rate_returning>
+ <nb_actions_per_visit_returning>5</nb_actions_per_visit_returning>
+ <avg_time_on_site_returning>901</avg_time_on_site_returning>
+ </result>
+ <result period="2010-01-18,2010-01-24" />
+ <result period="2010-01-25,2010-01-31" />
+ <result period="2010-02-01,2010-02-07" />
+ <result period="2010-02-08,2010-02-14" />
+</results> \ No newline at end of file
diff --git a/tests/PHPUnit/System/expected/test_TwoVisitors_twoWebsites_differentDays_idSiteOne___VisitFrequency.get_year.xml b/tests/PHPUnit/System/expected/test_TwoVisitors_twoWebsites_differentDays_idSiteOne___VisitFrequency.get_year.xml
index c234bed59e..fb4b769b94 100644
--- a/tests/PHPUnit/System/expected/test_TwoVisitors_twoWebsites_differentDays_idSiteOne___VisitFrequency.get_year.xml
+++ b/tests/PHPUnit/System/expected/test_TwoVisitors_twoWebsites_differentDays_idSiteOne___VisitFrequency.get_year.xml
@@ -1,2 +1,29 @@
<?xml version="1.0" encoding="utf-8" ?>
-<result /> \ No newline at end of file
+<results>
+ <result period="2010">
+ <nb_visits_new>2</nb_visits_new>
+ <nb_actions_new>2</nb_actions_new>
+ <nb_visits_converted_new>0</nb_visits_converted_new>
+ <bounce_count_new>2</bounce_count_new>
+ <sum_visit_length_new>0</sum_visit_length_new>
+ <max_actions_new>1</max_actions_new>
+ <bounce_rate_new>100%</bounce_rate_new>
+ <nb_actions_per_visit_new>1</nb_actions_per_visit_new>
+ <avg_time_on_site_new>0</avg_time_on_site_new>
+ <nb_visits_returning>9</nb_visits_returning>
+ <nb_actions_returning>41</nb_actions_returning>
+ <nb_visits_converted_returning>0</nb_visits_converted_returning>
+ <bounce_count_returning>1</bounce_count_returning>
+ <sum_visit_length_returning>7208</sum_visit_length_returning>
+ <max_actions_returning>5</max_actions_returning>
+ <bounce_rate_returning>11%</bounce_rate_returning>
+ <nb_actions_per_visit_returning>4.6</nb_actions_per_visit_returning>
+ <avg_time_on_site_returning>801</avg_time_on_site_returning>
+ </result>
+ <result period="2011" />
+ <result period="2012" />
+ <result period="2013" />
+ <result period="2014" />
+ <result period="2015" />
+ <result period="2016" />
+</results> \ No newline at end of file
diff --git a/tests/PHPUnit/System/expected/test_TwoVisitors_twoWebsites_differentDays_schedrep_html_tables_and_graph__ScheduledReports.generateReport_month.original.html b/tests/PHPUnit/System/expected/test_TwoVisitors_twoWebsites_differentDays_schedrep_html_tables_and_graph__ScheduledReports.generateReport_month.original.html
index b17ed4ddde..c39b46a30b 100644
--- a/tests/PHPUnit/System/expected/test_TwoVisitors_twoWebsites_differentDays_schedrep_html_tables_and_graph__ScheduledReports.generateReport_month.original.html
+++ b/tests/PHPUnit/System/expected/test_TwoVisitors_twoWebsites_differentDays_schedrep_html_tables_and_graph__ScheduledReports.generateReport_month.original.html
@@ -5068,7 +5068,7 @@
</h2>
<img alt=""
- src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAArwAAADICAIAAACF9KXqAAAEfklEQVR4nO3cS1biQABA0ehxJ+x/SayFHtCHTufHE+IHuHckEqoqTuqRCG+n02nYw+FwOB6Pew01DMM9o+24mIebHQC+yPvhcDhv0heTh/f71IDnHfeGTffqLLufFwC8lPefXsD38e4fAO7xMQzD8XhcvKI+fmu+uOMuvne//PL8kvPD8R2HyQHz114Oni/gvM75auezLK4kLmA86WTGxTEXB9yYBQAe0cfaE5ONeXGf3t4jLzcaJkdODhiPOdmeFxew2DfzWcYP136+esrz38/HWRw8zggAD+Tv7YnJ2/rfLG7AO+7T20MtPqsSAHg+/640rN2k+Kxf/g+Jlzy67UwfJa0AYHertyduM7ksf8MB32DjNse237B4APgp/3164uabFM+3g37FGT3fXwmAl7J6pWHxwwtrB4yv+c+3xvGzvUuuLmBjlo3DNj7UsHhGG0uaDFgWCQCP622vb4R8PuX+hU9GAPA6dv6fhkfnsgEArHGlAQBIXuhrpAGAe4gGACARDQBAIhoAgEQ0AACJaAAAEtEAACSiAQBIRAMAkIgGACARDQBAIhoAgEQ0AACJaAAAEtEAACSiAQBIRAMAkIgGACARDQBAIhoAgEQ0AACJaAAAEtEAACSiAQBIRAMAkIgGACARDQBAIhoAgEQ0AACJaAAAEtEAACSiAQBIRAMAkIgGACARDQBAIhoAgEQ0AACJaAAAEtEAACSiAQBIRAMAkIgGACARDQBAIhoAgEQ0AACJaAAAEtEAACSiAQBIRAMAkIgGACARDQBAIhoAgEQ0AACJaAAAEtEAACSiAQBIRAMAkIgGACARDQBAIhoAgEQ0AACJaAAAEtEAACSiAQBIRAMAkIgGACARDQBAIhoAgEQ0AACJaAAAEtEAACSiAQBIRAMAkIgGACARDQBAIhoAgEQ0AACJaAAAEtEAACSiAQBIRAMAkIgGACARDQBAIhoAgEQ0AACJaAAAEtEAACSiAQBIRAMAkIgGACARDQBAIhoAgEQ0AACJaAAAEtEAACSiAQBIRAMAkIgGACARDQBAIhoAgEQ0AACJaAAAEtEAACSiAQBIRAMAkIgGACARDQBAIhoAgEQ0AACJaAAAEtEAACSiAQBIRAMAkIgGACARDQBAIhoAgEQ0AACJaAAAEtEAACSiAQBIRAMAkIgGACARDQBAIhoAgEQ0AACJaAAAEtEAACSiAQBIRAMAkIgGACARDQBAIhoAgEQ0AACJaAAAEtEAACSiAQBIRAMAkIgGACARDQBAIhoAgEQ0AACJaAAAEtEAACSiAQBIRAMAkIgGACARDQBAIhoAgEQ0AACJaAAAEtEAACSiAQBIRAMAkIgGACARDQBAIhoAgEQ0AACJaAAAEtEAACSiAQBIRAMAkIgGACARDQBAIhoAgEQ0AACJaAAAEtEAACSiAQBIRAMAkIgGACARDQBAIhoAgEQ0AACJaAAAEtEAACSiAQBIRAMAkIgGACARDQBAIhoAgEQ0AACJaAAAEtEAACSiAQBIRAMAkIgGACARDQBA8gczQRugNvGghAAAAABJRU5ErkJggg=="
+ src="data:image/png;base64,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"
height="200"
width="700"
margin="0 auto"/>
diff --git a/tests/PHPUnit/System/expected/test_noVisit_PeriodIsLast__VisitFrequency.get_day.xml b/tests/PHPUnit/System/expected/test_noVisit_PeriodIsLast__VisitFrequency.get_day.xml
index c234bed59e..2cc0e6ed4e 100644
--- a/tests/PHPUnit/System/expected/test_noVisit_PeriodIsLast__VisitFrequency.get_day.xml
+++ b/tests/PHPUnit/System/expected/test_noVisit_PeriodIsLast__VisitFrequency.get_day.xml
@@ -1,2 +1,10 @@
<?xml version="1.0" encoding="utf-8" ?>
-<result /> \ No newline at end of file
+<results>
+ <result period="2009-01-04" />
+ <result period="2009-01-05" />
+ <result period="2009-01-06" />
+ <result period="2009-01-07" />
+ <result period="2009-01-08" />
+ <result period="2009-01-09" />
+ <result period="2009-01-10" />
+</results> \ No newline at end of file
diff --git a/tests/PHPUnit/System/expected/test_noVisit_PeriodIsLast__VisitFrequency.get_week.xml b/tests/PHPUnit/System/expected/test_noVisit_PeriodIsLast__VisitFrequency.get_week.xml
index c234bed59e..e0d8bf88a0 100644
--- a/tests/PHPUnit/System/expected/test_noVisit_PeriodIsLast__VisitFrequency.get_week.xml
+++ b/tests/PHPUnit/System/expected/test_noVisit_PeriodIsLast__VisitFrequency.get_week.xml
@@ -1,2 +1,10 @@
<?xml version="1.0" encoding="utf-8" ?>
-<result /> \ No newline at end of file
+<results>
+ <result period="2008-12-29,2009-01-04" />
+ <result period="2009-01-05,2009-01-11" />
+ <result period="2009-01-12,2009-01-18" />
+ <result period="2009-01-19,2009-01-25" />
+ <result period="2009-01-26,2009-02-01" />
+ <result period="2009-02-02,2009-02-08" />
+ <result period="2009-02-09,2009-02-15" />
+</results> \ No newline at end of file