Results 1 to 9 of 9

Thread: Team stats

  1. #1

    Team stats

    Is it possible to get team stats on projects? Like, you write in the team id for every project and get stats for those projects in one image?

  2. #2
    Administrator Bok's Avatar
    Join Date
    Oct 2003
    Location
    Wake Forest, North Carolina, United States
    Posts
    24,451
    Blog Entries
    13
    It's certainly possible (and quite easy), but I've never coded it.

    Let me see what we can come up with.

  3. #3
    Senior Member paleseptember's Avatar
    Join Date
    Nov 2005
    Location
    Wollongong, Australia
    Posts
    290
    Go Bok! Go!

    \o\ \o| |o| |o/ /o/

    (Your own personal Mexican Wave )

  4. #4
    Quote Originally Posted by Bok View Post
    It's certainly possible (and quite easy), but I've never coded it.

    Let me see what we can come up with.
    Wow that would be awesome.

  5. #5
    Free-DC Semi-retire gopher_yarrowzoo's Avatar
    Join Date
    Mar 2002
    Location
    Knoxville, TN
    Posts
    3,985
    you mean like the individual ones that get done for each user but for the whole team, should be easy enough providing I can read off the data of something.
    Semi-retired from Free-DC...
    I have some time to help.....
    I need a new laptop,but who needs a laptop when you have a phone...
    Now to remember my old computer specs..


  6. #6
    Quote Originally Posted by gopher_yarrowzoo View Post
    you mean like the individual ones that get done for each user but for the whole team, should be easy enough providing I can read off the data of something.
    ye, like it says:

    teamname
    project totalpoints
    project2 totalpoints

  7. #7
    Anyway of listing how many users each team has in total, all Boinc projects??

  8. #8
    Administrator Bok's Avatar
    Join Date
    Oct 2003
    Location
    Wake Forest, North Carolina, United States
    Posts
    24,451
    Blog Entries
    13
    you mean a tally of distinct(users) across Boinc projects within a single team?

    It's doable...but bear in mind it would take into account any slight variation on name..

    Bok

    p.s.

    mysql> select count(distinct(nick)) from boinc_user a,boinc_team b where a.proj = b.proj and a.team0=b.id and b.team = 'Ars Technica';
    +-----------------------+
    | count(distinct(nick)) |
    +-----------------------+
    | 2380 |
    +-----------------------+
    1 row in set (0.25 sec)

  9. #9
    Thanks, I was curious as to how many Arsians were still left.

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •