library(tidyverse)
library(psych)
library(reshape2)
library(kableExtra)
library(knitr)
library(scales)
library(readxl)
library(highcharter)
Limitations
KEYNAMES
1 - 3D printing, 2 - VR, 3 - Drones, 4 - IoT, 5 - BIM
General Variables
IP Qwery Variables
Patents, trademarks, IP Score - intellectual property holdings across multiple Patent and Trademark databases 10. IPqwery - Patents Siftery - Total Products Active CB Rank (Investor) 11. IPqwery - Trademarks Pending 12. IPqwery - Trademarks Registered 13. IPqwery - Trademarks
14 IPqwery - Most Popular Patent Class 15. IPqwery - Patents Granted 16. IPqwery - Patents Pending
17. IPqwery - IP Score
Trend Variables
TechList <- read.csv("TECH_ALL_VR2.csv", na.strings=c(""," ","NA"))
#myData_new %>% View()
TechList %>% dim()
## [1] 3002 19
TechList = subset(TechList, select = c(Tech,Last.Equity.Funding.Amount,Last.Funding.Date,Last.Funding.Amount.Currency..in.USD.))
TechList = na.omit(TechList)
TechList$Last.Funding.Date = as.Date(TechList$Last.Funding.Date)
VR= subset(TechList, Tech == "VR")
Drone = subset(TechList, Tech == "Drone")
hc2 <- hchart(Drone, type = 'line', color = "#5cf740", hcaes(y = Last.Funding.Amount.Currency..in.USD., group = Tech, x = Last.Funding.Date)) %>%
hc_chart(backgroundColor = "black") %>%
hc_tooltip(crosshairs = TRUE, borderWidth = 5, sort = TRUE, table = TRUE) %>%
hc_title(text = "Last funding amount for Drone companies in the last 10 years") %>%
hc_subtitle(text = "Crunchbase exploratory funding over time")
hc2
Process and Product - entire list ****************************************************************************************************************
Process <- read.csv("process.csv", na.strings=c(""," ","NA"))
#myData %>% View()
Process %>% dim()
## [1] 42 2
Process
# Process
hc2 <- hchart(Process, type = 'column', color = "#B71C1C", borderWidth = 0, hcaes( x = Technology, y = Companies)) %>%
hc_chart(backgroundColor = "black") %>%
hc_tooltip(crosshairs = TRUE, borderWidth = 5, sort = TRUE, table = TRUE) %>%
hc_title(text = "Tehnology Process - how many companies come up on CrunchBase") %>%
hc_subtitle(text = "Crunchbase data test version 02")
hc2
Process Results - 4 out of 42 technologies have companies associated with them on Crunchbase ****************************************************************************************************************
Products <- read.csv("product.csv", na.strings=c(""," ","NA"))
Products
# Products
hc2 <- hchart(Products, type = 'column', borderWidth = 0, hcaes( x = Technology, y = Companies)) %>%
hc_chart(backgroundColor = "black") %>%
hc_tooltip(crosshairs = TRUE, borderWidth = 5, sort = TRUE, table = TRUE) %>%
hc_title(text = "Tehnology Products - how many companies come up on CrunchBase") %>%
hc_subtitle(text = "Crunchbase data test version 02")
hc2
******************************************************************************************************************Products** Results - 7 out of 55 technologies have companies associated with them on Crunchbase ***************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************
myData <- read.csv("techtext_v5.csv", na.strings=c(""," ","NA"))
## Observation #1 - dataset limited to 1,000 roes,
## Observation #2 - BIM has only 473 results.
hchart((myData$Tech), color = "#B71C1C", borderWidth = 2, borderColor = "#B71C1C", name = "# companies", color = 'Tech') %>%
hc_chart(backgroundColor = "black") %>%
hc_size(height = 600) %>%
hc_tooltip(crosshairs = TRUE, borderWidth = 5, sort = TRUE, table = TRUE) %>%
hc_title(text = "Number of Technolegies in dataset") %>%
hc_subtitle(text = "Crunchbase data test version 01")
# distribution - top industrues are 3D printing (69) and Drones (51)
hchart((myData$Categories), color = "#B71C1C", borderWidth = 2, borderColor = "#B71C1C", name = "# listings", color = 'city') %>%
hc_chart(backgroundColor = "black") %>%
hc_size(height = 600) %>%
hc_tooltip(crosshairs = TRUE, borderWidth = 5, sort = TRUE, table = TRUE) %>%
hc_title(text = "Companny Type") %>%
hc_subtitle(text = "Distribution of the type of company")
# Answer: London, NYC and SF.
hchart((myData$Location), color = "#B71C1C", borderWidth = 2, borderColor = "#B71C1C", name = "Locations", color = 'city') %>%
hc_chart(backgroundColor = "black") %>%
hc_size(height = 600) %>%
hc_tooltip(crosshairs = TRUE, borderWidth = 5, sort = TRUE, table = TRUE) %>%
hc_title(text = "Company distribution by Location") %>%
hc_subtitle(text = "Distribution of all locations by company")
### Service type with Siftery
hchart((myData$Siftery...Total.Products.Active), color = "#B71C1C", borderWidth = 2, borderColor = "#B71C1C", name = "# Services", color = 'Tech') %>%
hc_chart(backgroundColor = "black") %>%
hc_size(height = 600) %>%
hc_tooltip(crosshairs = TRUE, borderWidth = 5, sort = TRUE, table = TRUE) %>%
hc_title(text = "Number of Technolegies in dataset") %>%
hc_subtitle(text = "Crunchbase data test version 01")
### IP score analysis - webbease app
hchart((myData$IPqwery...IP.Score), color = "#B71C1C", borderWidth = 2, borderColor = "#B71C1C", name = "IP", color = 'Tech') %>%
hc_chart(backgroundColor = "black") %>%
hc_size(height = 600) %>%
hc_tooltip(crosshairs = TRUE, borderWidth = 5, sort = TRUE, table = TRUE) %>%
hc_title(text = "Number of Technolegies in dataset") %>%
hc_subtitle(text = "Crunchbase data test version 01")