Author Topic: Project Statistics  (Read 135507 times)

0 Members and 5 Guests are viewing this topic.

Offline yakra

  • TM Collaborator
  • Hero Member
  • *****
  • Posts: 4234
  • Last Login:February 13, 2024, 07:19:36 pm
  • I like C++
Re: Project Statistics
« Reply #195 on: November 21, 2020, 01:08:31 pm »
How many times have our 290 .list files been updated, including the initial commit?
as of d9478ee682bf87d4eed0b99778242cec4a2372f4
Arithmetic mean: 43.3
Median: 17
Standard Deviation: 73.3

michih.list has the most updates, at 630, which is 8 standard deviations above mean.
cl94 is in 2nd place at 372, 4.5 standard deviations above mean.
32 files (11%) have had only one commit ever.

How often is the average .list file updated?
Geometric mean: 31.9 days
Median: 34.5 days
LOL, I don't know what measure of central tendency this is: 4.61 days

Most frequently updated is riiga.list at 0.0016 days between its two commits. :P Not exactly statistically significant, is it? ;D
Second place is vsaharan1897.list at 1.0847 days between its two commits.
Least frequently updated (among those that can be calculated, with >1 commit of course) is noelbotevera.list at 1290.0176 days between its two commits.
michih updates every 3.1352 days.

Code: [Select]
# This will work on Linux, but not FreeBSD. :(
cd $HOME/TravelMapping/UserData/list_files
for u in *; do
  newstr=$(git log -n 1 $u | grep '^Date:' | sed -r 's~^Date: +~~')
  newest=$(date +%s --date="$(echo $newstr | sed -r 's~ [+\-][0-9]{4}$~~')")
  newest=$(echo $newest $(echo $newstr | sed -r 's~.* (.*)..$~\1~') '*' 3600 | bc)
  oldstr=$(git log --follow $u | grep '^Date:' | tail -n 1 | sed -r 's~^Date: +~~')
  oldest=$(date +%s --date="$(echo $oldstr | sed -r 's~ [+\-][0-9]{4}$~~')")
  oldest=$(echo $oldest $(echo $oldstr | sed -r 's~.* (.*)..$~\1~') '*' 3600 | bc)
  updqty=$(git log --follow $u | grep '^Date:' | wc -l)
  if [ $updqty -gt 1 ]; then
    echo -en "$u\t$updqty\t"
    echo "scale=4; ($newest - $oldest) / ($updqty - 1) / 86400" | bc
  fi
done
« Last Edit: November 21, 2020, 08:47:36 pm by yakra »
Sri Syadasti Syadavaktavya Syadasti Syannasti Syadasti Cavaktavyasca Syadasti Syannasti Syadavatavyasca Syadasti Syannasti Syadavaktavyasca

Offline osu-lsu

  • Full Member
  • ***
  • Posts: 163
  • Last Login:Yesterday at 05:54:12 pm
Re: Project Statistics
« Reply #196 on: November 21, 2020, 08:13:33 pm »
Michih might be the leader for total different regions traveled in, with 86.

Offline yakra

  • TM Collaborator
  • Hero Member
  • *****
  • Posts: 4234
  • Last Login:February 13, 2024, 07:19:36 pm
  • I like C++
Re: Project Statistics
« Reply #197 on: November 21, 2020, 08:44:14 pm »
Michih might be the leader for total different regions traveled in, with 86.
for u in *; do echo -en "$u\t"; echo $(grep -n -m 1 '^System' $u | cut -f1 -d:) - $(grep -n -m 1 '^Overall by region:' $u | cut -f1 -d:) - 1 | bc; done

dharwood.log   148
ua747sp.log    143
sneezy.log      91
bhemphill.log   87
michih.log      86


Who has the most active systems?
for u in *; do echo -en "$u\t"; grep '^System .* (active) overall:' $u | grep -v '(0\.00%)$' | wc -l; done

dharwood.log   171
cinx.log       136
michih.log     133
ua747sp.log    132
bogdymol.log   118



Who has the most active+preview systems?
for u in *; do echo -en "$u\t"; grep '^System .* ([a-z]\+) overall:' $u | grep -v '(0\.00%)$' | wc -l; done

dharwood.log   212
michih.log     163
ua747sp.log    163
cinx.log       146
panda80.log    135
« Last Edit: November 21, 2020, 09:08:43 pm by yakra »
Sri Syadasti Syadavaktavya Syadasti Syannasti Syadasti Cavaktavyasca Syadasti Syannasti Syadavatavyasca Syadasti Syannasti Syadavaktavyasca

Offline michih

  • TM Collaborator
  • Hero Member
  • *****
  • Posts: 4555
  • Last Login:Today at 04:44:01 pm
Re: Project Statistics
« Reply #198 on: November 22, 2020, 02:07:28 am »
This dharwood.... :) I don't see that I will ever travel another 63 regions. Would only be possible with an extensive US travel. But traveling 50 new systems - mainly new departement systems in France? - would be a challenge :D

Offline yakra

  • TM Collaborator
  • Hero Member
  • *****
  • Posts: 4234
  • Last Login:February 13, 2024, 07:19:36 pm
  • I like C++
