SlideShare uma empresa Scribd logo
1 de 67
Quantitative
Methods
for
Lawyers Exploring Data in R
Loading Datasets
R Boot Camp - Part 1
Class #14
@ computational
computationallegalstudies.com
professor daniel martin katz danielmartinkatz.com
lexpredict.com slideshare.net/DanielKatz
A Place to Get Familiar
with the Language
Can You Earn
All 7 Badges ?
http://tryr.codeschool.com/
The Cheat Sheet
http://cran.r-project.org/doc/contrib/Short-refcard.pdf
Download It, Print It and Keep it
with you when you are working:
This can be extremely helpful
Let Me Start By
Flagging Some
Additional Resources
that are Available to
Learn R
http://www.ats.ucla.edu/stat/r/
https://www.coursera.org/course/compdata
SignUp Here:
Videos Are Here:
http://www.youtube.com/watch?
v=EiKxy5IecUw&list=PL7Tw2kQ2ed
vpNEGrU0cGKwmdDRKc5A6C4
http://www.r-bloggers.com/That is Me :)
Wearing Google Glasses
http://www.programmingr.com/
http://www.statmethods.net/
http://www.stat.yale.edu/~jay/JSM2012/PDFs/intro.pdf
http://cran.r-project.org/web/packages/IPSUR/vignettes/IPSUR.pdf
A 412 Page Book on Probability and Statistics Using R
As You Learn More Take a Look at the Style Guide
Produced By
http://google-styleguide.googlecode.com/svn/trunk/Rguide.xml
Setting Your
Working Directory
in _
Initially we need to
make sure we
understand what
directory / folder R
is using
We use
getwd()
in order to
determine the
current working
directory
We use
getwd()
in order to
determine the
current working
directory
This is a Mac
file extension
but I am in my
Users/katzd
folder
Within this
folder is my
Desktop so lets
go there
Within this
folder is my
Desktop so lets
go there
I have now Set
my Working
Directory to the
Desktop
Actually I want
to point this to
my R folder
which is located
on my Desktop
If you retype
the command
add a slash and
hit tab ...
this menu will
pop up and you
can find the “R”
folder
The use of tab
is very helpful
as it can be
used to figure
out how to
complete lots of
arguments in R
So now I have
my directory
setup properly
Loading a Dataset(s)
into r
To Get Started You
Need to Be Able to
Load a Dataset(s)
into r
In general, your
dataset(s) is going to
be either located
either on
your computer
or
online
This is Calvin Johnson of the Detroit Lions
It is located on this website:
http://s3.amazonaws.com/
KatzCloud/Calvin_Test_Data.csv
I have made available to
you a simple dataset
featuring game by game
statistics for each game in
Calvin's professional career.
How Do I Load
Datasets from the
Internet ?
There are various file
formats in which
your data may be
located
Subject to limitations
such as terms of
service, etc.
It is quite possible to
turn anything online
into your dataset
http://computationallegalstudies.com/2009/07/01/how-
python-can-turn-the-internet-into-your-dataset-part-1/
We will focus upon
loading the most
common dataset
formats
.dta .csv .xls
This is Calvin Johnson of the Detroit Lions
It is located on this website:
http://s3.amazonaws.com/
KatzCloud/Calvin_Test_Data.csv
Note the file extension of .csv
As you
learned
while
getting
your 7
badges
We Will Need to Assign The
Dataset a Name Once We
Load it into R
Here are all of the default
settings including
header=TRUE
Here Read in
a .CSV file
using the full
URL
<-
This is used to
assign an
object
Here I have
given the set
the name
calvin_game_data
If you have
downloaded
the .CSV file
locally to your
machine than
make sure that
the path
extension is set
to the location
where the data
set currently
resides
Type this
and
then hit tab when
your cursor is
between the
quotes
(this will bring up
all files within the
current working
directory ... in this
case all files on
my desktop
I then select the
Calvin_Test_Data.csv
Getting Rid of the NA’s
If you want to view the data in a spreadsheet form:
View(calvin_game_data)
Notice that we have an issue with extra rows full of NA's. We
need to generate a clean version of the data without those rows
of missing values.
There are several ways to fix this but here is one way:
calvin_games_data <- calvin_game_data[complete.cases(calvin_game_data), ]
(Note: I will explain this syntax on the next slide)
Getting Rid of the NA’s
Lets take this apart. The complete.cases command creates a logical vector
specifying which observations/rows have no missing values across the entire
sequence. To test observe this try running the following:
complete.cases(calvin_game_data)
You will see that each row gets a true/false value. Those True/False are in
response to the presence of the NA values.
In the full command we are creating a new dataset called "calvin_games_data"
The syntax on the right in plain language is to take calvin_game_data and then
complete the cases using a row, column logic.
The syntax of complete cases is as follows: complete.cases(x, y)
Notice that in the following we use x=calvin_game_data and y is left blank after
the comma. The default here with the blank is to take the whole row.
calvin_games_data <- calvin_game_data[complete.cases(calvin_game_data), ]
The Head( )
command will
give you the
first few rows
but notice that
the row
numbering is
still off
The NULL here
will reset the
row numbers
Learning Some
of the Syntax
Some Basic Commands
What is the fewest yards Calvin has
had in a Game?
What is the most Touchdowns Calvin
has had in a Game?
Some Basic Commands
What is the fewest yards Calvin has
had in a Game?
What is the most Touchdowns Calvin
has had in a Game?
Min Selects the Smallest Value
Syntax is Dataset$Variable
Dollar Sign Selects the Column
Max Selects the Largest Value
Syntax is Dataset$Variable
Dollar Sign Selects the Column
Some Basic Commands
How Many Touchdowns has Calvin
had in his career?
What are the respective quantiles of
Calvin’s Yards Per Game?
Some Basic Commands
How Many Touchdowns has Calvin
had in his career?
What are the respective quantiles of
Calvin’s Yards Per Game?
Some Basic Commands
Across his Career what are Calvin’s
average yards per game?
What is the Standard Deviation of
those Yards?
Some Basic Commands
Across his Career what are Calvin’s
average yards per game?
What is the Standard Deviation of
those Yards?
Some Basic Commands
What About the Skewness and
Kurtosis of those Yards?
Some Basic Commands
If you want a high level perspective
on your variables try the summary
command:
Plotting Data
Lets Plot Calvin’s Yards Per Game
Plotting Data
Lets Plot Calvin’s Yards Per Game
Notice the Default Bin Widths,
Labels & Style of the Histogram
Getting Help
Getting Help
Getting Help
Getting Help
Plotting Data
Lets Plot Calvin’s Yards Per Game
Box and Whisker Plot
Earlier in the Course We Saw This Data ...
New York City
31.5 33.6 42.4 52.5 62.7 71.6 76.8 75.5 68.2 57.5 47.6 36.6
Houston
50.4 53.9 60.6 68.3 74.5 80.4 82.6 82.3 78.2 69.6 61 53.5
San Francisco
48.7 52.2 53.3 55.6 58.1 61.5 62.7 63.7 64.5 61 54.8 49.4
http://s3.amazonaws.com/KatzCloud/AvgTemp.csv
Load the Data from Here:
Load the Data
from My Cloud
Take a Peak at
the Results
Okay so this is not exactly a great looking plot
Notice here how I passed the vector of names
In the RStudio
Plots Window
Use the Copy to
Clipboard
Option
Then Scale the
Plot So that the
Y Axis is Larger
The Final Product
More To Come in Part 2
of BootCamp
Daniel Martin Katz
@ computational
computationallegalstudies.com
lexpredict.com
danielmartinkatz.com
illinois tech - chicago kent college of law@

Mais conteúdo relacionado

Mais procurados

Random Forest In R | Random Forest Algorithm | Random Forest Tutorial |Machin...
Random Forest In R | Random Forest Algorithm | Random Forest Tutorial |Machin...Random Forest In R | Random Forest Algorithm | Random Forest Tutorial |Machin...
Random Forest In R | Random Forest Algorithm | Random Forest Tutorial |Machin...
Simplilearn
 

Mais procurados (20)

Quantitative Methods for Lawyers - Class #17 - Scatter Plots, Covariance, Cor...
Quantitative Methods for Lawyers - Class #17 - Scatter Plots, Covariance, Cor...Quantitative Methods for Lawyers - Class #17 - Scatter Plots, Covariance, Cor...
Quantitative Methods for Lawyers - Class #17 - Scatter Plots, Covariance, Cor...
 
Linear Regression With R
Linear Regression With RLinear Regression With R
Linear Regression With R
 
03. Data Exploration.pptx
03. Data Exploration.pptx03. Data Exploration.pptx
03. Data Exploration.pptx
 
Decision Tree Learning
Decision Tree LearningDecision Tree Learning
Decision Tree Learning
 
Quantitative Methods for Lawyers - Class #9 - Bayes Theorem (Part 2), Skewnes...
Quantitative Methods for Lawyers - Class #9 - Bayes Theorem (Part 2), Skewnes...Quantitative Methods for Lawyers - Class #9 - Bayes Theorem (Part 2), Skewnes...
Quantitative Methods for Lawyers - Class #9 - Bayes Theorem (Part 2), Skewnes...
 
Exploratory Data Analysis using Python
Exploratory Data Analysis using PythonExploratory Data Analysis using Python
Exploratory Data Analysis using Python
 
Introduction to Maximum Likelihood Estimator
Introduction to Maximum Likelihood EstimatorIntroduction to Maximum Likelihood Estimator
Introduction to Maximum Likelihood Estimator
 
Statistics And Probability Tutorial | Statistics And Probability for Data Sci...
Statistics And Probability Tutorial | Statistics And Probability for Data Sci...Statistics And Probability Tutorial | Statistics And Probability for Data Sci...
Statistics And Probability Tutorial | Statistics And Probability for Data Sci...
 
How to Become a Data Analyst? | Data Analyst Skills | Data Analyst Training |...
How to Become a Data Analyst? | Data Analyst Skills | Data Analyst Training |...How to Become a Data Analyst? | Data Analyst Skills | Data Analyst Training |...
How to Become a Data Analyst? | Data Analyst Skills | Data Analyst Training |...
 
Data Science For Beginners | Who Is A Data Scientist? | Data Science Tutorial...
Data Science For Beginners | Who Is A Data Scientist? | Data Science Tutorial...Data Science For Beginners | Who Is A Data Scientist? | Data Science Tutorial...
Data Science For Beginners | Who Is A Data Scientist? | Data Science Tutorial...
 
Data Visualization in Python
Data Visualization in PythonData Visualization in Python
Data Visualization in Python
 
Big data and data science overview
Big data and data science overviewBig data and data science overview
Big data and data science overview
 
Random Forest In R | Random Forest Algorithm | Random Forest Tutorial |Machin...
Random Forest In R | Random Forest Algorithm | Random Forest Tutorial |Machin...Random Forest In R | Random Forest Algorithm | Random Forest Tutorial |Machin...
Random Forest In R | Random Forest Algorithm | Random Forest Tutorial |Machin...
 
Data Science
Data ScienceData Science
Data Science
 
Portable STATA 18 Crack Full Version.pdf
Portable STATA 18 Crack Full Version.pdfPortable STATA 18 Crack Full Version.pdf
Portable STATA 18 Crack Full Version.pdf
 
introduction to data science
introduction to data scienceintroduction to data science
introduction to data science
 
7 classical assumptions of ordinary least squares
7 classical assumptions of ordinary least squares7 classical assumptions of ordinary least squares
7 classical assumptions of ordinary least squares
 
Linear regression
Linear regressionLinear regression
Linear regression
 
Statistics For Data Science | Statistics Using R Programming Language | Hypot...
Statistics For Data Science | Statistics Using R Programming Language | Hypot...Statistics For Data Science | Statistics Using R Programming Language | Hypot...
Statistics For Data Science | Statistics Using R Programming Language | Hypot...
 
Understanding Association Rule Mining
Understanding Association Rule MiningUnderstanding Association Rule Mining
Understanding Association Rule Mining
 

Destaque

What is Computational Legal Studies? Presentation @ University of Houston - ...
What is Computational Legal Studies?  Presentation @ University of Houston - ...What is Computational Legal Studies?  Presentation @ University of Houston - ...
What is Computational Legal Studies? Presentation @ University of Houston - ...
Daniel Katz
 
Measuring the Complexity of the Law: The United States Code ( Slides by Danie...
Measuring the Complexity of the Law: The United States Code ( Slides by Danie...Measuring the Complexity of the Law: The United States Code ( Slides by Danie...
Measuring the Complexity of the Law: The United States Code ( Slides by Danie...
Daniel Katz
 
MTCS ROV Supervisor Cert
MTCS ROV Supervisor CertMTCS ROV Supervisor Cert
MTCS ROV Supervisor Cert
David Scott
 

Destaque (20)

What is Computational Legal Studies? Presentation @ University of Houston - ...
What is Computational Legal Studies?  Presentation @ University of Houston - ...What is Computational Legal Studies?  Presentation @ University of Houston - ...
What is Computational Legal Studies? Presentation @ University of Houston - ...
 
Quantitative Methods for Lawyers - Class #22 - Regression Analysis - Part 1
Quantitative Methods for Lawyers - Class #22 -  Regression Analysis - Part 1Quantitative Methods for Lawyers - Class #22 -  Regression Analysis - Part 1
Quantitative Methods for Lawyers - Class #22 - Regression Analysis - Part 1
 
Measuring the Complexity of the Law: The United States Code ( Slides by Danie...
Measuring the Complexity of the Law: The United States Code ( Slides by Danie...Measuring the Complexity of the Law: The United States Code ( Slides by Danie...
Measuring the Complexity of the Law: The United States Code ( Slides by Danie...
 
Network Analysis and Law: Introductory Tutorial @ Jurix 2011 Meeting (Vienna)
Network Analysis and Law: Introductory Tutorial @ Jurix 2011 Meeting (Vienna)Network Analysis and Law: Introductory Tutorial @ Jurix 2011 Meeting (Vienna)
Network Analysis and Law: Introductory Tutorial @ Jurix 2011 Meeting (Vienna)
 
AWS re:Invent 2016: Blockchain on AWS: Disrupting the Norm (GPST301)
AWS re:Invent 2016: Blockchain on AWS: Disrupting the Norm (GPST301)AWS re:Invent 2016: Blockchain on AWS: Disrupting the Norm (GPST301)
AWS re:Invent 2016: Blockchain on AWS: Disrupting the Norm (GPST301)
 
Artificial Intelligence and Law - 
A Primer
Artificial Intelligence and Law - 
A Primer Artificial Intelligence and Law - 
A Primer
Artificial Intelligence and Law - 
A Primer
 
Legal Analytics Course - Class 9 - Clustering Algorithms (K-Means & Hierarch...
Legal Analytics Course - Class 9 -  Clustering Algorithms (K-Means & Hierarch...Legal Analytics Course - Class 9 -  Clustering Algorithms (K-Means & Hierarch...
Legal Analytics Course - Class 9 - Clustering Algorithms (K-Means & Hierarch...
 
Practice Based Learning in Russia and Major Factors Shaping its Realization
Practice Based Learning in Russia and Major Factors Shaping its RealizationPractice Based Learning in Russia and Major Factors Shaping its Realization
Practice Based Learning in Russia and Major Factors Shaping its Realization
 
Easymoove ITA
Easymoove ITAEasymoove ITA
Easymoove ITA
 
Un nuevo desafio
Un nuevo desafioUn nuevo desafio
Un nuevo desafio
 
MTCS ROV Supervisor Cert
MTCS ROV Supervisor CertMTCS ROV Supervisor Cert
MTCS ROV Supervisor Cert
 
Scheda tecnica informativa
Scheda tecnica informativaScheda tecnica informativa
Scheda tecnica informativa
 
Pbi Marcus Evans Sept2011presentation
Pbi Marcus Evans Sept2011presentationPbi Marcus Evans Sept2011presentation
Pbi Marcus Evans Sept2011presentation
 
Why Lawyers Need Lean, Lean Six Sigma Montreal, June 2013
Why Lawyers Need Lean, Lean Six Sigma Montreal, June 2013Why Lawyers Need Lean, Lean Six Sigma Montreal, June 2013
Why Lawyers Need Lean, Lean Six Sigma Montreal, June 2013
 
Communities of practice creation as a key competence of modern instructor
Communities of practice creation as a key competence of modern instructorCommunities of practice creation as a key competence of modern instructor
Communities of practice creation as a key competence of modern instructor
 
Holiday Mobile Campaign Strategies
Holiday Mobile Campaign StrategiesHoliday Mobile Campaign Strategies
Holiday Mobile Campaign Strategies
 
How we Reduced Turnaround Times
How we Reduced Turnaround TimesHow we Reduced Turnaround Times
How we Reduced Turnaround Times
 
The State of Mobile Wallet Marketing
The State of Mobile Wallet MarketingThe State of Mobile Wallet Marketing
The State of Mobile Wallet Marketing
 
Ben Liu, NetEase Games
Ben Liu, NetEase GamesBen Liu, NetEase Games
Ben Liu, NetEase Games
 
Sales Hacker Conference Boston - Ilya Semin - How Datanyze Bootstrapped to $1...
Sales Hacker Conference Boston - Ilya Semin - How Datanyze Bootstrapped to $1...Sales Hacker Conference Boston - Ilya Semin - How Datanyze Bootstrapped to $1...
Sales Hacker Conference Boston - Ilya Semin - How Datanyze Bootstrapped to $1...
 

Semelhante a Quantitative Methods for Lawyers - Class #14 - R Boot Camp - Part 1 - Professor Daniel Martin Katz

qdoc.tips_oracle-dba-interview-questions.pdf
qdoc.tips_oracle-dba-interview-questions.pdfqdoc.tips_oracle-dba-interview-questions.pdf
qdoc.tips_oracle-dba-interview-questions.pdf
OsamaQahtan
 
Don't RTFM, WTFM - Open Source Documentation - German Perl Workshop 2010
Don't RTFM, WTFM - Open Source Documentation - German Perl Workshop 2010Don't RTFM, WTFM - Open Source Documentation - German Perl Workshop 2010
Don't RTFM, WTFM - Open Source Documentation - German Perl Workshop 2010
singingfish
 

Semelhante a Quantitative Methods for Lawyers - Class #14 - R Boot Camp - Part 1 - Professor Daniel Martin Katz (20)

Data Exploration with Apache Drill: Day 1
Data Exploration with Apache Drill:  Day 1Data Exploration with Apache Drill:  Day 1
Data Exploration with Apache Drill: Day 1
 
Data Science and Machine Learning Using Python and Scikit-learn
Data Science and Machine Learning Using Python and Scikit-learnData Science and Machine Learning Using Python and Scikit-learn
Data Science and Machine Learning Using Python and Scikit-learn
 
Ten Battle-Tested Tips for Atlassian Connect Add-ons
Ten Battle-Tested Tips for Atlassian Connect Add-onsTen Battle-Tested Tips for Atlassian Connect Add-ons
Ten Battle-Tested Tips for Atlassian Connect Add-ons
 
Get up to Speed (Quick Guide to data.table in R and Pentaho PDI)
Get up to Speed (Quick Guide to data.table in R and Pentaho PDI)Get up to Speed (Quick Guide to data.table in R and Pentaho PDI)
Get up to Speed (Quick Guide to data.table in R and Pentaho PDI)
 
Hands on Mahout!
Hands on Mahout!Hands on Mahout!
Hands on Mahout!
 
Using AWR for SQL Analysis
Using AWR for SQL AnalysisUsing AWR for SQL Analysis
Using AWR for SQL Analysis
 
Perl Teach-In (part 1)
Perl Teach-In (part 1)Perl Teach-In (part 1)
Perl Teach-In (part 1)
 
qdoc.tips_oracle-dba-interview-questions.pdf
qdoc.tips_oracle-dba-interview-questions.pdfqdoc.tips_oracle-dba-interview-questions.pdf
qdoc.tips_oracle-dba-interview-questions.pdf
 
Real life-coffeescript
Real life-coffeescriptReal life-coffeescript
Real life-coffeescript
 
Continuous Integration Testing in Django
Continuous Integration Testing in DjangoContinuous Integration Testing in Django
Continuous Integration Testing in Django
 
Don't RTFM, WTFM - Open Source Documentation - German Perl Workshop 2010
Don't RTFM, WTFM - Open Source Documentation - German Perl Workshop 2010Don't RTFM, WTFM - Open Source Documentation - German Perl Workshop 2010
Don't RTFM, WTFM - Open Source Documentation - German Perl Workshop 2010
 
Building and Distributing PostgreSQL Extensions Without Learning C
Building and Distributing PostgreSQL Extensions Without Learning CBuilding and Distributing PostgreSQL Extensions Without Learning C
Building and Distributing PostgreSQL Extensions Without Learning C
 
2013 - Andrei Zmievski: Machine learning para datos
2013 - Andrei Zmievski: Machine learning para datos2013 - Andrei Zmievski: Machine learning para datos
2013 - Andrei Zmievski: Machine learning para datos
 
Performance By Design
Performance By DesignPerformance By Design
Performance By Design
 
String Comparison Surprises: Did Postgres lose my data?
String Comparison Surprises: Did Postgres lose my data?String Comparison Surprises: Did Postgres lose my data?
String Comparison Surprises: Did Postgres lose my data?
 
The Need for Async @ ScalaWorld
The Need for Async @ ScalaWorldThe Need for Async @ ScalaWorld
The Need for Async @ ScalaWorld
 
Testing and validating distributed systems with Apache Spark and Apache Beam ...
Testing and validating distributed systems with Apache Spark and Apache Beam ...Testing and validating distributed systems with Apache Spark and Apache Beam ...
Testing and validating distributed systems with Apache Spark and Apache Beam ...
 
Base sas interview questions
Base sas interview questionsBase sas interview questions
Base sas interview questions
 
pm1
pm1pm1
pm1
 
data science
data sciencedata science
data science
 

Mais de Daniel Katz

Mais de Daniel Katz (20)

Legal Analytics versus Empirical Legal Studies - or - Causal Inference vs Pre...
Legal Analytics versus Empirical Legal Studies - or - Causal Inference vs Pre...Legal Analytics versus Empirical Legal Studies - or - Causal Inference vs Pre...
Legal Analytics versus Empirical Legal Studies - or - Causal Inference vs Pre...
 
Can Law Librarians Help Law Become More Data Driven ? An Open Question in Ne...
Can Law Librarians Help Law Become More Data Driven ?  An Open Question in Ne...Can Law Librarians Help Law Become More Data Driven ?  An Open Question in Ne...
Can Law Librarians Help Law Become More Data Driven ? An Open Question in Ne...
 
Why We Are Open Sourcing ContraxSuite and Some Thoughts About Legal Tech and ...
Why We Are Open Sourcing ContraxSuite and Some Thoughts About Legal Tech and ...Why We Are Open Sourcing ContraxSuite and Some Thoughts About Legal Tech and ...
Why We Are Open Sourcing ContraxSuite and Some Thoughts About Legal Tech and ...
 
Fin (Legal) Tech – Law’s Future from Finance’s Past (Some Thoughts About the ...
Fin (Legal) Tech – Law’s Future from Finance’s Past (Some Thoughts About the ...Fin (Legal) Tech – Law’s Future from Finance’s Past (Some Thoughts About the ...
Fin (Legal) Tech – Law’s Future from Finance’s Past (Some Thoughts About the ...
 
Exploring the Physical Properties of Regulatory Ecosystems - Professors Danie...
Exploring the Physical Properties of Regulatory Ecosystems - Professors Danie...Exploring the Physical Properties of Regulatory Ecosystems - Professors Danie...
Exploring the Physical Properties of Regulatory Ecosystems - Professors Danie...
 
Law + Complexity & Prediction: Toward a Characterization of Legal Systems as ...
Law + Complexity & Prediction: Toward a Characterization of Legal Systems as ...Law + Complexity & Prediction: Toward a Characterization of Legal Systems as ...
Law + Complexity & Prediction: Toward a Characterization of Legal Systems as ...
 
Building Your Personal (Legal) Brand - Some Thoughts for Law Students and Oth...
Building Your Personal (Legal) Brand - Some Thoughts for Law Students and Oth...Building Your Personal (Legal) Brand - Some Thoughts for Law Students and Oth...
Building Your Personal (Legal) Brand - Some Thoughts for Law Students and Oth...
 
Measure Twice, Cut Once - Solving the Legal Profession Biggest Challenges Tog...
Measure Twice, Cut Once - Solving the Legal Profession Biggest Challenges Tog...Measure Twice, Cut Once - Solving the Legal Profession Biggest Challenges Tog...
Measure Twice, Cut Once - Solving the Legal Profession Biggest Challenges Tog...
 
Machine Learning as a Service: #MLaaS, Open Source and the Future of (Legal) ...
Machine Learning as a Service: #MLaaS, Open Source and the Future of (Legal) ...Machine Learning as a Service: #MLaaS, Open Source and the Future of (Legal) ...
Machine Learning as a Service: #MLaaS, Open Source and the Future of (Legal) ...
 
Technology, Data and Computation Session @ The World Bank - Law, Justice, and...
Technology, Data and Computation Session @ The World Bank - Law, Justice, and...Technology, Data and Computation Session @ The World Bank - Law, Justice, and...
Technology, Data and Computation Session @ The World Bank - Law, Justice, and...
 
LexPredict - Empowering the Future of Legal Decision Making
LexPredict - Empowering the Future of Legal Decision MakingLexPredict - Empowering the Future of Legal Decision Making
LexPredict - Empowering the Future of Legal Decision Making
 
{Law, Tech, Design, Delivery} Observations Regarding Innovation in the Legal ...
{Law, Tech, Design, Delivery} Observations Regarding Innovation in the Legal ...{Law, Tech, Design, Delivery} Observations Regarding Innovation in the Legal ...
{Law, Tech, Design, Delivery} Observations Regarding Innovation in the Legal ...
 
Legal Analytics Course - Class 11 - Network Analysis and Law - Professors Dan...
Legal Analytics Course - Class 11 - Network Analysis and Law - Professors Dan...Legal Analytics Course - Class 11 - Network Analysis and Law - Professors Dan...
Legal Analytics Course - Class 11 - Network Analysis and Law - Professors Dan...
 
Legal Analytics Course - Class 12 - Data Preprocessing using dPlyR - Professo...
Legal Analytics Course - Class 12 - Data Preprocessing using dPlyR - Professo...Legal Analytics Course - Class 12 - Data Preprocessing using dPlyR - Professo...
Legal Analytics Course - Class 12 - Data Preprocessing using dPlyR - Professo...
 
Legal Analytics Course - Class 10 - Information Visualization + DataViz in R ...
Legal Analytics Course - Class 10 - Information Visualization + DataViz in R ...Legal Analytics Course - Class 10 - Information Visualization + DataViz in R ...
Legal Analytics Course - Class 10 - Information Visualization + DataViz in R ...
 
Legal Analytics Course - Class #4 - Github and RMarkdown Tutorial - Professor...
Legal Analytics Course - Class #4 - Github and RMarkdown Tutorial - Professor...Legal Analytics Course - Class #4 - Github and RMarkdown Tutorial - Professor...
Legal Analytics Course - Class #4 - Github and RMarkdown Tutorial - Professor...
 
Legal Analytics Course - Class 8 - Introduction to Random Forests and Ensembl...
Legal Analytics Course - Class 8 - Introduction to Random Forests and Ensembl...Legal Analytics Course - Class 8 - Introduction to Random Forests and Ensembl...
Legal Analytics Course - Class 8 - Introduction to Random Forests and Ensembl...
 
Legal Analytics Course - Class 7 - Binary Classification with Decision Tree L...
Legal Analytics Course - Class 7 - Binary Classification with Decision Tree L...Legal Analytics Course - Class 7 - Binary Classification with Decision Tree L...
Legal Analytics Course - Class 7 - Binary Classification with Decision Tree L...
 
Legal Analytics Course - Class 6 - Overfitting, Underfitting, & Cross-Validat...
Legal Analytics Course - Class 6 - Overfitting, Underfitting, & Cross-Validat...Legal Analytics Course - Class 6 - Overfitting, Underfitting, & Cross-Validat...
Legal Analytics Course - Class 6 - Overfitting, Underfitting, & Cross-Validat...
 
Legal Analytics Course - Class 5 - Quantitative Legal Prediction + Data Drive...
Legal Analytics Course - Class 5 - Quantitative Legal Prediction + Data Drive...Legal Analytics Course - Class 5 - Quantitative Legal Prediction + Data Drive...
Legal Analytics Course - Class 5 - Quantitative Legal Prediction + Data Drive...
 

Último

IAC 2024 - IA Fast Track to Search Focused AI Solutions
IAC 2024 - IA Fast Track to Search Focused AI SolutionsIAC 2024 - IA Fast Track to Search Focused AI Solutions
IAC 2024 - IA Fast Track to Search Focused AI Solutions
Enterprise Knowledge
 
EIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptx
EIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptxEIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptx
EIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptx
Earley Information Science
 

Último (20)

🐬 The future of MySQL is Postgres 🐘
🐬  The future of MySQL is Postgres   🐘🐬  The future of MySQL is Postgres   🐘
🐬 The future of MySQL is Postgres 🐘
 
GenCyber Cyber Security Day Presentation
GenCyber Cyber Security Day PresentationGenCyber Cyber Security Day Presentation
GenCyber Cyber Security Day Presentation
 
GenAI Risks & Security Meetup 01052024.pdf
GenAI Risks & Security Meetup 01052024.pdfGenAI Risks & Security Meetup 01052024.pdf
GenAI Risks & Security Meetup 01052024.pdf
 
presentation ICT roal in 21st century education
presentation ICT roal in 21st century educationpresentation ICT roal in 21st century education
presentation ICT roal in 21st century education
 
Finology Group – Insurtech Innovation Award 2024
Finology Group – Insurtech Innovation Award 2024Finology Group – Insurtech Innovation Award 2024
Finology Group – Insurtech Innovation Award 2024
 
IAC 2024 - IA Fast Track to Search Focused AI Solutions
IAC 2024 - IA Fast Track to Search Focused AI SolutionsIAC 2024 - IA Fast Track to Search Focused AI Solutions
IAC 2024 - IA Fast Track to Search Focused AI Solutions
 
Workshop - Best of Both Worlds_ Combine KG and Vector search for enhanced R...
Workshop - Best of Both Worlds_ Combine  KG and Vector search for  enhanced R...Workshop - Best of Both Worlds_ Combine  KG and Vector search for  enhanced R...
Workshop - Best of Both Worlds_ Combine KG and Vector search for enhanced R...
 
The 7 Things I Know About Cyber Security After 25 Years | April 2024
The 7 Things I Know About Cyber Security After 25 Years | April 2024The 7 Things I Know About Cyber Security After 25 Years | April 2024
The 7 Things I Know About Cyber Security After 25 Years | April 2024
 
Driving Behavioral Change for Information Management through Data-Driven Gree...
Driving Behavioral Change for Information Management through Data-Driven Gree...Driving Behavioral Change for Information Management through Data-Driven Gree...
Driving Behavioral Change for Information Management through Data-Driven Gree...
 
Axa Assurance Maroc - Insurer Innovation Award 2024
Axa Assurance Maroc - Insurer Innovation Award 2024Axa Assurance Maroc - Insurer Innovation Award 2024
Axa Assurance Maroc - Insurer Innovation Award 2024
 
ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemke
ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemkeProductAnonymous-April2024-WinProductDiscovery-MelissaKlemke
ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemke
 
EIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptx
EIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptxEIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptx
EIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptx
 
How to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected WorkerHow to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected Worker
 
Tech Trends Report 2024 Future Today Institute.pdf
Tech Trends Report 2024 Future Today Institute.pdfTech Trends Report 2024 Future Today Institute.pdf
Tech Trends Report 2024 Future Today Institute.pdf
 
Automating Google Workspace (GWS) & more with Apps Script
Automating Google Workspace (GWS) & more with Apps ScriptAutomating Google Workspace (GWS) & more with Apps Script
Automating Google Workspace (GWS) & more with Apps Script
 
[2024]Digital Global Overview Report 2024 Meltwater.pdf
[2024]Digital Global Overview Report 2024 Meltwater.pdf[2024]Digital Global Overview Report 2024 Meltwater.pdf
[2024]Digital Global Overview Report 2024 Meltwater.pdf
 
Data Cloud, More than a CDP by Matt Robison
Data Cloud, More than a CDP by Matt RobisonData Cloud, More than a CDP by Matt Robison
Data Cloud, More than a CDP by Matt Robison
 
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
 
A Domino Admins Adventures (Engage 2024)
A Domino Admins Adventures (Engage 2024)A Domino Admins Adventures (Engage 2024)
A Domino Admins Adventures (Engage 2024)
 
Strategize a Smooth Tenant-to-tenant Migration and Copilot Takeoff
Strategize a Smooth Tenant-to-tenant Migration and Copilot TakeoffStrategize a Smooth Tenant-to-tenant Migration and Copilot Takeoff
Strategize a Smooth Tenant-to-tenant Migration and Copilot Takeoff
 

Quantitative Methods for Lawyers - Class #14 - R Boot Camp - Part 1 - Professor Daniel Martin Katz