Forum Moderators: DixonJones
The following is what I have so far -
Stats:
sum all recored visits = total visits
sum visits for past 7 days = visits this week
sum of total/total number of days = mean average visits
sum of total for past 7 days/7 = this week's mean average visits
this week's mean average visits - mean average visits = change in average
(this week's mean average visits/mean average visits) * 100 = % change in average for week
(sum visits for past 7 days/sum all recored visits) * 100 = % of total visits that occured this week
Used on Graphs (My friend sent me these):
SUM(last seven days)/7 = 7 day average
SUM(last 14 of 7 day average)/14 = 14 day average
(Day1*1)+(Day2*2)+(Day3*3)+(Day4*4)+(Day5*5)+(Day6*6)+(Day7*7))/23 = Weighted Moving Average
SUM(Last 10 days)/10 = Exponential Moving Average
Does anyone have any other suggestions?
Thanks.
Do you just have the totals for each day? Or do you have more?
The totals are worked out using a query that excludes the internal IP for my company and counts the number of records returned for each particular day in the log so each IP is recorded uniquely.
Thanks.
The following is an example of a query that I use to check the number of visitors to a particular page:
SELECT UsageData.[c-ip] FROM UsageData GROUP BY UsageData.[c-ip], UsageData.[cs-uri-stem], UsageData.[cs-uri-query], UsageData.date HAVING UsageData.[c-ip]<>"10.0.0.1" AND Left(UsageData.[cs-uri-stem],12)="Default.htm" AND UsageData.[cs-uri-query]="-" AND UsageData.date=#26-Mar-2003 0:00:00#
I then do a recordcount on the query results to check the number of visitors.
Thanks.
They'd provide a variety of stats for your boss, and you could take an early day ;)
This is useful when you place an advertisement listing a particular page and want to track visitors (I was asked to check the visitors to a position description page on my company's site once which is why I started using a database to analyse the logs.)
Thanks.
Looks impressive showing 2 campaigns over time on a line graph and if youre really going to town you can plot a curve of cumalative payback and use built in functions for rate of return.