SlideShare ist ein Scribd-Unternehmen logo
1 von 44
Downloaden Sie, um offline zu lesen
BigdatawithModernR&Sparkin
PublicStatistics
"SEMINAR: Análisis de Big data con Tidyverse y Spark: uso en estadística pública"
By Xavier de Pedro Puente, Ph.D.
Technician at the Municipal Data Office. Barcelona City Council.
Monday September 14, 2020. 16h-17:30h + questions
Within the context of the postgraduate course on
"Data Science. Applications to Biology and Medicine with Python and R"
at University of Barcelona. 2020.
IImage from https://blog.rstudio.com/2019/03/15/sparklyr-1-0/
[1]
Outline
About me1.
Barcelona City Council Çase2.
Modern R: Tidyverse3.
Modern R & Big Data4.
Spark (Apache) & Sparklyr (RStudio)5.
Alternative approach6.
==(1)Aboutme==
Xavier de Pedro Puente, Ph.D. xavier.depedro (a) seeds4c.org
Academics:
Degree in Biology (UB[2]
)
Ph.D. in Ecology (UB
[3]
)
Postgraduate in Bioinformatics (UOC
[4]
)
Current Work:
Senior technician at Municipal Data Office (OMD
[5]
, Barcelona City Council
[6]
)
Past (related) Work:
Bioinformatics technician (UEB[7]
, VHIR[8]
)
Systems administrator (UEB[9]
, VHIR[10]
)
Disclaimer The views expressed in this presentation are those of the author and do not necessarily
represent the views and policies of the Barcelona City Council. Any mention of trade names, products or
services does not imply an endorsement by the Barcelona City Council unless explicitly stated as such.
==(2)BarcelonaCityCouncilCase==
2018: OMD - Municipal Data Office opened
[11]
(details
[12]
):
Management, quality, governance and use of data controlled and/or stored by
Barcelona City Council and all of its associated bodies (both public and private).
.
Public Statistics
[13]
portal
Recent product
[14]
: Covid-19 in BCN monitoring with an R Shiny App
[15]
BarcelonaCityCouncil:Publicmoney-
publiccode
Barcelona: first city to join the Free Software Foundation, Public Money, Public
Code
[16]
campaign
One of the case studies
[17]
of the use of open-source software and open code to
democratise cities.
There is a Government policy for open source and agile methodologies
[18]
BarcelonaCityCouncil:CityOS
City Council's infrastructure based on open-source Big Data technology
City OS: internal data management, known as "Data Lake"[19]
Video
[20]
Image from Francesca Bria
[21]
(Barcelona Digital City Roadmap 2017-2020)
BarcelonaCityCouncil:CityOSTechnologies
CityOS technologies: GNU/Linux, CentOS, Cloudera, Activiti, Talend, Protégé, R, Zabbix, Nagios, Ganglia
Source: https://github.com/AjuntamentdeBarcelona/CityOS_AjBCN
[22]
- Image from J. Berdonces a Github
[23]
BarcelonaCityCouncil:CityOS-
ClouderaManager
Cloudera with Hadoop File System, Hue, HBase, Hive, Impala, Oozie, Spark, Yarn, Kafka, ...
Source: https://github.com/AjuntamentdeBarcelona/CityOS_AjBCN
[24]
- Image from J. Berdonces a Github
[25]
==(3)FromBaseRto"ModernR":
Tidyverse==
2000: First stable beta version (v1.0) released.
... "Base R" ...
2016: Tidyverse
[26]
1.0.0 package released on CRAN
[27]
2016: "Introduction to Modern R - r4stats.com"
[28]
2017: "Martin Hadley on R and the Modern R Ecosystem - InfoQ Podcasts"
[29]
2017: "Modern Data Science with R - Chapman & Hall/CRC"[30]
2019: "Modern R with the tidyverse - Econometrics and Free Software"
[31]
(blog)
2019: "Modern R and the Tidyverse - Data Science Workshops"[32]
2020: "Modern R: Welcome to the tidyverse"
[33]
(video tutorial)
2020: Statistical Inference via Data Science: ModernDive into R & Tidyverse"[34]
ModernR(Tidyverse)
Workflow, Packages, People/Community
Derived from here
[35]
& here
[36]
ModernR(Tidyverse)principles
Main structures are ordered data1.
Each variable is saved in its own column.
Each observation is saved in its own row.
Each "type" of observation stored in a single table
.Each function represents one step2.
Functions are combined with the pipe operator %>%3.
Each step is a query or command4.
Derived from here
[37]
, here
[38]
& here
[39]
==(4)ModernR&BigData==
Data > RAM = Problem
From an RStudio seminar
[40]
by Garrett Grolemund
[41]
3classesofBigDataProblems
From an RStudio seminar
[42]
by Garrett Grolemund
[43]
Rinteractswithothertechnologies
From an RStudio seminar
[44]
by Garrett Grolemund
[45]
RGeneralStrategy(i):Class1&2
From an RStudio seminar
[46]
by Garrett Grolemund
[47]
RGeneralStrategy(ii):Class1&2
From an RStudio seminar
[48]
by Garrett Grolemund
[49]
RGeneralStrategy(iii):Class3
From an RStudio seminar
[50]
by Garrett Grolemund
[51]
Class3-dbplyr
R - tidyverse - dplyr + dbplyr
From an RStudio seminar
[52]
by Garrett Grolemund
[53]
RGeneralStrategy(iv):Recap
From an RStudio seminar
[54]
by Garrett Grolemund
[55]
==(5)Spark(Apache)&sparklyr(Rstudio)==
Spark
[56]
, from Apache Foundation
[57]
: a leading tool that is democratizing our
ability to process large datasets.
R Packages:
Apache introduced an interface for the R computing language: SparkR R
package
RStudio introduced sparklyr R package: a project merging R and Spark into
a powerful tool that is easily accessible to all.
But why where they introduced?
And why 2 different packages?
Derived from here
[58]
& here
[59]
Digitalinformationvsanaloginformation|World
Bank-2003
World Bank report: digital information surpassed analog information around
2003.
10 million terabytes of digital information (~ 10 million storage drives today)
our footprint of digital information is growing at exponential rates.
From "The R In Spark" (book)
[60]
GoogleFileSystem|Google-2003
Search engines were unable to store all of the web page information required to
support web searches in a single computer.
They had to split information into several files and store them across many
machines
This approach became known as "Google File System", due to a research
paper published in 2003 by Google.
From "The R In Spark" (book)
[61]
MapReduce|Google-2004
2004: Google published a new paper describing how to perform operations
across the Google File System:
approach called "MapReduce"
map operation: arbitrary way to transform each file into a new file
reduce operation: combines two files
Both operations require custom computer code, but the MapReduce
framework takes care of automatically executing them across many
computers at once.
Sufficient to process all the data available on the web, while providing
flexibility to extract meaningful information from it.
From "The R In Spark" (book)
[62]
HadoopDistributedFileSystem(HDFS)|Yahoo
-2006
A team at Yahoo implemented the Google File System and MapReduce as a
single open source project, released in 2006 as Hadoop
Google File System implemented as the Hadoop Distributed File System
(HDFS).
The Hadoop project made distributed file-based computing accessible to a wider
range of users and organizations, making MapReduce useful beyond web data
processing.
From "The R In Spark" (book)
[63]
| Image from De Apache Software Foundation, with Apache License 2.0
[64]
Hive|Facebook-2008
Hadoop provided support to perform MapReduce operations over a distributed
file system, but it still required MapReduce operations to be written with code
every time a data analysis was run
Hive project (2008, by Facebook) brought Structured Query Language (SQL)
support to Hadoop.
Data analysis could now be performed at large scale without the need to
write code for each MapReduce operation
From "The R In Spark" (book)
[65]
| Image from Davod
[66]
with Apache License 2.0
[67]
Spark(closedsourced)|UCBerkely-2009
In 2009, Spark began as a research project at UC Berkeley’s AMPLab to improve
on MapReduce.
Spark provided a richer set of verbs beyond MapReduce to facilitate
optimizing code running in multiple machines.
Spark also loaded data in-memory, making operations much faster than
Hadoop’s on-disk storage.
From "The R In Spark" (book)
[68]
Spark:In-memoryandon-disk
Spark: well known for its in-memory performance, but designed to be a general
execution engine that works both in-memory and on-disk
For instance, Spark has set sorting, for which data was not loaded in-
memory, but using improvements in network serialization, network shuffling,
and efficient use of the CPU’s cache to dramatically enhance performance.
If you needed to sort large amounts of data, there was no other system in the
world faster than Spark.
From "The R In Spark" (book)
[69]
Spark:fasterandeasier
Spark is much faster, more efficient, and easier to use than Hadoop.
Speed Example:
Without Spark: it takes 72 minutes and 2,100 computers to sort 100
terabytes of data using Hadoop,
With Spark: only 23 minutes and 206 computers
Simplicity example: word-counting MapReduce example takes:
about 50 lines of code in Hadoop, but
only 2 lines of code in Spark.
Hadoop Record Spark Record
Data Size 102.5 TB 100 TB
Elapsed Time 72 mins 23 mins
Nodes 2100 206
Cores 50400 6592
Disk 3150 GB/s 618 GB/s
Network 10Gbps 10Gbps
Sort rate 1.42 TB/min 4.27 TB/min
Sort rate / node 0.67 GB/min 20.7 GB/min
From "The R In Spark" (book)[70]
Spark(opensourced)-2010|Apache
Foundation-2013
2010: open sourced. 2013: donated to the Apache Software Foundation
Apache Spark is a unified analytics engine for large-scale data processing
Unified: supports many libraries, cluster technologies, and storage systems.
Analytics: discovery & interpretation of data to communicate information
Engine: expected to be efficient and generic.
Large-Scale: as cluster-scale (set of connected computers working together).
From "The R In Spark" (book)
[71]
| Image from the Apache Software Foundation, with Apache License 2.0
[72]
SparkR(BaseR)vs.sparklyr(ModernR)
Feature SparkR sparklyr
Data input & output + + + +
Data manipulation - + + +
Documentation + + + +
Ease of setup + + + +
Function naming - - + + +
Installation + + +
Machine learning + + +
Range of functions + + + + +
Running arbitrary code + + +
Tidyverse compatability - - - + + +
From https://www.eddjberry.com/post/2017-12-05-sparkr-vs-sparklyr/
[73]
Sparklyr|RStudio
Sparklyr, from Rstudio: https://spark.rstudio.com/
[74]
R interface for Apache Spark, agnostic to Spark versions,
2016: 1st version released (v0.4)
Easy to install, serving the R community,
Embracing other packages & practices from the R community (tidyverse, ...)
Designed for: New Users, Data Scientists, and Expert Users
Image from here
[75]
Summary:BigDatawithModernR&Spark
Big Data with Modern R & Spark in context
Image from here
[76]
SpeedingupSparkviaRwithApacheArrow
Apache Arrow
[77]
is a cross-language development platform for in-memory data, you can read more about this in
the Arrow and beyond[78]
blog post. In sparklyr 1.0, we are embracing Arrow as an efficient bridge between R
and Spark, conceptually.
X Axis: Time to complete task (left-hand-side is faster)
Y Axis: Top section: WITHOUT Apache Arrow), Bottom section: WITH apache Arrow.
Copying: Collecting: Transforming
From: https://arrow.apache.org/blog/2019/01/25/r-spark-improvements/
[79]
==(6)Addendum:Diskframeaspotential
alernativeformediumsizedprojects?==
disk.frame package
[80]
, answer to: how do I manipulate structured tabular data
that doesn’t fit into Random Access Memory (RAM)?.
It makes use of two simple ideas
split up a larger-than-RAM dataset into chunks and store1.
each chunk in a separate file inside a folder and
provide a convenient API to manipulate these chunks2.
It performs a similar role to distributed systems such as Apache Spark, Python’s
Dask, and Julia’s JuliaDB.jl for medium data which are datasets that are too large
for RAM but not quite large enough to qualify as big data.
More information: here
[81]
and here
[82]
References
TheRinSpark Book: https://therinspark.com/
[83]
Cheatsheets at https://www.rstudio.com/resources/cheatsheets/
[84]
And some in Spanish Cheatsheets URL
[85]
> Spanish Translations –
Traducciones en español
Playground for R & Spark (for free): https://community.cloud.databricks.com/
[86]
Pricing
[87]
Rstudio Cloud (with free plan): https://rstudio.cloud
[88]
Webinars & scripts for hands-on practising:
https://rstudio.com/collections/working-with-spark/[89]
https://gitlab.com/radup/curs-r-introduccio/blob/master/codi/extra.tips.bigdat
a.R[90]
https://diskframe.com/articles/intro-disk-frame.html[91]
Thanks
[92]
xavier.depedro (a) seeds4c.org
Unless elsewhere noted, contents of this web site are released under a Creative Commons[93]
license.
[1]
https://blog.rstudio.com/2019/03/15/sparklyr-1-0/
[2]
https://www.ub.edu
[3]
https://www.ub.edu
[4]
https://www.uoc.edu
[5]
https://ajuntament.barcelona.cat/digital/en/digital-transformation/city-data-commons/municipal-data-office
[6]
https://www.barcelona.cat/en/
[7]
http://ueb.vhir.org/
[8]
https://en.vhir.org
[9]
http://ueb.vhir.org/
[10]
https://en.vhir.org
[11]
https://ajuntament.barcelona.cat/digital/en/digital-transformation/city-data-commons/municipal-data-office
[12]
https://ajuntament.barcelona.cat/premsa/2018/02/13/barcelona-crea-una-nova-oficina-municipal-de-dades/
[13]
https://www.bcn.cat/estadistica/angles/
[14]
https://ajuntament.barcelona.cat/digital/en/noticia/a-website-has-been-launched-which-carries-out-analytic-monitoring-of-the-evolution-of-covid-19-in-the-city_956022
[15]
https://dades.ajuntament.barcelona.cat/seguiment-covid19-bcn/
[16]
https://publiccode.eu/
[17]
https://ajuntament.barcelona.cat/digital/en/digital-transformation/technology-for-a-better-government/open-source-software
[18]
http://ajuntament.barcelona.cat/digital/sites/default/files/LE_MesuradeGovern_EN_9en.pdf
[19]
https://ajuntament.barcelona.cat/digital/en/digital-transformation/city-data-commons/cityos
[20]
https://www.youtube.com/watch?v=OsbpZTzE5SI
[21]
https://www.slideshare.net/francescabria/bria-francesca-bcn-open-source-agile-digital-transformation-strategy
[22]
https://github.com/AjuntamentdeBarcelona/CityOS_AjBCN
[23]
https://github.com/AjuntamentdeBarcelona/CityOS_AjBCN/blob/master/doc/COS1%20-%20SP12_Disseny%20de%20Seguretat%20del%20sistema%20inform%C3%A0tic.docx
[24]
https://github.com/AjuntamentdeBarcelona/CityOS_AjBCN
[25]
https://github.com/AjuntamentdeBarcelona/CityOS_AjBCN/blob/master/doc/COS1%20-%20SP12_Disseny%20de%20Seguretat%20del%20sistema%20inform%C3%A0tic.docx
[26]
https://cran.r-project.org/web/packages/tidyverse/vignettes/paper.html
[27]
https://cran.r-project.org/src/contrib/Archive/tidyverse/
[28]
http://r4stats.com/workshops/introduction-to-modern-r/
[29]
https://www.infoq.com/podcasts/martin-hadley-r-ecosystem
[30]
https://www.amazon.es/Modern-Science-Chapman-Texts-Statistical-ebook/dp/B06XPNZ4H2
[31]
https://b-rodrigues.github.io/modern_R/
[32]
https://www.datascienceworkshops.com/catalogue/modern-r-and-the-tidyverse/
[33]
https://www.youtube.com/watch?v=a-Yb518580c
[34]
https://moderndive.com/
[35]
https://rviews.rstudio.com/2017/06/08/what-is-the-tidyverse/
[36]
https://github.com/rstudio/webinars/tree/master/55-ciencia-de-datos-R
[37]
https://cran.r-project.org/web/packages/tidyverse/vignettes/paper.html
[38]
https://raw.githubusercontent.com/rstudio/webinars/master/05-Data-Wrangling-with-R-and-RStudio/wrangling-webinar.pdf
[39]
https://raw.githubusercontent.com/rstudio/webinars/master/55-ciencia-de-datos-R/ciencia-de-datos-R.pdf
[40]
https://github.com/rstudio/webinars/blob/master/14-Work-with-big-data/14-Work-with-big-data.pdf
[41]
https://github.com/garrettgman
[42]
https://github.com/rstudio/webinars/blob/master/14-Work-with-big-data/14-Work-with-big-data.pdf
[43]
https://github.com/garrettgman
[44]
https://github.com/rstudio/webinars/blob/master/14-Work-with-big-data/14-Work-with-big-data.pdf
[45]
https://github.com/garrettgman
[46]
https://github.com/rstudio/webinars/blob/master/14-Work-with-big-data/14-Work-with-big-data.pdf
[47]
https://github.com/garrettgman
[48]
https://github.com/rstudio/webinars/blob/master/14-Work-with-big-data/14-Work-with-big-data.pdf
[49]
https://github.com/garrettgman
[50]
https://github.com/rstudio/webinars/blob/master/14-Work-with-big-data/14-Work-with-big-data.pdf
[51]
https://github.com/garrettgman
[52]
https://github.com/rstudio/webinars/blob/master/14-Work-with-big-data/14-Work-with-big-data.pdf
[53]
https://github.com/garrettgman
[54]
https://github.com/rstudio/webinars/blob/master/14-Work-with-big-data/14-Work-with-big-data.pdf
[55]
https://github.com/garrettgman
[56]
https://spark.apache.org/
[57]
https://apache.org/
[58]
https://github.com/rstudio/webinars/blob/master/42-Introduction%20to%20sparklyr/Introducing%20sparklyr%20-%20Webinar.pdf
[59]
https://therinspark.com/
[60]
https://therinspark.com/
[61]
https://therinspark.com/
[62]
https://therinspark.com/
[63]
https://therinspark.com/
[64]
https://svn.apache.org/repos/asf/hadoop/logos/out_rgb/
[65]
https://therinspark.com/
[66]
https://commons.wikimedia.org/wiki/User:Amitie_10g
[67]
http://www.apache.org/licenses/LICENSE-2.0
[68]
https://therinspark.com/
[69]
https://therinspark.com/
[70]
https://therinspark.com/
[71]
https://therinspark.com/
[72]
http://svn.apache.org/repos/asf/hadoop/logos/asf_hadoop/
[73]
https://www.eddjberry.com/post/2017-12-05-sparkr-vs-sparklyr/
[74]
https://spark.rstudio.com/
[75]
https://www.slideshare.net/ICTeam/sparklyr-big-data-enabler-for-r-users
[76]
https://www.slideshare.net/ICTeam/sparklyr-big-data-enabler-for-r-users
[77]
https://arrow.apache.org/
[78]
https://blog.rstudio.com/2018/04/19/arrow-and-beyond/
[79]
https://arrow.apache.org/blog/2019/01/25/r-spark-improvements/
[80]
https://github.com/xiaodaigh/disk.frame
[81]
https://github.com/xiaodaigh/disk.frame
[82]
https://diskframe.com/articles/intro-disk-frame.html
[83]
https://therinspark.com/
[84]
https://www.rstudio.com/resources/cheatsheets/
[85]
https://www.rstudio.com/resources/cheatsheets/
[86]
https://community.cloud.databricks.com/
[87]
https://databricks.com/product/aws-pricing
[88]
https://rstudio.cloud
[89]
https://rstudio.com/collections/working-with-spark/
[90]
https://gitlab.com/radup/curs-r-introduccio/blob/master/codi/extra.tips.bigdata.R
[91]
https://diskframe.com/articles/intro-disk-frame.html
[92]
http://creativecommons.org/licenses/by-sa/3.0/
[93]
http://creativecommons.org/licenses/by-sa/3.0/

