大吉大利,今晚吃鸡~ 今天跟朋友玩了几把吃鸡,经历了各种死法,还被嘲笑说论女生吃鸡的100种死法,比如被拳头抡死、跳伞落到房顶边缘摔死 、把吃鸡玩成飞车被车技秀死、被队友用燃烧瓶烧死的。这种游戏对我来说就是一个让我明白原来还有这种死法的游戏。但是玩归玩,还是得假装一下我沉迷学习,所以今天就用吃鸡比赛的真实数据来看看如何提高你吃鸡的概率。
那么我们就用python和R做数据分析来回答以下的灵魂发问?
首先来看下数据:

1、跳哪儿危险?
对于我这样一直喜欢苟着的良心玩家,在经历了无数次落地成河的惨痛经历后,我是坚决不会选择跳P城这样楼房密集的城市,穷归穷但保命要紧。所以我们决定统计一下到底哪些地方更容易落地成河?我们筛选出在前100秒死亡的玩家地点进行可视化分析。激情沙漠地图的电站、皮卡多、别墅区、依波城最为危险,火车站、火电厂相对安全。绝地海岛中P城、军事基地、学校、医院、核电站、防空洞都是绝对的危险地带。物质丰富的G港居然相对安全。

     1import numpy as np2import matplotlib.pyplot as plt3import pandas as pd4import seaborn as sns5from scipy.misc.pilutil import imread6import matplotlib.cm as cm78#导入部分数据9deaths1 = pd.read_csv("deaths/kill_match_stats_final_0.csv")10deaths2 = pd.read_csv("deaths/kill_match_stats_final_1.csv")1112deaths = pd.concat([deaths1, deaths2])1314#打印前5列,理解变量15print (deaths.head(),'\n',len(deaths))1617#两种地图18miramar = deaths[deaths["map"] == "MIRAMAR"]19erangel = deaths[deaths["map"] == "ERANGEL"]2021#开局前100秒死亡热力图22position_data = ["killer_position_x","killer_position_y","victim_position_x","victim_position_y"]23for position in position_data:24    miramar[position] = miramar[position].apply(lambda x: x*1000/800000)25    miramar = miramar[miramar[position] != 0]2627    erangel[position] = erangel[position].apply(lambda x: x*4096/800000)28    erangel = erangel[erangel[position] != 0]2930n = 5000031mira_sample = miramar[miramar["time"] < 100].sample(n)32eran_sample = erangel[erangel["time"] < 100].sample(n)3334# miramar热力图35bg = imread("miramar.jpg")36fig, ax = plt.subplots(1,1,figsize=(15,15))37ax.imshow(bg)38sns.kdeplot(mira_sample["victim_position_x"], mira_sample["victim_position_y"],n_levels=100, cmap=cm.Reds, alpha=0.9)3940# erangel热力图41bg = imread("erangel.jpg")42fig, ax = plt.subplots(1,1,figsize=(15,15))43ax.imshow(bg)44sns.kdeplot(eran_sample["victim_position_x"], eran_sample["victim_position_y"], n_levels=100,cmap=cm.Reds, alpha=0.9)

