Viewing 15 posts - 61 through 75 (of 105 total)
Hi Jeff,
Thanks for commenting. At this point I don't, but I haven't put Dwain's code in production. One of my principles of the help I get on this forum is...
February 1, 2013 at 8:30 pm
Thanks again, Dwain. That is super helpful. I was inner joining on the date column, and while it didn't leave NULLs, it also kicked out several rows (whereas my left...
February 1, 2013 at 7:27 am
I LOVE the solutions you all provided! Thanks a ton for the help! I'm learning a lot from playing with what you all wrote in my test environment. Super helpful.
Dwain,...
January 24, 2013 at 12:52 pm
Okay, two posts above does have the correct dataset (which was the original dataset). I was confused for a moment whether the median in a quartile included the two averaged...
January 23, 2013 at 1:33 pm
EDIT: On review, the original dataset above is correct. I really apologize for the confusion. I'll put in back in when I get back to my office.
January 23, 2013 at 11:30 am
Thanks a ton, Dwain.
Just for background (may not be needed) here are a couple of links regarding the math for box-and-whisker charts (or box plots)
http://www.purplemath.com/modules/boxwhisk.htm
Essentially, I need five things: median,...
January 23, 2013 at 7:45 am
I'm just going to bump this because I rewrote the above post and added what I've got to date...
January 22, 2013 at 1:37 pm
Okay, using Dwain's suggestion I'm close to getting everything working. My only problem is the row_number in my inner query isn't working well when the numbers are the same. For...
January 22, 2013 at 8:43 am
Below another attempt, but I seem to be running into the same problem. For instance, 2012-03-01 should produce 90.5, but the below gives me 89.25.
SELECT
CourseDate,
AVG(CAST(Grade AS Numeric))
FROM
(
SELECT
CourseDate,
Grade,
ROW_NUMBER() OVER (
PARTITION...
January 22, 2013 at 8:33 am
Alright, its time to confess I'm still not getting this. Would anyone mind taking my original DDL and calculating median and lower/upper quartiles? I think if I can see it...
January 22, 2013 at 7:38 am
Actually, I'm having some trouble converting over the example to my sample table above. I just took the grades for 03-01-2012. The median should be the average between 90 and...
January 17, 2013 at 4:40 pm
Awesome. Thanks a ton!
January 17, 2013 at 2:27 pm
Bump.
Just thought I would check one more time.
December 20, 2012 at 10:01 am
Again this is really helpful. I hope you all won't mind a follow-up question:
What is the difference between...
WHERE [column] IN ([subquery])
and
WHERE EXISTS ([subquery])
?
I've been trying to read on it...
December 17, 2012 at 6:49 pm
I really apologize for the typo! Typo notwithstanding, you guys gave me exactly what I was looking for. Thanks alot for the help!
December 17, 2012 at 5:38 pm
Viewing 15 posts - 61 through 75 (of 105 total)