SlideShare a Scribd company logo
1 of 73
Download to read offline
Discovering+the+Power+of+Dark+Data+
Or:$The$Value$of$Rela/onships$
Javazone$Oslo$Sept$2015$
Michael+Hunger+
Caretaker,$Neo4j$Community$
Ask$me$anything$
$
michael@neo4j.com$$
$
@mesirii$|$@neo4j$
The+world+is+a+graph+–+everything+is+connected+
•  people,&places,&events&
•  companies,&markets&
•  countries,&history,&poli4cs&
•  sciences,&art,&teaching&
•  technology,&networks,&machines,&&
applica4ons,&users&
•  so7ware,&code,&dependencies,&&
architecture,&deployments&
Meet+Jan+
Kontext+is+King+
+
Community$Graph$
Neo4j$
Let‘s+have+a+look.+
by&Mike&Nolan&CC&BY?SA&3.0&
NODE&
key:&“value”&
proper4es&
Property+Graph+Model+
Nodes&
•  The&en44es&in&the&graph&
•  Can&have&name?value&proper%es'
•  Can&be&labeled&
RelaEonships&
•  Relate&nodes&by&type&and&direc4on&
•  Can&have&name?value&proper%es'
RELATIONSHIP&
NODE& NODE&
key:&“value”&
proper4es&
key:&“value”&
proper4es&
key:&“value”&
proper4es&
CAR&
name:&“Jan”&
last:&Hansson&
born:&1978&
name:&“Anne”&
last:&Olsen&
since:&&
Jan&10,&2011&
brand:&“Volvo”&
model:&“V70”&
Property+Graph+Model+&+Example+
Nodes&
•  The&en44es&in&the&graph&
•  Can&have&name?value&proper%es'
•  Can&be&labeled&
RelaEonships&
•  Relate&nodes&by&type&and&direc4on&
•  Can&have&name?value&proper%es'
LOVES&
LOVES&
LIVES&WITH&
PERSON& PERSON&
Your+friend+Neo4j+
An&openLsource$graph$database&
•  Manager+and+store&your&connected+
data+as&a&graph+
•  Query+relaEonships&&
easily&and&quickly&
•  Evolve+model+and+applicaEons++
to&support&new&requirements&and&
insights&
•  Built&to&solve&relaEonal+pains++
&
Your+friend+Neo4j+
An&openLsource$graph$database$
&
•  Built+for+RelaEonships+
•  Open+Source+
•  Java+&+Scala+
•  High+Performance+
•  ACIDSDatabase+
&
Whiteboard+Friendly+Graph+Modeling+
Graph+Query+Language:+Cypher+
&&&&&&&&&&&&&&(jan:Person&{&name:“Jan”}&)&?[:LOVES]?>&(anne:Person&{&name:“Anne”}&)&&
LOVES&
Jan+ Anne+
NODE& NODE&
LABEL& PROPERTY&LABEL& PROPERTY&
MATCH+
Cypher:+Clauses+
• CREATE&pabern&
• MERGE&pabern&
• ADD&
• DELETE&
Cypher:+Clauses+
• MATCH&pabern&&
WHERE&pred&
• ORDER&BY&expr&&
SKIP&...&LIMIT&...&
• RETURN&expr&AS&alias&...&
Cypher:+Clauses+
• WITH&expr&AS&alias,&...&
• UNWIND&coll&AS&item&
• LOAD&CSV&FROM&„url“&AS&row&
GeYng+Data+into+Neo4j+
CypherSBased+“LOAD+CSV”+
•  Transac4onal&(ACID)&writes&
•  Ini4al&and&incremental&loads&of&up&to&&
10&million&nodes&and&rela4onships&
LOAD%CSV%WITH%HEADERS%FROM%"url"%AS%row%
MERGE%(:Person%{name:row.name,%%
%%%%%%%%%%%%%%%%%age:toInt(row.age)});%
GeYng+Data+into+Neo4j+
Load+JSON+with+Cypher+
•  Send&JSON&as&parameter&
•  Deconstruct&the&document&
•  Into&a&non?duplicated&graph&model&
UNWIND%{json}.items%as%item%
MERGE%(:Person%{name:item.name,%%
%%%%%%%%%%%%%%%%%age:toInt(item.age)});%
GeYng+Data+into+Neo4j+
CSV+Bulk+Loader++++neo4j/import'
•  For&ini4al&database&popula4on&
•  For&loads&with&10B+&records&
•  Up&to&1M&records&per&second&
bin/neo4jOimport%–Ointo%people.db%%
%OOnodes:Person%people.csv%
%OOrelationship:FRIEND_OF%friendship.csv%
Let‘s+LOAD+
USED& SHARED&
&&&
Core+Model+
POSTED&
&&
&
&
Full+Model+
Twi]er+
•  Run&a&twiber&search,&exclude&Neo4j&sources&
•  „neo4j&OR&#neo4j&OR&@neo4j&&
&?from:@neo4j&?from:@neotechnology“&
•  Pass&resul4ng&JSON&directly&to&Cypher&
(:Person)O[:TWEETED]O>(:Tweet:Content)O[:TAGGED]O>(:Tag)%
(:Tweet)O[:MENTIONS]O>(:Person)%
(:Tweet)O[:RETWEET]O>(:Tweet)%
(:Tweet)O[:REPLY]O>(:Tweet)%
(:Tweet)O[:CONTAINS]O>(:Link)%
Twi]er+
UNWIND%{tweets}%AS%t%
WITH%t,%t.entities%AS%e,%t.user%AS%u%
%
MERGE%(tweet:Tweet:Content%{id:t.id})%
SET%tweet.text%=%t.text,%tweet.created_at%=%t.created_at,...%
%
MERGE%(p:Person%{name:u.name})%%
SET%p.handle%=%u.screen_name,%p.followers%=%u.followers_count,%...%
%
MERGE%(p)O[:POSTED]O>(tweet)%
%
FOREACH%(h%IN%e.hashtags%|%%
%%MERGE%(tag:Tag%{name:toLower(h.text)})%
%%MERGE%(tweet)O[:TAGGED]O>(tag))%
%
FOREACH%(url%IN%e.urls%|%
%%MERGE%(link:Link%{url:u.expanded_url})%
%%MERGE%(tweet)O[:CONTAINS]O>(link))%
...%
Data+imported&
Connect!+&
•  twiber&handle&
•  email&
•  website&
•  name&
•  tags&
•  url&
+
SoOware$Analy/cs$
jqassistant.org$
So_ware+AnalyEcs+
So7ware&is&connected&informa4on&
•  Source&?>&AST&
•  Inheritance,&Composi4on,&Delega4on&
•  Call&Trees&
•  Run4me&Memory&
•  Dependencies&
•  Modules,&Libraries&
•  Tests&
•  ...&
& hbps://jqassistant.org&
jQAssistant+
•  GeekCruise:&My&first&Neo4j&project&
•  So_ware+deteriorates+
•  Develop&rules&and&enforce&them&
•  Commercial&Tools&too&inflexible&
•  Open&Source&So7ware&...&&
•  Scanner&?>&Enhancer&?>&Analyzer&
•  Enrichment,&Concepts&and&Rulez&in&Cypher&
•  Scanner&Plugins&
•  Integrate&in&Build&Process&
•  Fail,&Generate&Reports,&...& hbp://jqassistant.org&
Let‘s+explore+...+
hbp://jqassistant.org/demo/java8&
...+The+JDK+
+
A$tale$of$french$silos$
SFR$France$
Background&
Business&problem& Solu4on&&&Benefits&
©&All&Rights&Reserved&2014&|&Neo&Technology,&Inc.&
Industry:'''Communica%ons'
Use'case:''Network'Management'
Paris,&France&
•  Large&French&communica4ons&company&
•  Tons&of&various&networking&infrasctructure&
•  Has&to&shut&down&equipment&for&maintenance&
•  Who+is+impacted?+How+to+compensate?+
•  Data&lives&in&30+&systems&
•  Took&a&week&to&print,&reseach,&inform&...&
•  Un4l&...&
5
8
Background&
Business&problem& Solu4on&&&Benefits&
©&All&Rights&Reserved&2014&|&Neo&Technology,&Inc.&
Domain+
Background&
Business&problem& Solu4on&&&Benefits&
©&All&Rights&Reserved&2014&|&Neo&Technology,&Inc.&
Industry:'''Communica%ons'
Use'case:''Network'Management'
Paris,&France&
•  Second&largest&communica4ons&company&
in&France&
•  Part&of&Vivendi&Group,&&
partnering&with&Vodafone&
6
0
Background&
Business&problem& Solu4on&&&Benefits&
©&All&Rights&Reserved&2014&|&Neo&Technology,&Inc.&
• Infrastructure&maintenance&took&one+full+week+to&plan,&
because&of&the&need&to&model&network&impacts&
• Needed&rapid,&automated&“what+if”&analysis&to&ensure&
resilience&during&unplanned&network&outages&
• Iden4fy&weaknesses&in&the&network&to&uncover&the&need&for&
addi4onal&redundancy&
• Network&informa4on&spread&across+>+30+systems,&with&daily&
changes&to&network&infrastructure&
• Business&needs&some4mes&changed&very&rapidly&
Business+Problem+
Background&
Business&problem& Solu4on&&&Benefits&
©&All&Rights&Reserved&2014&|&Neo&Technology,&Inc.&
• Flexible&network&inventory&management&system,&to&support&
modeling,&aggrega4on&&&troubleshoo4ng&
• Single+source+of+truth+(Neo4j)&represen4ng&the&en4re&network&
• Dynamic&system&loads&data&from+30++systems,&and&allows&new&
applica4ons&to&access&network&data&
• Modeling&efforts&greatly&reduced&because&of&the&near+1:1+
mapping+between&the&real&world&and&the&graph&
• Flexible+schema+highly&adaptable&to&changing&business&
requirements&
SoluEon+&+Benefits+
+
Visual$Graph$Search$
For$NonLDevelopers$
Background&
Business&problem& Solu4on&&&Benefits&
©&All&Rights&Reserved&2014&|&Neo&Technology,&Inc.&
• Neat&Javascript&library&based&on&d3.js+
• Uses&Graph&Metadata&to&offer&visual&search&
• Categories&to&filter&Instances&
• Component&based&extensions&
• Graph&&
• Zero&Config&with&Web&Extension&
Popoto.js+
hbp://www.popotojs.com/&
Background&
Business&problem& Solu4on&&&Benefits&
©&All&Rights&Reserved&2014&|&Neo&Technology,&Inc.&
Popoto.js+
Background&
Business&problem& Solu4on&&&Benefits&
©&All&Rights&Reserved&2014&|&Neo&Technology,&Inc.&
Popoto.js+
Background&
Business&problem& Solu4on&&&Benefits&
©&All&Rights&Reserved&2014&|&Neo&Technology,&Inc.&
Visual+Search+Bar+
• Based&on&visualsearch.js&
• Uses&graph&metadata&for&parametriza4on&
• Limit&results&by&selected&items&
• By&Max&de&Marzi&
maxdemarzi.com/2013/07/03/the?last?mile/&
Background&
Business&problem& Solu4on&&&Benefits&
©&All&Rights&Reserved&2014&|&Neo&Technology,&Inc.&
• Natural&Language&to&Cypher&
• Ruby&TreeTop&Gem&for&NLP&&
• Convert&phrases&to&Cypher&Fragments&
Facebook+Graph+Search+
maxdemarzi.com/2013/01/28/facebook?graph?search?with?cypher?and?neo4j/&
Users+Love+Neo4j+
We&found&Neo4j&to&be&
literally&thousands+of+Emes+
faster+than&our&prior&MySQL&
solu4on,&with&queries&that&
require&10+to+100+Emes+less+
code.&Today,&Neo4j&provides&
eBay&with&func4onality&that&
was&previously+impossible. &
&
Volker'Pacher'
Senior'Developer'
Performance+
"The&Neo4j&graph&database&gives&us&dras4cally&
improved&performance&and&a&simple&language&to&query&
our&connected&data”&&
/'Sebas%an'Verheugher,'Telenor&
Scale+and+Availability+
"As&the&current&market&leader&in&graph&databases,&and&
with&enterprise&features&for&scalability&and&availability,&
Neo4j&is&the&right&choice&to&meet&our&demands.”&
&&&&/'Marcos'Wada,'Walmart&
Discrete+Data+
Minimally''
connected'data'
Graph+Databases+are+designed+for+data+relaEonships+
Summary+S+Use+the+Right+Database+for+the+Job+
Other+NoSQL+ RelaEonal+DBMS+ Graph+DBMS+
Connected+Data+
Focused'on'
Data'Rela%onships'
Development+Benefits+
Easy&model&maintenance&
Easy&query&
Deployment+Benefits&
Ultra&high&performance&
Minimal&resource&usage&
There+Are+Lots+of+Ways+to+Easily+Learn+Neo4j+
neo4j.com/developer+
Users+Love+Neo4j+–+Will+you+too?++
Thanks!+QuesEons?$
Free$O’Reilly$Book:$
graphdatabases.com$
Find$Me:$@neo4j$