2、苟着还是出去干?
我到底是苟在房间里面还是出去和敌人硬拼?这里因为比赛的规模不一样,这里选取参赛人数大于90的比赛数据,然后筛选出团队team_placement即最后成功吃鸡的团队数据,1、先计算了吃鸡团队平均击杀敌人的数量,这里剔除了四人模式的比赛数据,因为人数太多的团队会因为数量悬殊平均而变得没意义;2、所以我们考虑通过分组统计每一组吃鸡中存活到最后的成员击杀敌人的数量,但是这里发现数据统计存活时间变量是按照团队最终存活时间记录的,所以该想法失败;3、最后统计每个吃鸡团队中击杀人数最多的数量统计,这里剔除了单人模式的数据,因为单人模式的数量就是每组击杀最多的数量。最后居然发现还有击杀数量达到60的,怀疑是否有开挂。想要吃鸡还是得出去练枪法,光是苟着是不行的。

     1library(dplyr)2library(tidyverse)3library(data.table)4library(ggplot2)5pubg_full <- fread("../agg_match_stats.csv")6# 吃鸡团队平均击杀敌人的数量7attach(pubg_full)8pubg_winner <- pubg_full %>% filter(team_placement==1&party_size<4&game_size>90) 9detach(pubg_full)10team_killed <- aggregate(pubg_winner$player_kills, by=list(pubg_winner$match_id,pubg_winner$team_id), FUN="mean")11team_killed$death_num <- ceiling(team_killed$x)12ggplot(data = team_killed) + geom_bar(mapping = aes(x = death_num, y = ..count..), color="steelblue") +13  xlim(0,70) + labs(title = "Number of Death that PUBG Winner team Killed", x="Number of death")1415# 吃鸡团队最后存活的玩家击杀数量16pubg_winner <- pubg_full %>% filter(pubg_full$team_placement==1) %>% group_by(match_id,team_id)17attach(pubg_winner)18team_leader <- aggregate(player_survive_time~player_kills, data = pubg_winner, FUN="max")19detach(pubg_winner)2021# 吃鸡团队中击杀敌人最多的数量22pubg_winner <- pubg_full %>% filter(pubg_full$team_placement==1&pubg_full$party_size>1)23attach(pubg_winner)24team_leader <- aggregate(player_kills, by=list(match_id,team_id), FUN="max")25detach(pubg_winner)26ggplot(data = team_leader) + geom_bar(mapping = aes(x = x, y = ..count..), color="steelblue") +27  xlim(0,70) + labs(title = "Number of Death that PUBG Winner Killed", x="Number of death")

3、哪一种武器干掉的玩家多?
运气好挑到好武器的时候,你是否犹豫选择哪一件?从图上来看,M416和SCAR是不错的武器,也是相对容易能捡到的武器,大家公认Kar98k是能一枪毙命的好枪,它排名比较靠后的原因也是因为这把枪在比赛比较难得,而且一下击中敌人也是需要实力的,像我这种捡到98k还装上8倍镜但没捂热乎1分钟的玩家是不配得到它的。(捂脸)


 1#杀人武器排名2death_causes = deaths['killed_by'].value_counts()34sns.set_context('talk')5fig = plt.figure(figsize=(30, 10))6ax = sns.barplot(x=death_causes.index, y=[v / sum(death_causes) for v in death_causes.values])7ax.set_title('Rate of Death Causes')8ax.set_xticklabels(death_causes.index, rotation=90)9
10#排名前20的武器
11rank = 20
12fig = plt.figure(figsize=(20, 10))
13ax = sns.barplot(x=death_causes[:rank].index, y=[v / sum(death_causes) for v in death_causes[:rank].values])
14ax.set_title('Rate of Death Causes')
15ax.set_xticklabels(death_causes.index, rotation=90)
16
17#两个地图分开取
18f, axes = plt.subplots(1, 2, figsize=(30, 10))
19axes[0].set_title('Death Causes Rate: Erangel (Top {})'.format(rank))
20axes[1].set_title('Death Causes Rate: Miramar (Top {})'.format(rank))
21
22counts_er = erangel['killed_by'].value_counts()
23counts_mr = miramar['killed_by'].value_counts()
24
25sns.barplot(x=counts_er[:rank].index, y=[v / sum(counts_er) for v in counts_er.values][:rank], ax=axes[0] )
26sns.barplot(x=counts_mr[:rank].index, y=[v / sum(counts_mr) for v in counts_mr.values][:rank], ax=axes[1] )
27axes[0].set_ylim((0, 0.20))
28axes[0].set_xticklabels(counts_er.index, rotation=90)
29axes[1].set_ylim((0, 0.20))
30axes[1].set_xticklabels(counts_mr.index, rotation=90)
31
32#吃鸡和武器的关系
33win = deaths[deaths["killer_placement"] == 1.0]
34win_causes = win['killed_by'].value_counts()
35
36sns.set_context('talk')
37fig = plt.figure(figsize=(20, 10))
38ax = sns.barplot(x=win_causes[:20].index, y=[v / sum(win_causes) for v in win_causes[:20].values])
39ax.set_title('Rate of Death Causes of Win')
40ax.set_xticklabels(win_causes.index, rotation=90)

4、队友的助攻是否助我吃鸡?
有时候一不留神就被击倒了,还好我爬得快让队友救我。这里选择成功吃鸡的队伍,最终接受1次帮助的成员所在的团队吃鸡的概率为29%,所以说队友助攻还是很重要的(再不要骂我猪队友了,我也可以选择不救你。)竟然还有让队友救9次的,你也是个人才。(手动滑稽)

 1library(dplyr)2library(tidyverse)3library(data.table)4library(ggplot2)5pubg_full <- fread("E:/aggregate/agg_match_stats_0.csv")6attach(pubg_full)7pubg_winner <- pubg_full %>% filter(team_placement==1) 8detach(pubg_full)9ggplot(data = pubg_winner) + geom_bar(mapping = aes(x = player_assists, y = ..count..), fill="#E69F00") +