Weitere ähnliche Inhalte

Was ist angesagt?

Approximation algorithms for stream and batch processing
Approximation algorithms for stream and batch processingApproximation algorithms for stream and batch processing
Approximation algorithms for stream and batch processingGabriele Modena
 
Big Data Analytics with Storm, Spark and GraphLab
Big Data Analytics with Storm, Spark and GraphLabBig Data Analytics with Storm, Spark and GraphLab
Big Data Analytics with Storm, Spark and GraphLabImpetus Technologies
 
Introduction to SARA's Hadoop Hackathon - dec 7th 2010
Introduction to SARA's Hadoop Hackathon - dec 7th 2010Introduction to SARA's Hadoop Hackathon - dec 7th 2010
Introduction to SARA's Hadoop Hackathon - dec 7th 2010Evert Lammerts
 
HPC-ABDS High Performance Computing Enhanced Apache Big Data Stack (with a ...
HPC-ABDS High Performance Computing Enhanced Apache Big Data Stack (with a ...HPC-ABDS High Performance Computing Enhanced Apache Big Data Stack (with a ...
HPC-ABDS High Performance Computing Enhanced Apache Big Data Stack (with a ...Geoffrey Fox
 
Introduction to Big Data
Introduction to Big DataIntroduction to Big Data
Introduction to Big DataAlbert Bifet
 
Full stack analytics with Hadoop 2
Full stack analytics with Hadoop 2Full stack analytics with Hadoop 2
Full stack analytics with Hadoop 2Gabriele Modena
 
CityLABS Workshop: Working with large tables
CityLABS Workshop: Working with large tablesCityLABS Workshop: Working with large tables
CityLABS Workshop: Working with large tablesEnrico Daga
 
HGrid A Data Model for Large Geospatial Data Sets in HBase
HGrid A Data Model for Large Geospatial Data Sets in HBaseHGrid A Data Model for Large Geospatial Data Sets in HBase
HGrid A Data Model for Large Geospatial Data Sets in HBaseDan Han
 
Big data processing using - Hadoop Technology
Big data processing using - Hadoop TechnologyBig data processing using - Hadoop Technology
Big data processing using - Hadoop TechnologyShital Kat
 
Resilient Distributed Datasets
Resilient Distributed DatasetsResilient Distributed Datasets
Resilient Distributed DatasetsGabriele Modena
 
Next Generation Grid: Integrating Parallel and Distributed Computing Runtimes...
Next Generation Grid: Integrating Parallel and Distributed Computing Runtimes...Next Generation Grid: Integrating Parallel and Distributed Computing Runtimes...
Next Generation Grid: Integrating Parallel and Distributed Computing Runtimes...Geoffrey Fox
 
Invited cloud-e-Genome project talk at 2015 NGS Data Congress
Invited cloud-e-Genome project talk at 2015 NGS Data CongressInvited cloud-e-Genome project talk at 2015 NGS Data Congress
Invited cloud-e-Genome project talk at 2015 NGS Data CongressPaolo Missier
 
Coding the Continuum
Coding the ContinuumCoding the Continuum
Coding the ContinuumIan Foster
 
Next generation analytics with yarn, spark and graph lab
Next generation analytics with yarn, spark and graph labNext generation analytics with yarn, spark and graph lab
Next generation analytics with yarn, spark and graph labImpetus Technologies
 
Data Tribology: Overcoming Data Friction with Cloud Automation
Data Tribology: Overcoming Data Friction with Cloud AutomationData Tribology: Overcoming Data Friction with Cloud Automation
Data Tribology: Overcoming Data Friction with Cloud AutomationIan Foster
 
Tugdual Grall - Real World Use Cases: Hadoop and NoSQL in Production
Tugdual Grall - Real World Use Cases: Hadoop and NoSQL in ProductionTugdual Grall - Real World Use Cases: Hadoop and NoSQL in Production
Tugdual Grall - Real World Use Cases: Hadoop and NoSQL in ProductionCodemotion
 

Was ist angesagt? (20)

Approximation algorithms for stream and batch processing
Approximation algorithms for stream and batch processingApproximation algorithms for stream and batch processing
Approximation algorithms for stream and batch processing
 
Big Data Analytics with Storm, Spark and GraphLab
Big Data Analytics with Storm, Spark and GraphLabBig Data Analytics with Storm, Spark and GraphLab
Big Data Analytics with Storm, Spark and GraphLab
 
B04 06 0918
B04 06 0918B04 06 0918
B04 06 0918
 
Introduction to SARA's Hadoop Hackathon - dec 7th 2010
Introduction to SARA's Hadoop Hackathon - dec 7th 2010Introduction to SARA's Hadoop Hackathon - dec 7th 2010
Introduction to SARA's Hadoop Hackathon - dec 7th 2010
 
HPC-ABDS High Performance Computing Enhanced Apache Big Data Stack (with a ...
HPC-ABDS High Performance Computing Enhanced Apache Big Data Stack (with a ...HPC-ABDS High Performance Computing Enhanced Apache Big Data Stack (with a ...
HPC-ABDS High Performance Computing Enhanced Apache Big Data Stack (with a ...
 
Introduction to Big Data
Introduction to Big DataIntroduction to Big Data
Introduction to Big Data
 
Full stack analytics with Hadoop 2
Full stack analytics with Hadoop 2Full stack analytics with Hadoop 2
Full stack analytics with Hadoop 2
 
CityLABS Workshop: Working with large tables
CityLABS Workshop: Working with large tablesCityLABS Workshop: Working with large tables
CityLABS Workshop: Working with large tables
 
Spark 2013-04-17
Spark 2013-04-17Spark 2013-04-17
Spark 2013-04-17
 
HGrid A Data Model for Large Geospatial Data Sets in HBase
HGrid A Data Model for Large Geospatial Data Sets in HBaseHGrid A Data Model for Large Geospatial Data Sets in HBase
HGrid A Data Model for Large Geospatial Data Sets in HBase
 
Big Data & Hadoop. Simone Leo (CRS4)
Big Data & Hadoop. Simone Leo (CRS4)Big Data & Hadoop. Simone Leo (CRS4)
Big Data & Hadoop. Simone Leo (CRS4)
 
Big data processing using - Hadoop Technology
Big data processing using - Hadoop TechnologyBig data processing using - Hadoop Technology
Big data processing using - Hadoop Technology
 
Resilient Distributed Datasets
Resilient Distributed DatasetsResilient Distributed Datasets
Resilient Distributed Datasets
 
Next Generation Grid: Integrating Parallel and Distributed Computing Runtimes...
Next Generation Grid: Integrating Parallel and Distributed Computing Runtimes...Next Generation Grid: Integrating Parallel and Distributed Computing Runtimes...
Next Generation Grid: Integrating Parallel and Distributed Computing Runtimes...
 
Invited cloud-e-Genome project talk at 2015 NGS Data Congress
Invited cloud-e-Genome project talk at 2015 NGS Data CongressInvited cloud-e-Genome project talk at 2015 NGS Data Congress
Invited cloud-e-Genome project talk at 2015 NGS Data Congress
 
Coding the Continuum
Coding the ContinuumCoding the Continuum
Coding the Continuum
 
Next generation analytics with yarn, spark and graph lab
Next generation analytics with yarn, spark and graph labNext generation analytics with yarn, spark and graph lab
Next generation analytics with yarn, spark and graph lab
 
Data Tribology: Overcoming Data Friction with Cloud Automation
Data Tribology: Overcoming Data Friction with Cloud AutomationData Tribology: Overcoming Data Friction with Cloud Automation
Data Tribology: Overcoming Data Friction with Cloud Automation
 
Tugdual Grall - Real World Use Cases: Hadoop and NoSQL in Production
Tugdual Grall - Real World Use Cases: Hadoop and NoSQL in ProductionTugdual Grall - Real World Use Cases: Hadoop and NoSQL in Production
Tugdual Grall - Real World Use Cases: Hadoop and NoSQL in Production
 
Hadoop
HadoopHadoop
Hadoop
 

Ähnlich wie Big Data with Modern R & Spark

Hadoop Big Data A big picture
Hadoop Big Data A big pictureHadoop Big Data A big picture
Hadoop Big Data A big pictureJ S Jodha
 
Hadoop @ Sara & BiG Grid
Hadoop @ Sara & BiG GridHadoop @ Sara & BiG Grid
Hadoop @ Sara & BiG GridEvert Lammerts
 
Building a Big Data platform with the Hadoop ecosystem
Building a Big Data platform with the Hadoop ecosystemBuilding a Big Data platform with the Hadoop ecosystem
Building a Big Data platform with the Hadoop ecosystemGregg Barrett
 
Available platforms for Big Data 2.0
Available platforms for Big Data 2.0Available platforms for Big Data 2.0
Available platforms for Big Data 2.0Petr Novotný
 
Democratizing Data Science on Kubernetes
Democratizing Data Science on Kubernetes Democratizing Data Science on Kubernetes
Democratizing Data Science on Kubernetes John Archer
 
Hadoop and IoT Sinergija 2014
Hadoop and IoT Sinergija 2014Hadoop and IoT Sinergija 2014
Hadoop and IoT Sinergija 2014Darko Marjanovic
 
Hadoop and IoT Sinergija 2014
Hadoop and IoT Sinergija 2014Hadoop and IoT Sinergija 2014
Hadoop and IoT Sinergija 2014Milos Milovanovic
 
Analyzing Big data in R and Scala using Apache Spark 17-7-19
Analyzing Big data in R and Scala using Apache Spark  17-7-19Analyzing Big data in R and Scala using Apache Spark  17-7-19
Analyzing Big data in R and Scala using Apache Spark 17-7-19Ahmed Elsayed
 
Sentiment Analysis using Big Data
Sentiment Analysis using Big Data Sentiment Analysis using Big Data
Sentiment Analysis using Big Data Rajat Mittal
 
Tools and techniques for data science
Tools and techniques for data scienceTools and techniques for data science
Tools and techniques for data scienceAjay Ohri
 
What's New in Cytoscape
What's New in CytoscapeWhat's New in Cytoscape
What's New in CytoscapeKeiichiro Ono
 
Data infrastructure at Facebook
Data infrastructure at Facebook Data infrastructure at Facebook
Data infrastructure at Facebook AhmedDoukh
 
Tiny Batches, in the wine: Shiny New Bits in Spark Streaming
Tiny Batches, in the wine: Shiny New Bits in Spark StreamingTiny Batches, in the wine: Shiny New Bits in Spark Streaming
Tiny Batches, in the wine: Shiny New Bits in Spark StreamingPaco Nathan
 
Oct 2011 CHADNUG Presentation on Hadoop
Oct 2011 CHADNUG Presentation on HadoopOct 2011 CHADNUG Presentation on Hadoop
Oct 2011 CHADNUG Presentation on HadoopJosh Patterson
 
SQLSaturday #230 - Introduction to Microsoft Big Data (Part 1)
SQLSaturday #230 - Introduction to Microsoft Big Data (Part 1)SQLSaturday #230 - Introduction to Microsoft Big Data (Part 1)
SQLSaturday #230 - Introduction to Microsoft Big Data (Part 1)Sascha Dittmann
 
Big data Big Analytics
Big data Big AnalyticsBig data Big Analytics
Big data Big AnalyticsAjay Ohri
 
Big Data with hadoop, Spark and BigQuery (Google cloud next Extended 2017 Kar...
Big Data with hadoop, Spark and BigQuery (Google cloud next Extended 2017 Kar...Big Data with hadoop, Spark and BigQuery (Google cloud next Extended 2017 Kar...
Big Data with hadoop, Spark and BigQuery (Google cloud next Extended 2017 Kar...Imam Raza
 
Delivering Agile Data Science on Openshift - Red Hat Summit 2019
Delivering Agile Data Science on Openshift  - Red Hat Summit 2019Delivering Agile Data Science on Openshift  - Red Hat Summit 2019
Delivering Agile Data Science on Openshift - Red Hat Summit 2019John Archer
 

Ähnlich wie Big Data with Modern R & Spark (20)

Hadoop Big Data A big picture
Hadoop Big Data A big pictureHadoop Big Data A big picture
Hadoop Big Data A big picture
 
B04 06 0918
B04 06 0918B04 06 0918
B04 06 0918
 
Hadoop @ Sara & BiG Grid
Hadoop @ Sara & BiG GridHadoop @ Sara & BiG Grid
Hadoop @ Sara & BiG Grid
 
Building a Big Data platform with the Hadoop ecosystem
Building a Big Data platform with the Hadoop ecosystemBuilding a Big Data platform with the Hadoop ecosystem
Building a Big Data platform with the Hadoop ecosystem
 
Available platforms for Big Data 2.0
Available platforms for Big Data 2.0Available platforms for Big Data 2.0
Available platforms for Big Data 2.0
 
Democratizing Data Science on Kubernetes
Democratizing Data Science on Kubernetes Democratizing Data Science on Kubernetes
Democratizing Data Science on Kubernetes
 
Hadoop and IoT Sinergija 2014
Hadoop and IoT Sinergija 2014Hadoop and IoT Sinergija 2014
Hadoop and IoT Sinergija 2014
 
Hadoop and IoT Sinergija 2014
Hadoop and IoT Sinergija 2014Hadoop and IoT Sinergija 2014
Hadoop and IoT Sinergija 2014
 
Analyzing Big data in R and Scala using Apache Spark 17-7-19
Analyzing Big data in R and Scala using Apache Spark  17-7-19Analyzing Big data in R and Scala using Apache Spark  17-7-19
Analyzing Big data in R and Scala using Apache Spark 17-7-19
 
Hadoop
HadoopHadoop
Hadoop
 
Sentiment Analysis using Big Data
Sentiment Analysis using Big Data Sentiment Analysis using Big Data
Sentiment Analysis using Big Data
 
Tools and techniques for data science
Tools and techniques for data scienceTools and techniques for data science
Tools and techniques for data science
 
What's New in Cytoscape
What's New in CytoscapeWhat's New in Cytoscape
What's New in Cytoscape
 
Data infrastructure at Facebook
Data infrastructure at Facebook Data infrastructure at Facebook
Data infrastructure at Facebook
 
Tiny Batches, in the wine: Shiny New Bits in Spark Streaming
Tiny Batches, in the wine: Shiny New Bits in Spark StreamingTiny Batches, in the wine: Shiny New Bits in Spark Streaming
Tiny Batches, in the wine: Shiny New Bits in Spark Streaming
 
Oct 2011 CHADNUG Presentation on Hadoop
Oct 2011 CHADNUG Presentation on HadoopOct 2011 CHADNUG Presentation on Hadoop
Oct 2011 CHADNUG Presentation on Hadoop
 
SQLSaturday #230 - Introduction to Microsoft Big Data (Part 1)
SQLSaturday #230 - Introduction to Microsoft Big Data (Part 1)SQLSaturday #230 - Introduction to Microsoft Big Data (Part 1)
SQLSaturday #230 - Introduction to Microsoft Big Data (Part 1)
 
Big data Big Analytics
Big data Big AnalyticsBig data Big Analytics
Big data Big Analytics
 
Big Data with hadoop, Spark and BigQuery (Google cloud next Extended 2017 Kar...
Big Data with hadoop, Spark and BigQuery (Google cloud next Extended 2017 Kar...Big Data with hadoop, Spark and BigQuery (Google cloud next Extended 2017 Kar...
Big Data with hadoop, Spark and BigQuery (Google cloud next Extended 2017 Kar...
 
Delivering Agile Data Science on Openshift - Red Hat Summit 2019
Delivering Agile Data Science on Openshift  - Red Hat Summit 2019Delivering Agile Data Science on Openshift  - Red Hat Summit 2019
Delivering Agile Data Science on Openshift - Red Hat Summit 2019
 

Mehr von Xavier de Pedro

GNU Linux - Introduction and Administration
GNU Linux - Introduction and AdministrationGNU Linux - Introduction and Administration
GNU Linux - Introduction and AdministrationXavier de Pedro
 
Big data with Modern R and Spark - 2023
Big data with Modern R and Spark - 2023Big data with Modern R and Spark - 2023
Big data with Modern R and Spark - 2023Xavier de Pedro
 
GNU Linux - Introduction and Administration
GNU Linux - Introduction and AdministrationGNU Linux - Introduction and Administration
GNU Linux - Introduction and AdministrationXavier de Pedro
 
Taller Allibera el teu ordinador amb Linux en catala
Taller Allibera el teu ordinador amb Linux en catalaTaller Allibera el teu ordinador amb Linux en catala
Taller Allibera el teu ordinador amb Linux en catalaXavier de Pedro
 
GNU Linux - Introducción y Administración
GNU Linux - Introducción y AdministraciónGNU Linux - Introducción y Administración
GNU Linux - Introducción y AdministraciónXavier de Pedro
 
Linux Introduction & Administration
Linux Introduction & AdministrationLinux Introduction & Administration
Linux Introduction & AdministrationXavier de Pedro
 
Challenges and opportunities in Artificial Intelligence
Challenges and opportunities in Artificial IntelligenceChallenges and opportunities in Artificial Intelligence
Challenges and opportunities in Artificial IntelligenceXavier de Pedro
 
Barcelona Digital City Plan - 3' Briefing
Barcelona Digital City Plan - 3' BriefingBarcelona Digital City Plan - 3' Briefing
Barcelona Digital City Plan - 3' BriefingXavier de Pedro
 
GNU/Linux: Introduction and Administration
GNU/Linux: Introduction and AdministrationGNU/Linux: Introduction and Administration
GNU/Linux: Introduction and AdministrationXavier de Pedro
 
Enhance your Team Work with Distributed Version Control Systems - DVCS
Enhance your Team Work with Distributed Version Control Systems - DVCSEnhance your Team Work with Distributed Version Control Systems - DVCS
Enhance your Team Work with Distributed Version Control Systems - DVCSXavier de Pedro
 
Enhance your Team Work with Distributed Version Control Systems - DVCS
Enhance your Team Work with Distributed Version Control Systems - DVCSEnhance your Team Work with Distributed Version Control Systems - DVCS
Enhance your Team Work with Distributed Version Control Systems - DVCSXavier de Pedro
 
150511 programari lliure_i_taller_de_linux_v2
150511 programari lliure_i_taller_de_linux_v2150511 programari lliure_i_taller_de_linux_v2
150511 programari lliure_i_taller_de_linux_v2Xavier de Pedro
 
Hack-tivisme amb eines i continguts alliberats: beneficia-te'n!
Hack-tivisme amb eines i continguts alliberats: beneficia-te'n!Hack-tivisme amb eines i continguts alliberats: beneficia-te'n!
Hack-tivisme amb eines i continguts alliberats: beneficia-te'n!Xavier de Pedro
 
Hack-tivisme amb continguts i eines alliberades: beneficia-te'n!
Hack-tivisme amb continguts i eines alliberades: beneficia-te'n!Hack-tivisme amb continguts i eines alliberades: beneficia-te'n!
Hack-tivisme amb continguts i eines alliberades: beneficia-te'n!Xavier de Pedro
 
V Jornadas de Software Libre - UPC: TikiWiki en contextos educativos (I) y (II)
V Jornadas de Software Libre - UPC: TikiWiki en contextos educativos (I) y (II)V Jornadas de Software Libre - UPC: TikiWiki en contextos educativos (I) y (II)
V Jornadas de Software Libre - UPC: TikiWiki en contextos educativos (I) y (II)Xavier de Pedro
 
Empleo de isótopos estables en cadenas tróficas
Empleo de isótopos estables en cadenas tróficasEmpleo de isótopos estables en cadenas tróficas
Empleo de isótopos estables en cadenas tróficasXavier de Pedro
 
II jornadas de Usuarios R: Usando de forma segura R vía web con Tiki
II jornadas de Usuarios R: Usando de forma segura R vía web con TikiII jornadas de Usuarios R: Usando de forma segura R vía web con Tiki
II jornadas de Usuarios R: Usando de forma segura R vía web con TikiXavier de Pedro
 
Tiki for --dummies-- Smarties at VHIR
Tiki for --dummies-- Smarties at VHIRTiki for --dummies-- Smarties at VHIR
Tiki for --dummies-- Smarties at VHIRXavier de Pedro
 
Colaboración entre PDI (3): Web 2.0 con Tiki
Colaboración entre PDI (3): Web 2.0 con TikiColaboración entre PDI (3): Web 2.0 con Tiki
Colaboración entre PDI (3): Web 2.0 con TikiXavier de Pedro
 

Mehr von Xavier de Pedro (20)

GNU Linux - Introduction and Administration
GNU Linux - Introduction and AdministrationGNU Linux - Introduction and Administration
GNU Linux - Introduction and Administration
 
Big data with Modern R and Spark - 2023
Big data with Modern R and Spark - 2023Big data with Modern R and Spark - 2023
Big data with Modern R and Spark - 2023
 
GNU Linux - Introduction and Administration
GNU Linux - Introduction and AdministrationGNU Linux - Introduction and Administration
GNU Linux - Introduction and Administration
 
Taller Allibera el teu ordinador amb Linux en catala
Taller Allibera el teu ordinador amb Linux en catalaTaller Allibera el teu ordinador amb Linux en catala
Taller Allibera el teu ordinador amb Linux en catala
 
GNU Linux - Introducción y Administración
GNU Linux - Introducción y AdministraciónGNU Linux - Introducción y Administración
GNU Linux - Introducción y Administración
 
Linux Introduction & Administration
Linux Introduction & AdministrationLinux Introduction & Administration
Linux Introduction & Administration
 
Challenges and opportunities in Artificial Intelligence
Challenges and opportunities in Artificial IntelligenceChallenges and opportunities in Artificial Intelligence
Challenges and opportunities in Artificial Intelligence
 
Barcelona Digital City Plan - 3' Briefing
Barcelona Digital City Plan - 3' BriefingBarcelona Digital City Plan - 3' Briefing
Barcelona Digital City Plan - 3' Briefing
 
GNU/Linux: Introduction and Administration
GNU/Linux: Introduction and AdministrationGNU/Linux: Introduction and Administration
GNU/Linux: Introduction and Administration
 
GNU Linux Introduction
GNU Linux IntroductionGNU Linux Introduction
GNU Linux Introduction
 
Enhance your Team Work with Distributed Version Control Systems - DVCS
Enhance your Team Work with Distributed Version Control Systems - DVCSEnhance your Team Work with Distributed Version Control Systems - DVCS
Enhance your Team Work with Distributed Version Control Systems - DVCS
 
Enhance your Team Work with Distributed Version Control Systems - DVCS
Enhance your Team Work with Distributed Version Control Systems - DVCSEnhance your Team Work with Distributed Version Control Systems - DVCS
Enhance your Team Work with Distributed Version Control Systems - DVCS
 
150511 programari lliure_i_taller_de_linux_v2
150511 programari lliure_i_taller_de_linux_v2150511 programari lliure_i_taller_de_linux_v2
150511 programari lliure_i_taller_de_linux_v2
 
Hack-tivisme amb eines i continguts alliberats: beneficia-te'n!
Hack-tivisme amb eines i continguts alliberats: beneficia-te'n!Hack-tivisme amb eines i continguts alliberats: beneficia-te'n!
Hack-tivisme amb eines i continguts alliberats: beneficia-te'n!
 
Hack-tivisme amb continguts i eines alliberades: beneficia-te'n!
Hack-tivisme amb continguts i eines alliberades: beneficia-te'n!Hack-tivisme amb continguts i eines alliberades: beneficia-te'n!
Hack-tivisme amb continguts i eines alliberades: beneficia-te'n!
 
V Jornadas de Software Libre - UPC: TikiWiki en contextos educativos (I) y (II)
V Jornadas de Software Libre - UPC: TikiWiki en contextos educativos (I) y (II)V Jornadas de Software Libre - UPC: TikiWiki en contextos educativos (I) y (II)
V Jornadas de Software Libre - UPC: TikiWiki en contextos educativos (I) y (II)
 
Empleo de isótopos estables en cadenas tróficas
Empleo de isótopos estables en cadenas tróficasEmpleo de isótopos estables en cadenas tróficas
Empleo de isótopos estables en cadenas tróficas
 
II jornadas de Usuarios R: Usando de forma segura R vía web con Tiki
II jornadas de Usuarios R: Usando de forma segura R vía web con TikiII jornadas de Usuarios R: Usando de forma segura R vía web con Tiki
II jornadas de Usuarios R: Usando de forma segura R vía web con Tiki
 
Tiki for --dummies-- Smarties at VHIR
Tiki for --dummies-- Smarties at VHIRTiki for --dummies-- Smarties at VHIR
Tiki for --dummies-- Smarties at VHIR
 
Colaboración entre PDI (3): Web 2.0 con Tiki
Colaboración entre PDI (3): Web 2.0 con TikiColaboración entre PDI (3): Web 2.0 con Tiki
Colaboración entre PDI (3): Web 2.0 con Tiki
 

Kürzlich hochgeladen

Reconciling Conflicting Data Curation Actions: Transparency Through Argument...
Reconciling Conflicting Data Curation Actions:  Transparency Through Argument...Reconciling Conflicting Data Curation Actions:  Transparency Through Argument...
Reconciling Conflicting Data Curation Actions: Transparency Through Argument...Bertram Ludäscher
 
Top profile Call Girls In Satna [ 7014168258 ] Call Me For Genuine Models We ...
Top profile Call Girls In Satna [ 7014168258 ] Call Me For Genuine Models We ...Top profile Call Girls In Satna [ 7014168258 ] Call Me For Genuine Models We ...
Top profile Call Girls In Satna [ 7014168258 ] Call Me For Genuine Models We ...nirzagarg
 
Top profile Call Girls In Bihar Sharif [ 7014168258 ] Call Me For Genuine Mod...
Top profile Call Girls In Bihar Sharif [ 7014168258 ] Call Me For Genuine Mod...Top profile Call Girls In Bihar Sharif [ 7014168258 ] Call Me For Genuine Mod...
Top profile Call Girls In Bihar Sharif [ 7014168258 ] Call Me For Genuine Mod...nirzagarg
 
Gartner's Data Analytics Maturity Model.pptx
Gartner's Data Analytics Maturity Model.pptxGartner's Data Analytics Maturity Model.pptx
Gartner's Data Analytics Maturity Model.pptxchadhar227
 
Harnessing the Power of GenAI for BI and Reporting.pptx
Harnessing the Power of GenAI for BI and Reporting.pptxHarnessing the Power of GenAI for BI and Reporting.pptx
Harnessing the Power of GenAI for BI and Reporting.pptxParas Gupta
 
Top profile Call Girls In Begusarai [ 7014168258 ] Call Me For Genuine Models...
Top profile Call Girls In Begusarai [ 7014168258 ] Call Me For Genuine Models...Top profile Call Girls In Begusarai [ 7014168258 ] Call Me For Genuine Models...
Top profile Call Girls In Begusarai [ 7014168258 ] Call Me For Genuine Models...nirzagarg
 
怎样办理旧金山城市学院毕业证(CCSF毕业证书)成绩单学校原版复制
怎样办理旧金山城市学院毕业证(CCSF毕业证书)成绩单学校原版复制怎样办理旧金山城市学院毕业证(CCSF毕业证书)成绩单学校原版复制
怎样办理旧金山城市学院毕业证(CCSF毕业证书)成绩单学校原版复制vexqp
 
In Riyadh ((+919101817206)) Cytotec kit @ Abortion Pills Saudi Arabia
In Riyadh ((+919101817206)) Cytotec kit @ Abortion Pills Saudi ArabiaIn Riyadh ((+919101817206)) Cytotec kit @ Abortion Pills Saudi Arabia
In Riyadh ((+919101817206)) Cytotec kit @ Abortion Pills Saudi Arabiaahmedjiabur940
 
The-boAt-Story-Navigating-the-Waves-of-Innovation.pptx
The-boAt-Story-Navigating-the-Waves-of-Innovation.pptxThe-boAt-Story-Navigating-the-Waves-of-Innovation.pptx
The-boAt-Story-Navigating-the-Waves-of-Innovation.pptxVivek487417
 
Top profile Call Girls In Hapur [ 7014168258 ] Call Me For Genuine Models We ...
Top profile Call Girls In Hapur [ 7014168258 ] Call Me For Genuine Models We ...Top profile Call Girls In Hapur [ 7014168258 ] Call Me For Genuine Models We ...
Top profile Call Girls In Hapur [ 7014168258 ] Call Me For Genuine Models We ...nirzagarg
 
Top profile Call Girls In Purnia [ 7014168258 ] Call Me For Genuine Models We...
Top profile Call Girls In Purnia [ 7014168258 ] Call Me For Genuine Models We...Top profile Call Girls In Purnia [ 7014168258 ] Call Me For Genuine Models We...
Top profile Call Girls In Purnia [ 7014168258 ] Call Me For Genuine Models We...nirzagarg
 
Top profile Call Girls In Chandrapur [ 7014168258 ] Call Me For Genuine Model...
Top profile Call Girls In Chandrapur [ 7014168258 ] Call Me For Genuine Model...Top profile Call Girls In Chandrapur [ 7014168258 ] Call Me For Genuine Model...
Top profile Call Girls In Chandrapur [ 7014168258 ] Call Me For Genuine Model...gajnagarg
 
怎样办理伦敦大学毕业证(UoL毕业证书)成绩单学校原版复制
怎样办理伦敦大学毕业证(UoL毕业证书)成绩单学校原版复制怎样办理伦敦大学毕业证(UoL毕业证书)成绩单学校原版复制
怎样办理伦敦大学毕业证(UoL毕业证书)成绩单学校原版复制vexqp
 
一比一原版(UCD毕业证书)加州大学戴维斯分校毕业证成绩单原件一模一样
一比一原版(UCD毕业证书)加州大学戴维斯分校毕业证成绩单原件一模一样一比一原版(UCD毕业证书)加州大学戴维斯分校毕业证成绩单原件一模一样
一比一原版(UCD毕业证书)加州大学戴维斯分校毕业证成绩单原件一模一样wsppdmt
 
SR-101-01012024-EN.docx Federal Constitution of the Swiss Confederation
SR-101-01012024-EN.docx  Federal Constitution  of the Swiss ConfederationSR-101-01012024-EN.docx  Federal Constitution  of the Swiss Confederation
SR-101-01012024-EN.docx Federal Constitution of the Swiss ConfederationEfruzAsilolu
 
Capstone in Interprofessional Informatic // IMPACT OF COVID 19 ON EDUCATION
Capstone in Interprofessional Informatic  // IMPACT OF COVID 19 ON EDUCATIONCapstone in Interprofessional Informatic  // IMPACT OF COVID 19 ON EDUCATION
Capstone in Interprofessional Informatic // IMPACT OF COVID 19 ON EDUCATIONLakpaYanziSherpa
 
怎样办理纽约州立大学宾汉姆顿分校毕业证(SUNY-Bin毕业证书)成绩单学校原版复制
怎样办理纽约州立大学宾汉姆顿分校毕业证(SUNY-Bin毕业证书)成绩单学校原版复制怎样办理纽约州立大学宾汉姆顿分校毕业证(SUNY-Bin毕业证书)成绩单学校原版复制
怎样办理纽约州立大学宾汉姆顿分校毕业证(SUNY-Bin毕业证书)成绩单学校原版复制vexqp
 
怎样办理圣路易斯大学毕业证(SLU毕业证书)成绩单学校原版复制
怎样办理圣路易斯大学毕业证(SLU毕业证书)成绩单学校原版复制怎样办理圣路易斯大学毕业证(SLU毕业证书)成绩单学校原版复制
怎样办理圣路易斯大学毕业证(SLU毕业证书)成绩单学校原版复制vexqp
 
PLE-statistics document for primary schs
PLE-statistics document for primary schsPLE-statistics document for primary schs
PLE-statistics document for primary schscnajjemba
 

Kürzlich hochgeladen (20)

Reconciling Conflicting Data Curation Actions: Transparency Through Argument...
Reconciling Conflicting Data Curation Actions:  Transparency Through Argument...Reconciling Conflicting Data Curation Actions:  Transparency Through Argument...
Reconciling Conflicting Data Curation Actions: Transparency Through Argument...
 
Top profile Call Girls In Satna [ 7014168258 ] Call Me For Genuine Models We ...
Top profile Call Girls In Satna [ 7014168258 ] Call Me For Genuine Models We ...Top profile Call Girls In Satna [ 7014168258 ] Call Me For Genuine Models We ...
Top profile Call Girls In Satna [ 7014168258 ] Call Me For Genuine Models We ...
 
Top profile Call Girls In Bihar Sharif [ 7014168258 ] Call Me For Genuine Mod...
Top profile Call Girls In Bihar Sharif [ 7014168258 ] Call Me For Genuine Mod...Top profile Call Girls In Bihar Sharif [ 7014168258 ] Call Me For Genuine Mod...
Top profile Call Girls In Bihar Sharif [ 7014168258 ] Call Me For Genuine Mod...
 
Gartner's Data Analytics Maturity Model.pptx
Gartner's Data Analytics Maturity Model.pptxGartner's Data Analytics Maturity Model.pptx
Gartner's Data Analytics Maturity Model.pptx
 
Harnessing the Power of GenAI for BI and Reporting.pptx
Harnessing the Power of GenAI for BI and Reporting.pptxHarnessing the Power of GenAI for BI and Reporting.pptx
Harnessing the Power of GenAI for BI and Reporting.pptx
 
Top profile Call Girls In Begusarai [ 7014168258 ] Call Me For Genuine Models...
Top profile Call Girls In Begusarai [ 7014168258 ] Call Me For Genuine Models...Top profile Call Girls In Begusarai [ 7014168258 ] Call Me For Genuine Models...
Top profile Call Girls In Begusarai [ 7014168258 ] Call Me For Genuine Models...
 
怎样办理旧金山城市学院毕业证(CCSF毕业证书)成绩单学校原版复制
怎样办理旧金山城市学院毕业证(CCSF毕业证书)成绩单学校原版复制怎样办理旧金山城市学院毕业证(CCSF毕业证书)成绩单学校原版复制
怎样办理旧金山城市学院毕业证(CCSF毕业证书)成绩单学校原版复制
 
In Riyadh ((+919101817206)) Cytotec kit @ Abortion Pills Saudi Arabia
In Riyadh ((+919101817206)) Cytotec kit @ Abortion Pills Saudi ArabiaIn Riyadh ((+919101817206)) Cytotec kit @ Abortion Pills Saudi Arabia
In Riyadh ((+919101817206)) Cytotec kit @ Abortion Pills Saudi Arabia
 
The-boAt-Story-Navigating-the-Waves-of-Innovation.pptx
The-boAt-Story-Navigating-the-Waves-of-Innovation.pptxThe-boAt-Story-Navigating-the-Waves-of-Innovation.pptx
The-boAt-Story-Navigating-the-Waves-of-Innovation.pptx
 
Top profile Call Girls In Hapur [ 7014168258 ] Call Me For Genuine Models We ...
Top profile Call Girls In Hapur [ 7014168258 ] Call Me For Genuine Models We ...Top profile Call Girls In Hapur [ 7014168258 ] Call Me For Genuine Models We ...
Top profile Call Girls In Hapur [ 7014168258 ] Call Me For Genuine Models We ...
 
Top profile Call Girls In Purnia [ 7014168258 ] Call Me For Genuine Models We...
Top profile Call Girls In Purnia [ 7014168258 ] Call Me For Genuine Models We...Top profile Call Girls In Purnia [ 7014168258 ] Call Me For Genuine Models We...
Top profile Call Girls In Purnia [ 7014168258 ] Call Me For Genuine Models We...
 
Top profile Call Girls In Chandrapur [ 7014168258 ] Call Me For Genuine Model...
Top profile Call Girls In Chandrapur [ 7014168258 ] Call Me For Genuine Model...Top profile Call Girls In Chandrapur [ 7014168258 ] Call Me For Genuine Model...
Top profile Call Girls In Chandrapur [ 7014168258 ] Call Me For Genuine Model...
 
怎样办理伦敦大学毕业证(UoL毕业证书)成绩单学校原版复制
怎样办理伦敦大学毕业证(UoL毕业证书)成绩单学校原版复制怎样办理伦敦大学毕业证(UoL毕业证书)成绩单学校原版复制
怎样办理伦敦大学毕业证(UoL毕业证书)成绩单学校原版复制
 
一比一原版(UCD毕业证书)加州大学戴维斯分校毕业证成绩单原件一模一样
一比一原版(UCD毕业证书)加州大学戴维斯分校毕业证成绩单原件一模一样一比一原版(UCD毕业证书)加州大学戴维斯分校毕业证成绩单原件一模一样
一比一原版(UCD毕业证书)加州大学戴维斯分校毕业证成绩单原件一模一样
 
SR-101-01012024-EN.docx Federal Constitution of the Swiss Confederation
SR-101-01012024-EN.docx  Federal Constitution  of the Swiss ConfederationSR-101-01012024-EN.docx  Federal Constitution  of the Swiss Confederation
SR-101-01012024-EN.docx Federal Constitution of the Swiss Confederation
 
Capstone in Interprofessional Informatic // IMPACT OF COVID 19 ON EDUCATION
Capstone in Interprofessional Informatic  // IMPACT OF COVID 19 ON EDUCATIONCapstone in Interprofessional Informatic  // IMPACT OF COVID 19 ON EDUCATION
Capstone in Interprofessional Informatic // IMPACT OF COVID 19 ON EDUCATION
 
怎样办理纽约州立大学宾汉姆顿分校毕业证(SUNY-Bin毕业证书)成绩单学校原版复制
怎样办理纽约州立大学宾汉姆顿分校毕业证(SUNY-Bin毕业证书)成绩单学校原版复制怎样办理纽约州立大学宾汉姆顿分校毕业证(SUNY-Bin毕业证书)成绩单学校原版复制
怎样办理纽约州立大学宾汉姆顿分校毕业证(SUNY-Bin毕业证书)成绩单学校原版复制
 
Abortion pills in Jeddah | +966572737505 | Get Cytotec
Abortion pills in Jeddah | +966572737505 | Get CytotecAbortion pills in Jeddah | +966572737505 | Get Cytotec
Abortion pills in Jeddah | +966572737505 | Get Cytotec
 
怎样办理圣路易斯大学毕业证(SLU毕业证书)成绩单学校原版复制
怎样办理圣路易斯大学毕业证(SLU毕业证书)成绩单学校原版复制怎样办理圣路易斯大学毕业证(SLU毕业证书)成绩单学校原版复制
怎样办理圣路易斯大学毕业证(SLU毕业证书)成绩单学校原版复制
 
PLE-statistics document for primary schs
PLE-statistics document for primary schsPLE-statistics document for primary schs
PLE-statistics document for primary schs
 

Big Data with Modern R & Spark