More Related Content

Viewers also liked

Graph Your Business - GraphDay JimWebber
Graph Your Business - GraphDay JimWebberGraph Your Business - GraphDay JimWebber
Graph Your Business - GraphDay JimWebberNeo4j
 
Graph all the things
Graph all the thingsGraph all the things
Graph all the thingsNeo4j
 
Neo4j Makes Graphs Easy? - GraphDay AmandaLaucher
Neo4j Makes Graphs Easy? - GraphDay AmandaLaucherNeo4j Makes Graphs Easy? - GraphDay AmandaLaucher
Neo4j Makes Graphs Easy? - GraphDay AmandaLaucherNeo4j
 
Transparency One : La (re)découverte de la chaîne d'approvisionnement
Transparency One : La (re)découverte de la chaîne d'approvisionnementTransparency One : La (re)découverte de la chaîne d'approvisionnement
Transparency One : La (re)découverte de la chaîne d'approvisionnementNeo4j
 
GraphDay Noble/Coolio
GraphDay Noble/CoolioGraphDay Noble/Coolio
GraphDay Noble/CoolioNeo4j
 
Meetup Analytics with R and Neo4j
Meetup Analytics with R and Neo4jMeetup Analytics with R and Neo4j
Meetup Analytics with R and Neo4jNeo4j
 