10  xlim(0,10) + labs(title = "Number of Player assisted", x="Number of death")
11ggplot(data = pubg_winner) + geom_bar(mapping = aes(x = player_assists, y = ..prop..), fill="#56B4E9") +
12  xlim(0,10) + labs(title = "Number of Player assisted", x="Number of death")

5、敌人离我越近越危险?
对数据中的killer_position和victim_position变量进行欧式距离计算,查看两者的直线距离跟被击倒的分布情况,呈现一个明显的右偏分布,看来还是需要随时观察到附近的敌情,以免到淘汰都不知道敌人在哪儿。

 1# python代码:杀人和距离的关系2import math3def get_dist(df): #距离函数4    dist = []5    for row in df.itertuples():6        subset = (row.killer_position_x - row.victim_position_x)**2 + (row.killer_position_y - row.victim_position_y)**27        if subset > 0:8            dist.append(math.sqrt(subset) / 100)9        else:
10            dist.append(0)
11    return dist
12
13df_dist = pd.DataFrame.from_dict({'dist(m)': get_dist(erangel)})
14df_dist.index = erangel.index
15
16erangel_dist = pd.concat([erangel,df_dist], axis=1)
17
18df_dist = pd.DataFrame.from_dict({'dist(m)': get_dist(miramar)})
19df_dist.index = miramar.index
20
21miramar_dist = pd.concat([miramar,df_dist], axis=1)
22
23f, axes = plt.subplots(1, 2, figsize=(30, 10))
24plot_dist = 150
25
26axes[0].set_title('Engagement Dist. : Erangel')
27axes[1].set_title('Engagement Dist.: Miramar')
28
29plot_dist_er = erangel_dist[erangel_dist['dist(m)'] <= plot_dist]
30plot_dist_mr = miramar_dist[miramar_dist['dist(m)'] <= plot_dist]
31
32sns.distplot(plot_dist_er['dist(m)'], ax=axes[0])
33sns.distplot(plot_dist_mr['dist(m)'], ax=axes[1])

6、团队人越多我活得越久?
对数据中的party_size变量进行生存分析,可以看到在同一生存率下,四人团队的生存时间高于两人团队,再是单人模式,所以人多力量大这句话不是没有道理的。

7、乘车是否活得更久?
对死因分析中发现,也有不少玩家死于Bluezone,大家天真的以为捡绷带就能跑毒。对数据中的player_dist_ride变量进行生存分析,可以看到在同一生存率下,有开车经历的玩家生存时间高于只走路的玩家,光靠腿你是跑不过毒的。

8、小岛上人越多我活得更久?
对game_size变量进行生存分析发现还是小规模的比赛比较容易存活。

 1# R语言代码如下:2library(magrittr)3library(dplyr)4library(survival)5library(tidyverse)6library(data.table)7library(ggplot2)8library(survminer)9pubg_full <- fread("../agg_match_stats.csv")
10# 数据预处理,将连续变量划为分类变量
11pubg_sub <- pubg_full %>%
12  filter(player_survive_time<2100) %>%
13  mutate(drive = ifelse(player_dist_ride>0, 1, 0)) %>%
14  mutate(size = ifelse(game_size<33, 1,ifelse(game_size>=33 &game_size<66,2,3)))
15# 创建生存对象
16surv_object <- Surv(time = pubg_sub$player_survive_time)
17fit1 <- survfit(surv_object~party_size,data = pubg_sub)
18# 可视化生存率
19ggsurvplot(fit1, data = pubg_sub, pval = TRUE, xlab="Playing time [s]", surv.median.line="hv",
20           legend.labs=c("SOLO","DUO","SQUAD"), ggtheme = theme_light(),risk.table="percentage")
21fit2 <- survfit(surv_object~drive,data=pubg_sub)
22ggsurvplot(fit2, data = pubg_sub, pval = TRUE, xlab="Playing time [s]", surv.median.line="hv",
23           legend.labs=c("walk","walk&drive"), ggtheme = theme_light(),risk.table="percentage")
24fit3 <- survfit(surv_object~size,data=pubg_sub)
25ggsurvplot(fit3, data = pubg_sub, pval = TRUE, xlab="Playing time [s]", surv.median.line="hv",
26           legend.labs=c("small","medium","big"), ggtheme = theme_light(),risk.table="percentage")

