본문 바로가기

Data Analytics

(47)
gsql> help basic and help query GSQL > help basic Summary of TigerGraph GSQL data definition (DDL) and loading commands. Please check the GSQL Language Reference, Part 1 for more details. Attribute Types INT FLOAT STRING FIXED_BINARY(n) LIST UINT DOUBLE STRING COMPRESS UDT SET BOOL DATETIME MAP ######################################## ##### Schema Definition and Update ##### CREATE VERTEX vType (PRIMARY_ID id type, attributeNa..
Patterns for relationships in Neo4j https://neo4j.com/docs/cypher-manual/4.0/syntax/patterns/#cypher-pattern-relationship Patterns - Neo4j Cypher Manual The simplest way to describe a relationship is by using the arrow between two nodes, as in the previous examples. Using this technique, you can describe that the relationship should exist and the directionality of it. If you don’t care about the directio neo4j.com 6. Patterns for ..
2021년 엔터프라이즈 지식 그래프 동향 2021년 엔터프라이즈 지식 그래프 동향 타이거그래프 게스트 블로거 블로그, 커뮤니티, 그래프 데이터베이스 마켓, 그래프 데이터베이스 원래 이 글은 Optum의 연구위원인 Dan McCreary가 Medium 에 게시한 글입니다. 그리고 이 글은 엔터프라이즈 지식그래프, EKG(Enterprise Knowledge Graph) 동향에 대한 세 번째 연간 게시물입니다. 이 블로그에서 제 2019년 및 2020년 게시물도 찾을 수 있으며, 이 세 개의 게시물에서 몇 가지 일관된 패턴을 찾을 수 있을 것으로 생각합니다. 그래프 데이터베이스의 인기는 계속 상승하고 있습니다. EKG에 대한 관심이 계속해서 증가하고 있습니다. 아래 DB-Engines의 인기도 변화 차트를 보면 그래프 데이터베이스(Graph Dat..
[Hiring] TigerGraph - Inside Sales Hiring TigerGraph - Only Real Scaleble Graph Database 우리는 누구인가? Fortune 500대 기업과 가장 혁신적인 중견기업 및 신생 기업은 분석, AI 및 기계 학습을 가속화하기 위해 TigerGraph를 선택합니다. 상위 10개 은행 중 7개 은행이 실시간 사기 탐지에 타이거그래프를 사용합니다. 5천만 명 이상의 환자가 건강 여정을 지원하기 위해 치료 경로 권장 사항을 받고 있습니다. 3억 명의 소비자들이 타이거그래프에 의해 구동되는 추천 엔진을 통해 개인화된 제안을 받는다. TigerGraph는 10억 명의 인구를 위해 에너지 인프라를 최적화함으로써 정전 사태를 줄입니다. TigerGraph는 최신 그래프 데이터베이스, 분석 및 ML 플..
[Hiring] ML (Graph Centric) Engineer #Hiring ML (Graph Centric) Engineer - #TigerGraph 미국회사(현재 한국직원 2명) - #Remote working base (가끔 고객사/파트너사 미팅) - #Competitive Pay (relatively more than Korean company) - #Stock option - 주로 저와 협력하여 고객이 Graph Database 를 잘 활용하여 가치를 얻을 수 있도록 돕는 일 입니다. 들어오시면 Graph/Network Algorithm 을 익히시고 활용할 수 있어야 합니다. 안녕하세요 제이콥이라고 합니다 저와 함께 #TigerGraph(San Francisco Based)에서 일하실 AI/ML엔지니어 - #Graph/#Network Data Science..
MIT : Artificial Intelligence MIT : Artificial Intelligencehttp://ocw.mit.edu/courses/electrical-engineering-and-computer-science/6-034-artificial-intelligence-fall-2010/ Lecture 1: Introduction and Scope ‎2011‎년 ‎6‎월 ‎29‎일 ‎수요일, ‏‎오후 6:33:34 | Winston, Patrick Henry Description: In this lecture, Prof. Winston introduces artificial intelligence and provides a brief history of the field. The last ten minutes are devoted to in..
Growth Hacking 최근에 접하는 용어중에 정말 그 의미가 뭔지 이해하기 어려운 것들이 참 많습니다. 그중에 Growth Hacking 등이 도대체 뭘까 해서 위키피디아에서 가져와 보았습니다. (참고용) Growth hacking is a marketing technique which aims to attract users at a relatively low cost and primarily by means of technological integration.[1] The term is a buzzword and is typically applied to marketing strategies used by newly-formed companies, which don’t have the resources to employ s..
데이터분석가를 위한 SQL기법 (정리 + AddOn 중) 샐제 플젝에서 데이터분석을 돌리기 위해 원천에서 EDA 및 필요 데이터 생성할 때 주로, 자주 사용했던 건들을 정리해 가는 중.... 신청승인건수승인과 최초자격정보 (최초소속조직) TO_CHAR(CURRENT_DATE, 'YYYYMM')TRIM()||TO_CHAR(LAST_DAY(), 'YYYYMMDD')TRIM(SUBSTR(PaymentDate, 1, 6))|| '01' WITH 신청승인건수 AS (SELECT .... FROM ..........) NVL( PaymentDate, ApprovalDate)STATUS_CODE IN ('01', '02', '03')STATUS_CODE NOT IN ('01', '02', '03') ROW_NUMBER() OVER(PARTITION BY COL1, COL2..