Graphs fun vjug2
Graphs fun vjug2Graphs fun vjug2
Graphs fun vjug2Neo4j
 
GraphTalk Frankfurt - Einführung in Graphdatenbanken
GraphTalk Frankfurt - Einführung in GraphdatenbankenGraphTalk Frankfurt - Einführung in Graphdatenbanken
GraphTalk Frankfurt - Einführung in GraphdatenbankenNeo4j
 
GraphTalk - Semantische Netze mit structr
GraphTalk - Semantische Netze mit structrGraphTalk - Semantische Netze mit structr
GraphTalk - Semantische Netze mit structrNeo4j
 
Graph all the things - PRathle
Graph all the things - PRathleGraph all the things - PRathle
Graph all the things - PRathleNeo4j
 
GraphTalks - Einführung
GraphTalks - EinführungGraphTalks - Einführung
GraphTalks - EinführungNeo4j
 
GraphTalk - Semantisches PDM bei Schleich
GraphTalk - Semantisches PDM bei Schleich GraphTalk - Semantisches PDM bei Schleich
GraphTalk - Semantisches PDM bei Schleich Neo4j
 
RDBMS to Graphs
RDBMS to GraphsRDBMS to Graphs
RDBMS to GraphsNeo4j
 
Neo4j Makes Graphs Easy: Nicole White
Neo4j Makes Graphs Easy: Nicole WhiteNeo4j Makes Graphs Easy: Nicole White
Neo4j Makes Graphs Easy: Nicole WhiteNeo4j
 
GraphConnect 2014 SF: Graphing the Supply Chain
GraphConnect 2014 SF: Graphing the Supply ChainGraphConnect 2014 SF: Graphing the Supply Chain
GraphConnect 2014 SF: Graphing the Supply ChainNeo4j
 
Introduction to graph databases GraphDays
Introduction to graph databases  GraphDaysIntroduction to graph databases  GraphDays
Introduction to graph databases GraphDaysNeo4j
 
GraphDay Stockholm - Fraud Prevention
GraphDay Stockholm - Fraud PreventionGraphDay Stockholm - Fraud Prevention
GraphDay Stockholm - Fraud PreventionNeo4j
 
Using Neo4j from Java
Using Neo4j from JavaUsing Neo4j from Java
Using Neo4j from JavaNeo4j
 
Introduction to Neo4j and .Net
Introduction to Neo4j and .NetIntroduction to Neo4j and .Net
Introduction to Neo4j and .NetNeo4j
 
Initiation à Neo4j
Initiation à Neo4jInitiation à Neo4j
Initiation à Neo4jNeo4j
 

Viewers also liked (20)

Graph Your Business - GraphDay JimWebber
Graph Your Business - GraphDay JimWebberGraph Your Business - GraphDay JimWebber
Graph Your Business - GraphDay JimWebber
 
Graph all the things
Graph all the thingsGraph all the things
Graph all the things
 
Neo4j Makes Graphs Easy? - GraphDay AmandaLaucher
Neo4j Makes Graphs Easy? - GraphDay AmandaLaucherNeo4j Makes Graphs Easy? - GraphDay AmandaLaucher
Neo4j Makes Graphs Easy? - GraphDay AmandaLaucher
 
Transparency One : La (re)découverte de la chaîne d'approvisionnement
Transparency One : La (re)découverte de la chaîne d'approvisionnementTransparency One : La (re)découverte de la chaîne d'approvisionnement
Transparency One : La (re)découverte de la chaîne d'approvisionnement
 
GraphDay Noble/Coolio
GraphDay Noble/CoolioGraphDay Noble/Coolio
GraphDay Noble/Coolio
 
Meetup Analytics with R and Neo4j
Meetup Analytics with R and Neo4jMeetup Analytics with R and Neo4j
Meetup Analytics with R and Neo4j
 
Graphs fun vjug2
Graphs fun vjug2Graphs fun vjug2
Graphs fun vjug2
 
GraphTalk Frankfurt - Einführung in Graphdatenbanken
GraphTalk Frankfurt - Einführung in GraphdatenbankenGraphTalk Frankfurt - Einführung in Graphdatenbanken
GraphTalk Frankfurt - Einführung in Graphdatenbanken
 
GraphTalk - Semantische Netze mit structr
GraphTalk - Semantische Netze mit structrGraphTalk - Semantische Netze mit structr
GraphTalk - Semantische Netze mit structr
 