9、最后毒圈有可能出现的地点?
面对有本事能苟到最后的我,怎么样预测最后的毒圈出现在什么位置。从表agg_match_stats数据找出排名第一的队伍,然后按照match_id分组,找出分组数据里面player_survive_time最大的值,然后据此匹配表格kill_match_stats_final里面的数据,这些数据里面取第二名死亡的位置,作图发现激情沙漠的毒圈明显更集中一些,大概率出现在皮卡多、圣马丁和别墅区。绝地海岛的就比较随机了,但是还是能看出军事基地和山脉的地方更有可能是最后的毒圈。

 1#最后毒圈位置2import matplotlib.pyplot as plt3import pandas as pd4import seaborn as sns5from scipy.misc.pilutil import imread6import matplotlib.cm as cm78#导入部分数据9deaths = pd.read_csv("deaths/kill_match_stats_final_0.csv")
10#导入aggregate数据
11aggregate = pd.read_csv("aggregate/agg_match_stats_0.csv")
12print(aggregate.head())
13#找出最后三人死亡的位置
14
15team_win = aggregate[aggregate["team_placement"]==1] #排名第一的队伍
16#找出每次比赛第一名队伍活的最久的那个player
17grouped = team_win.groupby('match_id').apply(lambda t: t[t.player_survive_time==t.player_survive_time.max()])
18
19deaths_solo = deaths[deaths['match_id'].isin(grouped['match_id'].values)]
20deaths_solo_er = deaths_solo[deaths_solo['map'] == 'ERANGEL']
21deaths_solo_mr = deaths_solo[deaths_solo['map'] == 'MIRAMAR']
22
23df_second_er = deaths_solo_er[(deaths_solo_er['victim_placement'] == 2)].dropna()
24df_second_mr = deaths_solo_mr[(deaths_solo_mr['victim_placement'] == 2)].dropna()
25print (df_second_er)
26
27position_data = ["killer_position_x","killer_position_y","victim_position_x","victim_position_y"]
28for position in position_data:
29    df_second_mr[position] = df_second_mr[position].apply(lambda x: x*1000/800000)
30    df_second_mr = df_second_mr[df_second_mr[position] != 0]
31
32    df_second_er[position] = df_second_er[position].apply(lambda x: x*4096/800000)
33    df_second_er = df_second_er[df_second_er[position] != 0]
34
35df_second_er=df_second_er
36# erangel热力图
37sns.set_context('talk')
38bg = imread("erangel.jpg")
39fig, ax = plt.subplots(1,1,figsize=(15,15))
40ax.imshow(bg)
41sns.kdeplot(df_second_er["victim_position_x"], df_second_er["victim_position_y"], cmap=cm.Blues, alpha=0.7,shade=True)
42
43# miramar热力图
44bg = imread("miramar.jpg")
45fig, ax = plt.subplots(1,1,figsize=(15,15))
46ax.imshow(bg)
47sns.kdeplot(df_second_mr["victim_position_x"], df_second_mr["victim_position_y"], cmap=cm.Blues,alpha=0.8,shade=True)

在公众号: DataGo数据狗 后台回复 吃鸡 即可获取数据。

