当前位置:网站首页>Animation scoring data analysis and visualization and it industry recruitment data analysis and visualization
Animation scoring data analysis and visualization and it industry recruitment data analysis and visualization
2022-07-05 05:24:00 【Data ape from zero】
Data visualization course design
1, Animation scoring data analysis and visualization
2,IT Industry recruitment data analysis and visualization
1, Animation scoring data analysis and visualization
1.1 Data capture
Upload the captured file to ${HIVE_HOME}/mydata Under the table of contents
1.2 Hive Table creation and import
1.2.1 establish cartoon_info Table and import the data
CREATE EXTERNAL TABLE Json( data string )
Load data to Json Spare in the table
load data local inpath 'mydata/infos_total.json' overwrite into table Json;
establish cartoon_info surface
drop table if exists cartoon_info; CREATE EXTERNAL TABLE cartoon_info( `ssid` string, `cartoon` string, `views` bigint, `coins` int, `follow` int, `series_follow` int, `danmakus` int, `likes` int, `favorite` int, `favorites` int, `reply` int, `share` int, `cover` string, `url` string, `episodes` int, `count` int, `is_finish` int, `pub_time` TIMESTAMP, `media_tags` string, `voice_actor` string, `score` float ) stored as parquet location '/warehouse/cartoon_info';
Use Json Parsing insert data , Details please see : Hive And Json analysis ( Ordinary Json and Json Array )
insert overwrite table cartoon_info select json_tuple(json,'ssid' ,'cartoon' ,'views' ,'coins' ,'follow' ,'series_follow' ,'danmakus' ,'likes' ,'favorite' ,'favorites' ,'reply' ,'share' ,'cover' ,'url','episodes' ,'count' ,'is_finish' ,'pub_time','media_tags','voice_actor','score') from ( select explode(split(regexp_replace(regexp_replace(data,'\\[|\\]',''),'\\}\\, \\{','\\}\\;\\{' ) ,'\\;')) as json from Json )a;
1.2.2 establish cartoon_comments surface
CREATE EXTERNAL TABLE Json2( data string );
Load data to Json2 Spare in the table
load data local inpath 'mydata/comments_total.json' overwrite into table Json2;
establish cartoon_comments Table and import the data
drop table if exists cartoon_comments; CREATE EXTERNAL TABLE cartoon_comments( `mid` string, `uname` string, `ssid` string, `message` string, `like` int, `dt` timestamp ) stored as parquet location '/warehouse/cartoon_comments';
Use Json Parsing insert data , Details please see : Hive And Json analysis ( Ordinary Json and Json Array )
insert overwrite table cartoon_comments select json_tuple(json,'mid' ,'uname' ,'ssid' ,'message' ,'like' ,'dt' ) from (select explode(split(regexp_replace(regexp_replace(data,'\\[|\\]',''),'\\}\\, \\{','\\}\\;\\;\\;\\{' ) ,'\\;\\;\\;')) as json from Json2)a;
Two IT Industry recruitment data analysis and visualization
1.1 Data capture
1, You need to log in to dragnet !! Please pay attention to replacing individuals Cookie And Cookie Don't have Chinese , Otherwise, an error will be reported ; If Cookie Don't take effect , Please open other pages of dragnet to get Cookie.
2, If an error is reported, please open dragnet to check whether it needs to be verified
Upload the captured file to ${HIVE_HOME}/mydata Under the table of contents
2.1 Hive Table creation and import
CREATE EXTERNAL TABLE Json3( data string )
Load data to Json3 Spare in the table
load data local inpath 'mydata/jobsInfo.json' overwrite into table Json3;
2.1.1 establish jobs_info Table and import the data
drop table if exists jobs_info; CREATE EXTERNAL TABLE jobs_info( `job` string, `keyword` string, `place` string, `requirement` string, `salary` string, `tags` string, `welfare` string, `pubtime` date ) stored as parquet location '/warehouse/jobs_info';
Use Json Parsing insert data , Details please see : Hive And Json analysis ( Ordinary Json and Json Array )
insert overwrite table jobs_info select json_tuple(json,'job' ,'keyword' ,'place' ,'requirement' ,'salary' ,'tags' ,'welfare' ,'pubtime') from ( select explode(split(regexp_replace(regexp_replace(data,'\\[|\\]',''),'\\}\\, \\{','\\}\\;\\{' ) ,'\\;')) as json from Json3 )a;
3, Data analysis and Visualization
3.1 Pyhive Connect Hive course :
Python install sasl,thrift,thrift-sasl And connect PyHive
Connection code : Pyhive
3.2 Data analysis and Visualization
Install the necessary packages
pip install pandas==0.23.4 pip install pyecharts==1.9.1 pip install matplotlib==3.5.1 pip install numpy==1.18.5 pip install jieba==0.42.1 pip install squarify==0.4.3
1, Animation scoring data analysis and visualization Data analysis code :bilibili
The code contains [" Rose chart "," Clouds of words "," Radar map "," Scatter plot "," Funnel diagram "," Ring graph "," Bar chart "," Tree diagram "," Matchstick "," Subgraphs "] common 10 Types of Graphs , Contains 4 individual matplotlib Figure and 6 individual pyecharts A simple analysis of the graph .
2,IT Industry recruitment data analysis and visualization Data analysis code :IT
The code contains [" Rose chart "," Clouds of words "," Pictogram "," Scatter plot "," Funnel diagram "," Ring graph "," Bar chart "," Tree diagram "," Matchstick "," Subgraphs "] common 10 Types of Graphs , Contains 4 individual matplotlib Figure and 6 individual pyecharts A simple analysis of the graph .
边栏推荐
猜你喜欢
Applet Live + e - commerce, si vous voulez être un nouveau e - commerce de détail, utilisez - le!
Yolov5 ajouter un mécanisme d'attention
支持多模多态 GBase 8c数据库持续创新重磅升级
[to be continued] [UE4 notes] L3 import resources and project migration
Romance of programmers on Valentine's Day
浅谈JVM(面试常考)
win10虚拟机集群优化方案
【论文笔记】Multi-Goal Reinforcement Learning: Challenging Robotics Environments and Request for Research
Support multi-mode polymorphic gbase 8C database continuous innovation and heavy upgrade
[轉]: OSGI規範 深入淺出
随机推荐
Fragment addition failed error lookup
服务熔断 Hystrix
Service fusing hystrix
Corridor and bridge distribution (csp-s-2021-t1) popular problem solution
Haut OJ 1241: League activities of class XXX
[merge array] 88 merge two ordered arrays
挂起等待锁 vs 自旋锁(两者的使用场合)
搭建完数据库和网站后.打开app测试时候显示服务器正在维护.
[转]: OSGI规范 深入浅出
Haut OJ 1243: simple mathematical problems
Programmers' experience of delivering takeout
小程序直播+电商,想做新零售电商就用它吧!
读者写者模型
JVM call not used once in ten years
Remote upgrade afraid of cutting beard? Explain FOTA safety upgrade in detail
[allocation problem] 135 Distribute candy
[speed pointer] 142 circular linked list II
Embedded database development programming (V) -- DQL
[to be continued] [UE4 notes] L1 create and configure items
Acwing 4301. Truncated sequence