Graph all the things - PRathle
Graph all the things - PRathleGraph all the things - PRathle
Graph all the things - PRathle
 
GraphTalks - Einführung
GraphTalks - EinführungGraphTalks - Einführung
GraphTalks - Einführung
 
GraphTalk - Semantisches PDM bei Schleich
GraphTalk - Semantisches PDM bei Schleich GraphTalk - Semantisches PDM bei Schleich
GraphTalk - Semantisches PDM bei Schleich
 
RDBMS to Graphs
RDBMS to GraphsRDBMS to Graphs
RDBMS to Graphs
 
Neo4j Makes Graphs Easy: Nicole White
Neo4j Makes Graphs Easy: Nicole WhiteNeo4j Makes Graphs Easy: Nicole White
Neo4j Makes Graphs Easy: Nicole White
 
GraphConnect 2014 SF: Graphing the Supply Chain
GraphConnect 2014 SF: Graphing the Supply ChainGraphConnect 2014 SF: Graphing the Supply Chain
GraphConnect 2014 SF: Graphing the Supply Chain
 
Introduction to graph databases GraphDays
Introduction to graph databases  GraphDaysIntroduction to graph databases  GraphDays
Introduction to graph databases GraphDays
 
GraphDay Stockholm - Fraud Prevention
GraphDay Stockholm - Fraud PreventionGraphDay Stockholm - Fraud Prevention
GraphDay Stockholm - Fraud Prevention
 
Using Neo4j from Java
Using Neo4j from JavaUsing Neo4j from Java
Using Neo4j from Java
 
Introduction to Neo4j and .Net
Introduction to Neo4j and .NetIntroduction to Neo4j and .Net
Introduction to Neo4j and .Net
 
Initiation à Neo4j
Initiation à Neo4jInitiation à Neo4j
Initiation à Neo4j
 

Similar to Graph Search and Discovery for your Dark Data

Hook Mobile Living Social Hackathon MoDevUX 2012
Hook Mobile Living Social Hackathon MoDevUX 2012Hook Mobile Living Social Hackathon MoDevUX 2012
Hook Mobile Living Social Hackathon MoDevUX 2012Wayne Chen
 
Teaching & Learning Forum presentation
Teaching & Learning Forum presentationTeaching & Learning Forum presentation
Teaching & Learning Forum presentationCarol Skyring
 
Neo4j GraphTalk Copenhagen - Introduction and Graph Use Cases
Neo4j GraphTalk Copenhagen - Introduction and Graph Use CasesNeo4j GraphTalk Copenhagen - Introduction and Graph Use Cases
Neo4j GraphTalk Copenhagen - Introduction and Graph Use CasesNeo4j
 
Craig Pladson On Interactive Marketing + Innovation
Craig Pladson On Interactive Marketing + InnovationCraig Pladson On Interactive Marketing + Innovation
Craig Pladson On Interactive Marketing + InnovationCraig Pladson
 
Intro to Neo4j and Graph Databases
Intro to Neo4j and Graph DatabasesIntro to Neo4j and Graph Databases
Intro to Neo4j and Graph DatabasesNeo4j
 
Eastside incubator - Startup in Seattle
Eastside incubator - Startup in SeattleEastside incubator - Startup in Seattle
Eastside incubator - Startup in SeattleBryan Starbuck
 
進化ゲーム理論の考え方でソーシャルゲームの "ソーシャル" を分析する
進化ゲーム理論の考え方でソーシャルゲームの "ソーシャル" を分析する進化ゲーム理論の考え方でソーシャルゲームの "ソーシャル" を分析する
進化ゲーム理論の考え方でソーシャルゲームの "ソーシャル" を分析するMasanori Takano
 
LinkedIn InMaps, Data Visualization Meetup 2011
LinkedIn InMaps, Data Visualization Meetup 2011LinkedIn InMaps, Data Visualization Meetup 2011
LinkedIn InMaps, Data Visualization Meetup 2011Mathieu Bastian
 
Creating Great Infographics & Visual Content
Creating Great Infographics & Visual Content Creating Great Infographics & Visual Content
Creating Great Infographics & Visual Content Visually
 
[Webinar] Introduction to Cypher
[Webinar] Introduction to Cypher[Webinar] Introduction to Cypher
[Webinar] Introduction to CypherNeo4j
 
Stad spel-data
Stad spel-dataStad spel-data
Stad spel-dataRene Pare
 
201210611 danish delegation
201210611 danish delegation201210611 danish delegation
201210611 danish delegationMartijn Kriens
 
Nordkapp dConstruct09 Recap
Nordkapp dConstruct09 RecapNordkapp dConstruct09 Recap
Nordkapp dConstruct09 RecapTeppo Kotirinta
 
Effective Devops - AWS Loft Event June 2015
Effective Devops - AWS Loft Event June 2015Effective Devops - AWS Loft Event June 2015
Effective Devops - AWS Loft Event June 2015Jennifer Davis
 
GraphTour - Popular Use Cases (Tel Aviv)
GraphTour - Popular Use Cases (Tel Aviv)GraphTour - Popular Use Cases (Tel Aviv)
GraphTour - Popular Use Cases (Tel Aviv)Neo4j
 

Similar to Graph Search and Discovery for your Dark Data (15)

Hook Mobile Living Social Hackathon MoDevUX 2012
Hook Mobile Living Social Hackathon MoDevUX 2012Hook Mobile Living Social Hackathon MoDevUX 2012
Hook Mobile Living Social Hackathon MoDevUX 2012
 
Teaching & Learning Forum presentation
Teaching & Learning Forum presentationTeaching & Learning Forum presentation
Teaching & Learning Forum presentation
 
Neo4j GraphTalk Copenhagen - Introduction and Graph Use Cases
Neo4j GraphTalk Copenhagen - Introduction and Graph Use CasesNeo4j GraphTalk Copenhagen - Introduction and Graph Use Cases
Neo4j GraphTalk Copenhagen - Introduction and Graph Use Cases
 
Craig Pladson On Interactive Marketing + Innovation
Craig Pladson On Interactive Marketing + InnovationCraig Pladson On Interactive Marketing + Innovation
Craig Pladson On Interactive Marketing + Innovation
 
Intro to Neo4j and Graph Databases
Intro to Neo4j and Graph DatabasesIntro to Neo4j and Graph Databases
Intro to Neo4j and Graph Databases
 
Eastside incubator - Startup in Seattle
Eastside incubator - Startup in SeattleEastside incubator - Startup in Seattle
Eastside incubator - Startup in Seattle
 
進化ゲーム理論の考え方でソーシャルゲームの "ソーシャル" を分析する
進化ゲーム理論の考え方でソーシャルゲームの "ソーシャル" を分析する進化ゲーム理論の考え方でソーシャルゲームの "ソーシャル" を分析する
進化ゲーム理論の考え方でソーシャルゲームの "ソーシャル" を分析する
 
LinkedIn InMaps, Data Visualization Meetup 2011
LinkedIn InMaps, Data Visualization Meetup 2011LinkedIn InMaps, Data Visualization Meetup 2011
LinkedIn InMaps, Data Visualization Meetup 2011
 
Creating Great Infographics & Visual Content
Creating Great Infographics & Visual Content Creating Great Infographics & Visual Content
Creating Great Infographics & Visual Content
 
[Webinar] Introduction to Cypher
[Webinar] Introduction to Cypher[Webinar] Introduction to Cypher
[Webinar] Introduction to Cypher
 
Stad spel-data
Stad spel-dataStad spel-data
Stad spel-data
 
201210611 danish delegation
201210611 danish delegation201210611 danish delegation
201210611 danish delegation
 
Nordkapp dConstruct09 Recap
Nordkapp dConstruct09 RecapNordkapp dConstruct09 Recap
Nordkapp dConstruct09 Recap
 
Effective Devops - AWS Loft Event June 2015
Effective Devops - AWS Loft Event June 2015Effective Devops - AWS Loft Event June 2015
Effective Devops - AWS Loft Event June 2015
 
GraphTour - Popular Use Cases (Tel Aviv)
GraphTour - Popular Use Cases (Tel Aviv)GraphTour - Popular Use Cases (Tel Aviv)
GraphTour - Popular Use Cases (Tel Aviv)
 

More from Neo4j

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...Neo4j
 
Neo4j - How KGs are shaping the future of Generative AI at AWS Summit London ...
Neo4j - How KGs are shaping the future of Generative AI at AWS Summit London ...Neo4j - How KGs are shaping the future of Generative AI at AWS Summit London ...
Neo4j - How KGs are shaping the future of Generative AI at AWS Summit London ...Neo4j
 
QIAGEN: Biomedical Knowledge Graphs for Data Scientists and Bioinformaticians
QIAGEN: Biomedical Knowledge Graphs for Data Scientists and BioinformaticiansQIAGEN: Biomedical Knowledge Graphs for Data Scientists and Bioinformaticians
QIAGEN: Biomedical Knowledge Graphs for Data Scientists and BioinformaticiansNeo4j
 
EY_Graph Database Powered Sustainability
EY_Graph Database Powered SustainabilityEY_Graph Database Powered Sustainability
EY_Graph Database Powered SustainabilityNeo4j
 
SIEMENS: RAPUNZEL – A Tale About Knowledge Graph
SIEMENS: RAPUNZEL – A Tale About Knowledge GraphSIEMENS: RAPUNZEL – A Tale About Knowledge Graph
SIEMENS: RAPUNZEL – A Tale About Knowledge GraphNeo4j
 
Build your next Gen AI Breakthrough - April 2024
Build your next Gen AI Breakthrough - April 2024Build your next Gen AI Breakthrough - April 2024
Build your next Gen AI Breakthrough - April 2024Neo4j
 
Connecting the Dots for Information Discovery.pdf
Connecting the Dots for Information Discovery.pdfConnecting the Dots for Information Discovery.pdf
Connecting the Dots for Information Discovery.pdfNeo4j
 
ISDEFE - GraphSummit Madrid - ARETA: Aviation Real-Time Emissions Token Accre...
ISDEFE - GraphSummit Madrid - ARETA: Aviation Real-Time Emissions Token Accre...ISDEFE - GraphSummit Madrid - ARETA: Aviation Real-Time Emissions Token Accre...
ISDEFE - GraphSummit Madrid - ARETA: Aviation Real-Time Emissions Token Accre...Neo4j
 
BBVA - GraphSummit Madrid - Caso de éxito en BBVA: Optimizando con grafos
BBVA - GraphSummit Madrid - Caso de éxito en BBVA: Optimizando con grafosBBVA - GraphSummit Madrid - Caso de éxito en BBVA: Optimizando con grafos
BBVA - GraphSummit Madrid - Caso de éxito en BBVA: Optimizando con grafosNeo4j
 
Graph Everywhere - Josep Taruella - Por qué Graph Data Science en tus modelos...
Graph Everywhere - Josep Taruella - Por qué Graph Data Science en tus modelos...Graph Everywhere - Josep Taruella - Por qué Graph Data Science en tus modelos...
Graph Everywhere - Josep Taruella - Por qué Graph Data Science en tus modelos...Neo4j
 
GraphSummit Madrid - Product Vision and Roadmap - Luis Salvador Neo4j
GraphSummit Madrid - Product Vision and Roadmap - Luis Salvador Neo4jGraphSummit Madrid - Product Vision and Roadmap - Luis Salvador Neo4j
GraphSummit Madrid - Product Vision and Roadmap - Luis Salvador Neo4jNeo4j
 
Neo4j_Exploring the Impact of Graph Technology on Financial Services.pdf
Neo4j_Exploring the Impact of Graph Technology on Financial Services.pdfNeo4j_Exploring the Impact of Graph Technology on Financial Services.pdf
Neo4j_Exploring the Impact of Graph Technology on Financial Services.pdfNeo4j
 
Rabobank_Exploring the Impact of Graph Technology on Financial Services.pdf
Rabobank_Exploring the Impact of Graph Technology on Financial Services.pdfRabobank_Exploring the Impact of Graph Technology on Financial Services.pdf
Rabobank_Exploring the Impact of Graph Technology on Financial Services.pdfNeo4j
 
Webinar - IA generativa e grafi Neo4j: RAG time!
Webinar - IA generativa e grafi Neo4j: RAG time!Webinar - IA generativa e grafi Neo4j: RAG time!
Webinar - IA generativa e grafi Neo4j: RAG time!Neo4j
 
IA Generativa y Grafos de Neo4j: RAG time
IA Generativa y Grafos de Neo4j: RAG timeIA Generativa y Grafos de Neo4j: RAG time
IA Generativa y Grafos de Neo4j: RAG timeNeo4j
 
Neo4j: Data Engineering for RAG (retrieval augmented generation)
Neo4j: Data Engineering for RAG (retrieval augmented generation)Neo4j: Data Engineering for RAG (retrieval augmented generation)
Neo4j: Data Engineering for RAG (retrieval augmented generation)Neo4j
 
Neo4j Graph Summit 2024 Workshop - EMEA - Breda_and_Munchen.pdf
Neo4j Graph Summit 2024 Workshop - EMEA - Breda_and_Munchen.pdfNeo4j Graph Summit 2024 Workshop - EMEA - Breda_and_Munchen.pdf
Neo4j Graph Summit 2024 Workshop - EMEA - Breda_and_Munchen.pdfNeo4j
 
Enabling GenAI Breakthroughs with Knowledge Graphs
Enabling GenAI Breakthroughs with Knowledge GraphsEnabling GenAI Breakthroughs with Knowledge Graphs
Enabling GenAI Breakthroughs with Knowledge GraphsNeo4j
 
Neo4j_Anurag Tandon_Product Vision and Roadmap.Benelux.pptx.pdf
Neo4j_Anurag Tandon_Product Vision and Roadmap.Benelux.pptx.pdfNeo4j_Anurag Tandon_Product Vision and Roadmap.Benelux.pptx.pdf
Neo4j_Anurag Tandon_Product Vision and Roadmap.Benelux.pptx.pdfNeo4j
 
Neo4j Jesus Barrasa The Art of the Possible with Graph
Neo4j Jesus Barrasa The Art of the Possible with GraphNeo4j Jesus Barrasa The Art of the Possible with Graph
Neo4j Jesus Barrasa The Art of the Possible with GraphNeo4j
 

More from Neo4j (20)

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...
 
Neo4j - How KGs are shaping the future of Generative AI at AWS Summit London ...
Neo4j - How KGs are shaping the future of Generative AI at AWS Summit London ...Neo4j - How KGs are shaping the future of Generative AI at AWS Summit London ...
Neo4j - How KGs are shaping the future of Generative AI at AWS Summit London ...
 
QIAGEN: Biomedical Knowledge Graphs for Data Scientists and Bioinformaticians
QIAGEN: Biomedical Knowledge Graphs for Data Scientists and BioinformaticiansQIAGEN: Biomedical Knowledge Graphs for Data Scientists and Bioinformaticians
QIAGEN: Biomedical Knowledge Graphs for Data Scientists and Bioinformaticians
 
EY_Graph Database Powered Sustainability
EY_Graph Database Powered SustainabilityEY_Graph Database Powered Sustainability
EY_Graph Database Powered Sustainability
 
SIEMENS: RAPUNZEL – A Tale About Knowledge Graph
SIEMENS: RAPUNZEL – A Tale About Knowledge GraphSIEMENS: RAPUNZEL – A Tale About Knowledge Graph
SIEMENS: RAPUNZEL – A Tale About Knowledge Graph
 
Build your next Gen AI Breakthrough - April 2024
Build your next Gen AI Breakthrough - April 2024Build your next Gen AI Breakthrough - April 2024
Build your next Gen AI Breakthrough - April 2024
 
Connecting the Dots for Information Discovery.pdf
Connecting the Dots for Information Discovery.pdfConnecting the Dots for Information Discovery.pdf
Connecting the Dots for Information Discovery.pdf
 
ISDEFE - GraphSummit Madrid - ARETA: Aviation Real-Time Emissions Token Accre...
ISDEFE - GraphSummit Madrid - ARETA: Aviation Real-Time Emissions Token Accre...ISDEFE - GraphSummit Madrid - ARETA: Aviation Real-Time Emissions Token Accre...
ISDEFE - GraphSummit Madrid - ARETA: Aviation Real-Time Emissions Token Accre...
 
BBVA - GraphSummit Madrid - Caso de éxito en BBVA: Optimizando con grafos
BBVA - GraphSummit Madrid - Caso de éxito en BBVA: Optimizando con grafosBBVA - GraphSummit Madrid - Caso de éxito en BBVA: Optimizando con grafos
BBVA - GraphSummit Madrid - Caso de éxito en BBVA: Optimizando con grafos
 
Graph Everywhere - Josep Taruella - Por qué Graph Data Science en tus modelos...
Graph Everywhere - Josep Taruella - Por qué Graph Data Science en tus modelos...Graph Everywhere - Josep Taruella - Por qué Graph Data Science en tus modelos...
Graph Everywhere - Josep Taruella - Por qué Graph Data Science en tus modelos...
 
GraphSummit Madrid - Product Vision and Roadmap - Luis Salvador Neo4j
GraphSummit Madrid - Product Vision and Roadmap - Luis Salvador Neo4jGraphSummit Madrid - Product Vision and Roadmap - Luis Salvador Neo4j
GraphSummit Madrid - Product Vision and Roadmap - Luis Salvador Neo4j
 
Neo4j_Exploring the Impact of Graph Technology on Financial Services.pdf
Neo4j_Exploring the Impact of Graph Technology on Financial Services.pdfNeo4j_Exploring the Impact of Graph Technology on Financial Services.pdf
Neo4j_Exploring the Impact of Graph Technology on Financial Services.pdf
 
Rabobank_Exploring the Impact of Graph Technology on Financial Services.pdf
Rabobank_Exploring the Impact of Graph Technology on Financial Services.pdfRabobank_Exploring the Impact of Graph Technology on Financial Services.pdf
Rabobank_Exploring the Impact of Graph Technology on Financial Services.pdf
 
Webinar - IA generativa e grafi Neo4j: RAG time!
Webinar - IA generativa e grafi Neo4j: RAG time!Webinar - IA generativa e grafi Neo4j: RAG time!
Webinar - IA generativa e grafi Neo4j: RAG time!
 
IA Generativa y Grafos de Neo4j: RAG time
IA Generativa y Grafos de Neo4j: RAG timeIA Generativa y Grafos de Neo4j: RAG time
IA Generativa y Grafos de Neo4j: RAG time
 
