Dear all,
I hope you are doing well. I wanted to draw a judge-time graph from case-time data. Specifically, I have the following data set where rows represent cases filed in the courts (e.g. a case 5052013 with two judges Amin Ud Din Khan and Abid Aziz Khan Sheikh forms the first two rows):
I want to draw a scatter plot graph where my "StateWins" is y-axis and my "yeardecision" is x-axis where I have each point as an individual judge (judgename).
Basically, I want to compare judges just before the decision year 2010 with judges just after the threshold 2010 decisonyears.
I am not sure I can sort my data to get judge-time scatter plot?
Any one of your help in this regard will really be appreciated. Thank you.
Kind Regards,
Roger
I hope you are doing well. I wanted to draw a judge-time graph from case-time data. Specifically, I have the following data set where rows represent cases filed in the courts (e.g. a case 5052013 with two judges Amin Ud Din Khan and Abid Aziz Khan Sheikh forms the first two rows):
Code:
* Example generated by -dataex-. To install: ssc install dataex clear input str31 idcaseyear int(yearfiled yeardecision) str32 judgename byte StateWins int caselag byte(lawyer_number AFR criminal constitutional) int pagesjudgenum "5052013" 2013 2013 "Amin Ud Din Khan" . 0 2 1 0 1 . "5052013" 2013 2013 "Abid Aziz Sheikh" 0 0 2 1 0 1 . "162007" 2007 2009 "Syed Iftikhar Hussain Shah" . 6 3 1 0 0 . "162007" 2007 2009 "Shoaib Saeed" . 6 3 1 0 0 . "792013" 2013 2013 "Imtiaz Ahmed" . 0 2 1 0 1 . "792013" 2013 2013 "Amin Ud Din Khan" 0 0 2 1 0 1 . "3632012" 2012 2013 "Syed Iftikhar Hussain Shah" . 1 2 1 0 0 . "3672004" 2004 2007 "Abdus Sattar Asghar" . 9 3 1 0 0 . "102012" 2012 2013 "Syed Mansoor Ali Shah" . 1 4 1 0 0 . "46382011" 2011 2013 "Umar Ata Bandial" . 2 2 1 0 1 . end
Basically, I want to compare judges just before the decision year 2010 with judges just after the threshold 2010 decisonyears.
I am not sure I can sort my data to get judge-time scatter plot?
Any one of your help in this regard will really be appreciated. Thank you.
Kind Regards,
Roger
Comment