Re: Project Statistics
« Reply #199 on: December 11, 2020, 11:40:27 am »
The average Route has 13.5 HighwaySegments.
Sri Syadasti Syadavaktavya Syadasti Syannasti Syadasti Cavaktavyasca Syadasti Syannasti Syadavatavyasca Syadasti Syannasti Syadavaktavyasca

Offline michih

  • TM Collaborator
  • Hero Member
  • *****
  • Posts: 4555
  • Last Login:Today at 04:44:01 pm
Re: Project Statistics
« Reply #200 on: December 25, 2020, 04:45:12 am »
I’ll have time the week after Christmas to deal with anything that needs to be addressed prior to activation.

With the upcoming activation of usaar we will have 299 active systems for more than 1.1 million miles soon :) What will be system no. 300?

Offline osu-lsu

  • Full Member
  • ***
  • Posts: 163
  • Last Login:Yesterday at 05:54:12 pm
Re: Project Statistics
« Reply #201 on: December 25, 2020, 10:14:49 am »
I’ll have time the week after Christmas to deal with anything that needs to be addressed prior to activation.

With the upcoming activation of usaar we will have 299 active systems for more than 1.1 million miles soon :) What will be system no. 300?

Hopefully usala

Offline si404

  • TM Collaborator
  • Hero Member
  • *****
  • Posts: 1948
  • Last Login:Today at 01:42:46 pm
Re: Project Statistics
« Reply #202 on: December 25, 2020, 12:45:45 pm »
How close is usala to being done? We're likely to reach 300 systems by twelfth night.

Offline froggie

  • TM Collaborator
  • Hero Member
  • *****
  • Posts: 801
  • Last Login:Yesterday at 07:53:11 pm
Re: Project Statistics
« Reply #203 on: December 25, 2020, 02:01:22 pm »
usaal has been waiting for peer review, though it probably would take more than 12 days.

Offline michih

  • TM Collaborator
  • Hero Member
  • *****
  • Posts: 4555
  • Last Login:Today at 04:44:01 pm
Re: Project Statistics
« Reply #204 on: December 25, 2020, 02:28:26 pm »
Louisiana was reviewed and is still in preview. Alabama is also in preview but was not yet reviewed.

Offline mapcat

  • TM Collaborator
  • Hero Member
  • *****
  • Posts: 1627
  • Last Login:Today at 04:37:32 pm
Re: Project Statistics
« Reply #205 on: December 25, 2020, 09:25:37 pm »
I won't have time to finish addressing usala's peer review right away. Things are unsettled for the beginning of 2021, so my best guess is that I'll have a little time each week, but won't be wrapping it up until March at the earliest.
Clinched:

Offline SSOWorld

  • Full Member
  • ***
  • Posts: 222
  • Last Login:Yesterday at 09:35:08 pm
Re: Project Statistics
« Reply #206 on: December 27, 2020, 08:29:52 am »
I’ll have time the week after Christmas to deal with anything that needs to be addressed prior to activation.

With the upcoming activation of usaar we will have 299 active systems for more than 1.1 million miles soon :) What will be system no. 300?
My bet's on usams making a miraculous appearance including peer review, but given froggie's schedule and priorities - all bets are off 🐸

speaking of usams...
As the only state/provincial system left to draft in the U.S. and Canada, I'd love to see this system get some priority.  Froggie, do you think this will be a priority for you in the near term, and if not, would you be willing to accept some help in drafting this if someone's willing to do it?
I see I'm not the only one inquiring 🦝
« Last Edit: December 27, 2020, 08:33:21 am by SSOWorld »
Completed:
* Systems: DC, WI
* by US State: AR: I&; AZ: I; DE: I; DC: I, US, DC; IL: I; IN: I*; IA: I, KS: I; MD: I, MA: I, MI: I; MN: I; MO: I*; NE: I; NJ, I; OH: I; RI: I; SD: I; WA: I; WV: I; WI: I,US,WI; (AR, IN pending expansions.)

*Previously completed

Offline michih

  • TM Collaborator
  • Hero Member
  • *****
  • Posts: 4555
  • Last Login:Today at 04:44:01 pm
Re: Project Statistics
« Reply #207 on: January 03, 2021, 02:14:12 am »
With the activation of four Australian systems last night, we have 303 active systems for currently 1,117,815 miles.
There are also some new preview systems (see https://travelmapping.net/devel/updates.php) which expands to 1,493,384 miles now - close to 1.5m!

Figures can be found on the home page: https://travelmapping.net/

Offline michih

  • TM Collaborator
  • Hero Member
  • *****
  • Posts: 4555
  • Last Login:Today at 04:44:01 pm
Re: Project Statistics
« Reply #208 on: January 12, 2021, 09:24:09 am »
We have more than 1.5 million miles in preview + active systems now: "66,328 routes for 1,500,132 miles" :)

Offline michih

  • TM Collaborator
  • Hero Member
  • *****
  • Posts: 4555
  • Last Login:Today at 04:44:01 pm
Re: Project Statistics
« Reply #209 on: February 06, 2021, 05:15:21 am »
We have 300 "users" (.list files) now: https://travelmapping.net/stat.php