Neo4j: Data Engineering for RAG (retrieval augmented generation)
Neo4j: Data Engineering for RAG (retrieval augmented generation)Neo4j: Data Engineering for RAG (retrieval augmented generation)
Neo4j: Data Engineering for RAG (retrieval augmented generation)
 
Neo4j Graph Summit 2024 Workshop - EMEA - Breda_and_Munchen.pdf
Neo4j Graph Summit 2024 Workshop - EMEA - Breda_and_Munchen.pdfNeo4j Graph Summit 2024 Workshop - EMEA - Breda_and_Munchen.pdf
Neo4j Graph Summit 2024 Workshop - EMEA - Breda_and_Munchen.pdf
 
Enabling GenAI Breakthroughs with Knowledge Graphs
Enabling GenAI Breakthroughs with Knowledge GraphsEnabling GenAI Breakthroughs with Knowledge Graphs
Enabling GenAI Breakthroughs with Knowledge Graphs
 
Neo4j_Anurag Tandon_Product Vision and Roadmap.Benelux.pptx.pdf
Neo4j_Anurag Tandon_Product Vision and Roadmap.Benelux.pptx.pdfNeo4j_Anurag Tandon_Product Vision and Roadmap.Benelux.pptx.pdf
Neo4j_Anurag Tandon_Product Vision and Roadmap.Benelux.pptx.pdf
 
Neo4j Jesus Barrasa The Art of the Possible with Graph
Neo4j Jesus Barrasa The Art of the Possible with GraphNeo4j Jesus Barrasa The Art of the Possible with Graph
Neo4j Jesus Barrasa The Art of the Possible with Graph
 

Recently uploaded

Schema on read is obsolete. Welcome metaprogramming..pdf
Schema on read is obsolete. Welcome metaprogramming..pdfSchema on read is obsolete. Welcome metaprogramming..pdf
Schema on read is obsolete. Welcome metaprogramming..pdfLars Albertsson
 
100-Concepts-of-AI by Anupama Kate .pptx
100-Concepts-of-AI by Anupama Kate .pptx100-Concepts-of-AI by Anupama Kate .pptx
100-Concepts-of-AI by Anupama Kate .pptxAnupama Kate
 
Generative AI on Enterprise Cloud with NiFi and Milvus
Generative AI on Enterprise Cloud with NiFi and MilvusGenerative AI on Enterprise Cloud with NiFi and Milvus
Generative AI on Enterprise Cloud with NiFi and MilvusTimothy Spann
 
VIP Call Girls Service Miyapur Hyderabad Call +91-8250192130
VIP Call Girls Service Miyapur Hyderabad Call +91-8250192130VIP Call Girls Service Miyapur Hyderabad Call +91-8250192130
VIP Call Girls Service Miyapur Hyderabad Call +91-8250192130Suhani Kapoor
 
FESE Capital Markets Fact Sheet 2024 Q1.pdf
FESE Capital Markets Fact Sheet 2024 Q1.pdfFESE Capital Markets Fact Sheet 2024 Q1.pdf
FESE Capital Markets Fact Sheet 2024 Q1.pdfMarinCaroMartnezBerg
 
Carero dropshipping via API with DroFx.pptx
Carero dropshipping via API with DroFx.pptxCarero dropshipping via API with DroFx.pptx
Carero dropshipping via API with DroFx.pptxolyaivanovalion
 
BigBuy dropshipping via API with DroFx.pptx
BigBuy dropshipping via API with DroFx.pptxBigBuy dropshipping via API with DroFx.pptx
BigBuy dropshipping via API with DroFx.pptxolyaivanovalion
 
Call Girls in Sarai Kale Khan Delhi 💯 Call Us 🔝9205541914 🔝( Delhi) Escorts S...
Call Girls in Sarai Kale Khan Delhi 💯 Call Us 🔝9205541914 🔝( Delhi) Escorts S...Call Girls in Sarai Kale Khan Delhi 💯 Call Us 🔝9205541914 🔝( Delhi) Escorts S...
Call Girls in Sarai Kale Khan Delhi 💯 Call Us 🔝9205541914 🔝( Delhi) Escorts S...Delhi Call girls
 
Call me @ 9892124323 Cheap Rate Call Girls in Vashi with Real Photo 100% Secure
Call me @ 9892124323  Cheap Rate Call Girls in Vashi with Real Photo 100% SecureCall me @ 9892124323  Cheap Rate Call Girls in Vashi with Real Photo 100% Secure
Call me @ 9892124323 Cheap Rate Call Girls in Vashi with Real Photo 100% SecurePooja Nehwal
 
Introduction-to-Machine-Learning (1).pptx
Introduction-to-Machine-Learning (1).pptxIntroduction-to-Machine-Learning (1).pptx
Introduction-to-Machine-Learning (1).pptxfirstjob4
 
Halmar dropshipping via API with DroFx
Halmar  dropshipping  via API with DroFxHalmar  dropshipping  via API with DroFx
Halmar dropshipping via API with DroFxolyaivanovalion
 
Best VIP Call Girls Noida Sector 39 Call Me: 8448380779
Best VIP Call Girls Noida Sector 39 Call Me: 8448380779Best VIP Call Girls Noida Sector 39 Call Me: 8448380779
Best VIP Call Girls Noida Sector 39 Call Me: 8448380779Delhi Call girls
 
Smarteg dropshipping via API with DroFx.pptx
Smarteg dropshipping via API with DroFx.pptxSmarteg dropshipping via API with DroFx.pptx
Smarteg dropshipping via API with DroFx.pptxolyaivanovalion
 
Ravak dropshipping via API with DroFx.pptx
Ravak dropshipping via API with DroFx.pptxRavak dropshipping via API with DroFx.pptx
Ravak dropshipping via API with DroFx.pptxolyaivanovalion
 
CALL ON ➥8923113531 🔝Call Girls Chinhat Lucknow best sexual service Online
CALL ON ➥8923113531 🔝Call Girls Chinhat Lucknow best sexual service OnlineCALL ON ➥8923113531 🔝Call Girls Chinhat Lucknow best sexual service Online
CALL ON ➥8923113531 🔝Call Girls Chinhat Lucknow best sexual service Onlineanilsa9823
 
Invezz.com - Grow your wealth with trading signals
Invezz.com - Grow your wealth with trading signalsInvezz.com - Grow your wealth with trading signals
Invezz.com - Grow your wealth with trading signalsInvezz1
 
