Sponsored Content
The Lounge What is on Your Mind? Debugging Our Computer Science Trivia Feature Post 303041997 by Neo on Tuesday 10th of December 2019 08:55:10 PM
Old 12-10-2019
Great debugging job!

Victor (vbe) found another issue in the trivia DB and I have confirmed the bug and fixed it.

Also. I have adjusted all recorded user scores to this question (47 total adjustments) to reflect the correct answer.

FYI, we are approaching 40,000 answered questions in computer trivia.

Thank you so much Victor for finding this bug so I could fit and adjust the scores easily!

Well done!

OBTW, Victor also leads everyone in computer trivia with a total score of over 91%, having answered 158 questions to date. Victor's current score of 91.1% is a full 20% higher than the average score of all members, which is 70.1%; and his score is close to 50% higher than for guests (unregistered members).

This is really impressive, as the questions can be very tricky at times and Victor is a native French speaking, not English.

Wow! Very impressive.
 

7 More Discussions You Might Find Interesting

1. What is on Your Mind?

Computer Science and Information Technology

Hi, I haven't posted on the forums for a while now, I tried to find the most appropriate section for this post, but if this is in the wrong section please forgive me. First, let me say I'm a sophomore in HS. I know that job wise I definitely want to do something in computers. A while ago I was... (5 Replies)
Discussion started by: hpicracing
5 Replies

2. Programming

Is Web Development is a part of computer science ?

I am now a student in university in 2nd year. I am studying computer science. But I am not sure what type of jobs computer science provide. I know some of them are software programming or network management. Recently, I hear some about Web Development. I wonder if it is a part of computer science.... (1 Reply)
Discussion started by: Anna Hussie
1 Replies

3. Web Development

Is Web Development is a part of computer science ?

I am now a student in university in 2nd year. I am studying computer science. But I am not sure what type of jobs computer science provide. I know some of them are software programming or network management. Recently, I hear some about Web Development. I wonder if it is a part of computer... (3 Replies)
Discussion started by: Anna Hussie
3 Replies

4. What is on Your Mind?

Forum Trivial Pursuit - New Computer Science and Mathematics Trivia for UNIX.com

I have added a new experimental "Computer Science and Mathematics Trivia - True or False" section in the discussions, currently under the tags box. In the future, I plan to Expand this feature to add more trivia categories from math, science and technology. Keep track of correct and... (20 Replies)
Discussion started by: Neo
20 Replies

5. What is on Your Mind?

1000+ Computer Science Trivia Questions at UNIX.COM

The UNIX and Linux Forums now has over 1000 TRUE / FALSE computer science and computer related trivia question in our database. These questions are of relatively high quality (compared to similar sites on the web) and are fun (according to feedback by users). In the first week during the... (1 Reply)
Discussion started by: Neo
1 Replies

6. What is on Your Mind?

New Member and Country Computer Trivia Leaderboards

Thanks to Akshay, who helped me write the core MySQL queries, we now have two new draft leaderboards, by (1) member and by (2) country: https://www.unix.com/trivia_stats.php Currently milhan leads the members with a high score of 90%: ... (3 Replies)
Discussion started by: Neo
3 Replies

7. What is on Your Mind?

Computer Trivia Feature Tops 50,000 Questions Answered

Just noticed that our successful computer trivia feature (stats here) has surpassed over 50,000 questions answered by users: https://www.unix.com/trivia_stats.php This was a coding effort worth while and I'm pleased to see so many people enjoying it in such a short time since it was released... (3 Replies)
Discussion started by: Neo
3 Replies
Bio::SearchDist(3pm)					User Contributed Perl Documentation				      Bio::SearchDist(3pm)

NAME
Bio::SearchDist - A perl wrapper around Sean Eddy's histogram object SYNOPSIS
$dis = Bio::SearchDist->new(); foreach $score ( @scores ) { $dis->add_score($score); } if( $dis->fit_evd() ) { foreach $score ( @scores ) { $evalue = $dis->evalue($score); print "Score $score had an evalue of $evalue "; } } else { warn("Could not fit histogram to an EVD!"); } DESCRIPTION
The Bio::SearchDist object is a wrapper around Sean Eddy's excellent histogram object. The histogram object can bascially take in a number of scores which are sensibly distributed somewhere around 0 that come from a supposed Extreme Value Distribution. Having add all the scores from a database search via the add_score method you can then fit a extreme value distribution using fit_evd(). Once fitted you can then get out the evalue for each score (or a new score) using evalue($score). The fitting procedure is better described in Sean Eddy's own code (available from http://hmmer.janelia.org/, or in the histogram.h header file in Compile/SW). Bascially it fits a EVD via a maximum likelhood method with pruning of the top end of the distribution so that real positives are discarded in the fitting procedure. This comes from an orginally idea of Richard Mott's and the likelhood fitting is from a book by Lawless [should ref here]. The object relies on the fact that the scores are sensibly distributed around about 0 and that integer bins are sensible for the histogram. Scores based on bits are often ideal for this (bits based scoring mechanisms is what this histogram object was originally designed for). CONTACT
The original code this was based on comes from the histogram module as part of the HMMer2 package. Look at http://hmmer.janelia.org/ Its use in Bioperl is via the Compiled XS extension which is cared for by Ewan Birney (birney@ebi.ac.uk). Please contact Ewan first about the use of this module FEEDBACK
Mailing Lists User feedback is an integral part of the evolution of this and other Bioperl modules. Send your comments and suggestions preferably to one of the Bioperl mailing lists. Your participation is much appreciated. bioperl-l@bioperl.org - General discussion http://bioperl.org/wiki/Mailing_lists - About the mailing lists Support Please direct usage questions or support issues to the mailing list: bioperl-l@bioperl.org rather than to the module maintainer directly. Many experienced and reponsive experts will be able look at the problem and quickly address it. Please include a thorough description of the problem with code and data examples if at all possible. Reporting Bugs Report bugs to the Bioperl bug tracking system to help us keep track the bugs and their resolution. Bug reports can be submitted via the web: https://redmine.open-bio.org/projects/bioperl/ APPENDIX
The rest of the documentation details each of the object methods. Internal methods are usually preceded with a _ add_score Title : add_score Usage : $dis->add_score(300); Function: Adds a single score to the distribution Returns : nothing Args : fit_evd Title : fit_evd Usage : $dis->fit_evd(); Function: fits an evd to the current distribution Returns : 1 if it fits successfully, 0 if not Args : fit_Gaussian Title : fit_Gaussian Usage : Function: Example : Returns : Args : evalue Title : evalue Usage : $eval = $dis->evalue($score) Function: Returns the evalue of this score Returns : float Args : _engine Title : _engine Usage : $obj->_engine($newval) Function: underlyine bp_sw:: histogram engine Returns : value of _engine Args : newvalue (optional) perl v5.14.2 2012-03-02 Bio::SearchDist(3pm)
All times are GMT -4. The time now is 08:46 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy