Replies: 1 comment
-
Yeah, this isn't very easy, I'm sorry to say. The data model is pretty complicated and pretty large, but here's what I would do. I'd start by grabbing the bulk data files that indicates what Opinion objects cite what Opinion objects:
On its own, this file is useless. It's just three columns of numbers:
In human terms:
Simple enough, and you could load this up into a weighted directed graph using the
That'd give you a nice graph.1 Anyhow, you only wanted opinions from SCOTUS. This should be possible,2 and to do this you have to join a number of bulk data files:
So to find only the Opinion objects in SCOTUS, you'll need to join the data together:
And those numbers in the FootnotesFootnotes
|
Beta Was this translation helpful? Give feedback.
-
I'm a {professor|journalists|person} that wants to work with the citation network of SCOTUS cases. I want to use Python and, ideally, networkx. How would I do this? Is the bulk data best or the API or replication?
Any tips/tricks?
Beta Was this translation helpful? Give feedback.
All reactions