Just to add a little perspective, the career of the average #1 draft choice is akin to that of former Dallas cowboys running back Julius Jones. That's not the average first round draft choice, that's the average #1 pick. PFR published the work in 2012. You'll need the Wayback machine to find it these days. Taco was picked 28th, and by that time, the career AV of the average pick is more in the 20s.
Ok, from my store of data..
Code:
mysql> describe avofdrpos;
+-------+---------+------+-----+---------+-------+
| Field | Type | Null | Key | Default | Extra |
+-------+---------+------+-----+---------+-------+
| pos | int(11) | NO | PRI | NULL | |
| av | int(11) | NO | | NULL | |
+-------+---------+------+-----+---------+-------+
2 rows in set (0.00 sec)
mysql> select * from avofdrpos where pos > 19 and pos < 30;
+-----+----+
| pos | av |
+-----+----+
| 20 | 29 |
| 21 | 30 |
| 22 | 27 |
| 23 | 28 |
| 24 | 29 |
| 25 | 24 |
| 26 | 28 |
| 27 | 25 |
| 28 | 26 |
| 29 | 25 |
+-----+----+
10 rows in set (0.02 sec)
mysql>
So, those of you thinking you always get a world beater at #28, not so. Average AV of the #28 draft pick as of 2012 is 26 AV.
D-