ALSO dropshipping via API with DroFx.pptx
ALSO dropshipping via API with DroFx.pptxALSO dropshipping via API with DroFx.pptx
ALSO dropshipping via API with DroFx.pptxolyaivanovalion
 

Recently uploaded (20)

꧁❤ Aerocity Call Girls Service Aerocity Delhi ❤꧂ 9999965857 ☎️ Hard And Sexy ...
꧁❤ Aerocity Call Girls Service Aerocity Delhi ❤꧂ 9999965857 ☎️ Hard And Sexy ...꧁❤ Aerocity Call Girls Service Aerocity Delhi ❤꧂ 9999965857 ☎️ Hard And Sexy ...
꧁❤ Aerocity Call Girls Service Aerocity Delhi ❤꧂ 9999965857 ☎️ Hard And Sexy ...
 
Schema on read is obsolete. Welcome metaprogramming..pdf
Schema on read is obsolete. Welcome metaprogramming..pdfSchema on read is obsolete. Welcome metaprogramming..pdf
Schema on read is obsolete. Welcome metaprogramming..pdf
 
100-Concepts-of-AI by Anupama Kate .pptx
100-Concepts-of-AI by Anupama Kate .pptx100-Concepts-of-AI by Anupama Kate .pptx
100-Concepts-of-AI by Anupama Kate .pptx
 
CHEAP Call Girls in Saket (-DELHI )🔝 9953056974🔝(=)/CALL GIRLS SERVICE
CHEAP Call Girls in Saket (-DELHI )🔝 9953056974🔝(=)/CALL GIRLS SERVICECHEAP Call Girls in Saket (-DELHI )🔝 9953056974🔝(=)/CALL GIRLS SERVICE
CHEAP Call Girls in Saket (-DELHI )🔝 9953056974🔝(=)/CALL GIRLS SERVICE
 
Generative AI on Enterprise Cloud with NiFi and Milvus
Generative AI on Enterprise Cloud with NiFi and MilvusGenerative AI on Enterprise Cloud with NiFi and Milvus
Generative AI on Enterprise Cloud with NiFi and Milvus
 
VIP Call Girls Service Miyapur Hyderabad Call +91-8250192130
VIP Call Girls Service Miyapur Hyderabad Call +91-8250192130VIP Call Girls Service Miyapur Hyderabad Call +91-8250192130
VIP Call Girls Service Miyapur Hyderabad Call +91-8250192130
 
FESE Capital Markets Fact Sheet 2024 Q1.pdf
FESE Capital Markets Fact Sheet 2024 Q1.pdfFESE Capital Markets Fact Sheet 2024 Q1.pdf
FESE Capital Markets Fact Sheet 2024 Q1.pdf
 
Carero dropshipping via API with DroFx.pptx
Carero dropshipping via API with DroFx.pptxCarero dropshipping via API with DroFx.pptx
Carero dropshipping via API with DroFx.pptx
 
BigBuy dropshipping via API with DroFx.pptx
BigBuy dropshipping via API with DroFx.pptxBigBuy dropshipping via API with DroFx.pptx
BigBuy dropshipping via API with DroFx.pptx
 
Call Girls in Sarai Kale Khan Delhi 💯 Call Us 🔝9205541914 🔝( Delhi) Escorts S...
Call Girls in Sarai Kale Khan Delhi 💯 Call Us 🔝9205541914 🔝( Delhi) Escorts S...Call Girls in Sarai Kale Khan Delhi 💯 Call Us 🔝9205541914 🔝( Delhi) Escorts S...
Call Girls in Sarai Kale Khan Delhi 💯 Call Us 🔝9205541914 🔝( Delhi) Escorts S...
 
Call me @ 9892124323 Cheap Rate Call Girls in Vashi with Real Photo 100% Secure
Call me @ 9892124323  Cheap Rate Call Girls in Vashi with Real Photo 100% SecureCall me @ 9892124323  Cheap Rate Call Girls in Vashi with Real Photo 100% Secure
Call me @ 9892124323 Cheap Rate Call Girls in Vashi with Real Photo 100% Secure
 
Introduction-to-Machine-Learning (1).pptx
Introduction-to-Machine-Learning (1).pptxIntroduction-to-Machine-Learning (1).pptx
Introduction-to-Machine-Learning (1).pptx
 
Halmar dropshipping via API with DroFx
Halmar  dropshipping  via API with DroFxHalmar  dropshipping  via API with DroFx
Halmar dropshipping via API with DroFx
 
Best VIP Call Girls Noida Sector 39 Call Me: 8448380779
Best VIP Call Girls Noida Sector 39 Call Me: 8448380779Best VIP Call Girls Noida Sector 39 Call Me: 8448380779
Best VIP Call Girls Noida Sector 39 Call Me: 8448380779
 
Smarteg dropshipping via API with DroFx.pptx
Smarteg dropshipping via API with DroFx.pptxSmarteg dropshipping via API with DroFx.pptx
Smarteg dropshipping via API with DroFx.pptx
 
Ravak dropshipping via API with DroFx.pptx
Ravak dropshipping via API with DroFx.pptxRavak dropshipping via API with DroFx.pptx
Ravak dropshipping via API with DroFx.pptx
 
CALL ON ➥8923113531 🔝Call Girls Chinhat Lucknow best sexual service Online
CALL ON ➥8923113531 🔝Call Girls Chinhat Lucknow best sexual service OnlineCALL ON ➥8923113531 🔝Call Girls Chinhat Lucknow best sexual service Online
CALL ON ➥8923113531 🔝Call Girls Chinhat Lucknow best sexual service Online
 
Sampling (random) method and Non random.ppt
Sampling (random) method and Non random.pptSampling (random) method and Non random.ppt
Sampling (random) method and Non random.ppt
 
Invezz.com - Grow your wealth with trading signals
Invezz.com - Grow your wealth with trading signalsInvezz.com - Grow your wealth with trading signals
Invezz.com - Grow your wealth with trading signals
 
ALSO dropshipping via API with DroFx.pptx
ALSO dropshipping via API with DroFx.pptxALSO dropshipping via API with DroFx.pptx
ALSO dropshipping via API with DroFx.pptx
 

Graph Search and Discovery for your Dark Data