数据可视化发现[吃鸡]秘密相关推荐

  1. 小姐姐玩 [吃鸡], 通过数据可视化发现了游戏秘密竟然是?

    本文来自云栖社区官方钉群"Python技术进阶",了解相关信息可以关注"Python技术进阶". 大吉大利,今晚吃鸡~ 今天跟朋友玩了几把吃鸡,经历了各种死法, ...

  2. 小姐姐玩 [吃鸡], 通过数据可视化发现了游戏秘密竟然是?...

    本文来自云栖社区官方钉群"Python技术进阶",了解相关信息可以关注"Python技术进阶". 大吉大利,今晚吃鸡~ 今天跟朋友玩了几把吃鸡,经历了各种死法, ...

  3. 电视剧《大秦赋》最近很火!于是我用Python抓取了“相关数据”,发现了这些秘密............

    前言 最近,最火的电视剧莫过于<大秦赋了>,自12月1日开播后,收获了不错的口碑.然而随着电视剧的跟新,该剧在网上引起了激烈的讨论,不仅口碑急剧下滑,颇有高开低走的趋势,同时该剧的评分也由 ...

  4. 数据可视化发现「吃鸡」秘密

    编辑 | pk哥 来源 | DataGo数据狗 作者 | 胡萝卜酱 阅读文本大概需要 6.66 分钟. 大吉大利,今晚吃鸡~ 周末跟朋友玩了几把吃鸡,经历了各种死法,还被嘲笑说论吃鸡的 100 种死法 ...

  5. 车厘子为何这么贵?还这么多人喜欢吃?Python分析了1500家店铺数据,发现了这些秘密!

    前言 一直以来我都是以大小来区分樱桃和车厘子的区别,那么他们的价格就是天差地别,现在我在水果店基本很少有看到卖樱桃的,但是车厘子一般情况下都有!车厘子这么贵为何还这么多人买?比樱桃好吃吗?车厘子的价格 ...

  6. 用Python分析了1w场吃鸡数据,原来吃鸡要这么玩!

    微信改版,加星标不迷路! 用Python分析如何才能高效吃鸡? 作者:阿广 概述 前言 获取数据 观察数据 数据处理 吃鸡到底和哪个数据相关性最强? 分析热度图 期望研究的问题 结论 阿广说 推荐阅读 ...

  7. 用 Python 分析了 10000 场吃鸡数据,原来吃鸡要这么玩!

    作者 | 阿广 责编 | 屠敏 前言    绝地求生在国内火的一塌糊涂的时候,一款名叫 Fortnite 的游戏在国外刮起了堡垒旋风,这款同样为大逃杀玩法的沙盒类游戏,在绝地求生逐渐走低的形势下,堡垒 ...

  8. 大数据助你“吃鸡”一臂之力!

    糖甜甜甜,985高校经管研二,擅长用python,R, tableau等工具结合统计学和机器学习模型做数据分析.个人公众号:经管人学数据分析. 大吉大利,今晚吃鸡~ 今天跟朋友玩了几把吃鸡,经历了各种 ...

  9. 《大秦赋》最近很火!于是我用Python抓取了“相关数据”,发现了这些秘密.........

    ↑↑↑关注后"星标"简说Python 人人都可以简单入门Python.爬虫.数据分析 简说Python分享来源:数据分析与统计学之美 作者:黄伟呢One old watch, li ...

最新文章

  1. 自定义窗体设计器-控件测试
  2. java 图片灰度化
  3. 小米机器人虚拟墙设置_扫地机器人虚拟墙应该怎么放置使用
  4. 共筑计算新生态 共赢数字新时代
  5. 中兴首款5G旗舰手机来了:2月25日见!
  6. .NET在抹黑代码中输入JS提示语句(背景不会变白)
  7. C++ 实现一个简单内存池
  8. deepin上配置eclipse的hadoop开发环境
  9. vue-cnode使用vue重构cnode社区
  10. 软件定义无线电 (SDR) 和业余试验
  11. 示例项目:简单的六足步行者
  12. 屏幕录像专家 共享版 V7.5 安装图解
  13. HDU6070(线段树)
  14. 将数组分为两部分,使得这两部分和最接近,返回这两部分的差值
  15. SQL Server 按间隔时间查询记录
  16. c#求三角形面积周长公式_c# 求三角形周长 面积详细程序
  17. Android第三方推送到达率调研
  18. mysql——关于找不到vrcuntime140.dll与vrcuntime140_1.dll的问题
  19. 【医学成像】超声成像中的分辨率
  20. 超详细图文保姆级教程:App开发新手入门(六)

热门文章

  1. 查找域控命令_AD域控 Dsquery 查询命令实例汇总
  2. note10 android10,三星Note10配置一览 你愿称它为安卓最强吗?
  3. DuplicateHandle 函数的使用----翻译
  4. openfire error code=406 type=MODIFY 发文件
  5. y97.第六章 微服务、服务网格及Envoy实战 -- xDS API与动态配置(八)
  6. 轻松进入加密了的QQ空间的新方法 请大家小心自己的空间哦
  7. 【人体绘画】Q版萌漫人体比例及人体姿势学习大揭秘!
  8. 小白想成为区块链大牛,你可以从挖矿开始!
  9. linux基础操作学习笔记
  10. 提高无线局域网网速的技巧