Applied Spatial Statistics(二)统计推断:排列测试

Applied Spatial Statistics(二)统计推断:排列测试

本笔记本演示了如何执行假设检验和 p 值计算的排列检验。

  1. 相关系数
  2. Moran’s I

相关性

import pandas as pd
import matplotlib.pyplot as plt
import numpy as np
from scipy.stats import *url = 'https://raw.githubusercontent.com/mwaskom/seaborn-data/master/mpg.csv'df = pd.read_csv(url)
df = df.dropna()
让我们抽取一个非常小的样本,只有 10 个点。
small_sample_car = df.sample(10,random_state=222)
small_sample_car
mpgcylindersdisplacementhorsepowerweightaccelerationmodel_yearoriginname
16520.08262.0110.0322113.575usachevrolet monza 2+2
38036.04120.088.0216014.582japannissan stanza xe
1618.06199.097.0277415.570usaamc hornet
26118.16258.0120.0341015.178usaamc concord d/l
1926.0497.046.0183520.570europevolkswagen 1131 deluxe sedan
9918.06232.0100.0294516.073usaamc hornet
20626.54140.072.0256513.676usaford pinto
8614.08304.0150.0367211.573usaamc matador
26727.54134.095.0256014.278japantoyota corona
23216.08351.0149.0433514.577usaford thunderbird
plt.scatter(small_sample_car.horsepower, small_sample_car.acceleration)
plt.xlabel("HP")
plt.ylabel("Acceleration")
Text(0, 0.5, 'Acceleration')

在这里插入图片描述

基于此小样本的 Pearson 相关性,请注意此处的分析 p 值为 ~0.03
pearson_rslt = pearsonr(small_sample_car.horsepower, small_sample_car.acceleration)print("Pearson:",pearson_rslt)
Pearson: PearsonRResult(statistic=-0.6832264558183371, pvalue=0.02941732498278316)
np.random.permutation(small_sample_car.acceleration)
array([20.5, 13.6, 11.5, 15.5, 14.5, 13.5, 14.5, 15.1, 16. , 14.2])
定义相关性的排列测试函数:
def permutation_cor(sample_car):null_cor_list = []for i in range(10000):#permutate one variable, while hold the other constant.subsample_Y = np.random.permutation(sample_car.acceleration)#compute correlationsample_cor = pearsonr(sample_car.horsepower, subsample_Y)[0]null_cor_list.append(sample_cor)return null_cor_list
这给了我们零假设下的相关系数。
null_dist = permutation_cor(small_sample_car)
plt.hist(null_dist)plt.vlines(pearson_rslt[0],ymin=0,ymax=2000,color="red")
<matplotlib.collections.LineCollection at 0x15ff5d6d0>

在这里插入图片描述

让我们计算一下 unll 下的相关性(在幅度上)比样本相关性大多少倍。
这为我们提供了一个模拟 p 值。
np.sum(np.abs(np.array(null_dist)) >= np.abs(pearson_rslt[0]))
323
import numpy as np
p_sim = np.sum(np.abs(np.array(null_dist)) >= np.abs(pearson_rslt[0]))/10000
print("The simulated p-value (2-tail): ", p_sim)print("The actual p-value (2-tail) : ", pearson_rslt[1])
The simulated p-value (2-tail):  0.0323
The actual p-value (2-tail) :  0.02941732498278316

Moran’s I

让我们看看伊利诺伊州 ALAND 的空间自相关。

import geopandas as gpd
IL = gpd.read_file("https://raw.githubusercontent.com/Ziqi-Li/GIS5122/main/data/IL_acs/IL_acs.shp")
IL.columns
Index(['state', 'county', 'NAME_x', 'total_pop', 'pct_65_ove', 'pct_black','pct_hispan', 'males', 'females', 'pct_bach', 'GEOID_x', 'STATEFP','COUNTYFP', 'COUNTYNS', 'AFFGEOID', 'GEOID_y', 'NAME_y', 'LSAD','ALAND', 'AWATER', 'GEOID_int', 'geometry'],dtype='object')
IL.plot(column="ALAND",legend=True)
<Axes: >

在这里插入图片描述

使用 esda 包计算 Moran’s I 值。
from libpysal.weights.contiguity import Queenvalue = IL['ALAND'].values #Get the data we are interested.w = Queen.from_dataframe(IL) #Generate W matrix using Queen contiguityw.transform = 'r' #Row-standardization of the weight matrix
/var/folders/mp/9px298sd6vs8xccb_3sql0dr0000gp/T/ipykernel_45186/246861888.py:5: FutureWarning: `use_index` defaults to False but will default to True in future. Set True/False directly to control this behavior and silence this warningw = Queen.from_dataframe(IL) #Generate W matrix using Queen contiguity
from esda.moran import Moran
from splot.esda import plot_moranil_moran = Moran(value, w, permutations=1000, two_tailed=True)print("Moran's I:", il_moran.I)print("analytical p-value:",il_moran.p_norm)print("Simulated p-value:",il_moran.p_sim)
Moran's I: 0.16857257061968103
analytical p-value: 0.0035814725750113125
Simulated p-value: 0.004995004995004995
plot_moran(il_moran, zstandard=True, figsize=(10,4))
plt.show()
/Users/ziqili/anaconda3/lib/python3.11/site-packages/splot/_viz_esda_mpl.py:354: FutureWarning: `shade` is now deprecated in favor of `fill`; setting `fill=True`.
This will become an error in seaborn v0.14.0; please update your code.sbn.kdeplot(moran.sim, shade=shade, color=color, ax=ax, **kwargs)

在这里插入图片描述

#Define a permutation test function for Moran's I:
def permutation_moran(geodataframe):w = Queen.from_dataframe(IL) null_moran_list = []for i in range(1000):value = np.random.permutation(geodataframe['ALAND'].values) #Get the data we are interested.#compute moran's Imoran = Moran(value, w)null_moran_list.append(moran.I)return null_moran_list
我们为每个县随机分配一个值,并计算每个地图的 Moran’s I。
import numpy as np
IL.plot(column=np.random.permutation(IL['ALAND'].values),legend=True)
<Axes: >

在这里插入图片描述

原假设下的 Moran’s I

null_moran = permutation_moran(IL)
/var/folders/mp/9px298sd6vs8xccb_3sql0dr0000gp/T/ipykernel_45186/1735371652.py:4: FutureWarning: `use_index` defaults to False but will default to True in future. Set True/False directly to control this behavior and silence this warningw = Queen.from_dataframe(IL)
plt.hist(null_moran)
plt.vlines(il_moran.I,ymin=0,ymax=300,color="red")
<matplotlib.collections.LineCollection at 0x2a57a3f10>

在这里插入图片描述

p_sim = np.sum(np.abs(np.array(null_moran)) >= np.abs(il_moran.I))/10000
print("Analytical p-value:",il_moran.p_norm)
print("Simulated p-value from esda's permutation:",il_moran.p_sim)print("Simulated p-value from permutation test:",p_sim)
Analytical p-value: 0.0035814725750113125
Simulated p-value from esda's permutation: 0.004995004995004995
Simulated p-value from permutation test: 0.0005

转存中…(img-XgiyYpYB-1713438830006)]

p_sim = np.sum(np.abs(np.array(null_moran)) >= np.abs(il_moran.I))/10000
print("Analytical p-value:",il_moran.p_norm)
print("Simulated p-value from esda's permutation:",il_moran.p_sim)print("Simulated p-value from permutation test:",p_sim)
Analytical p-value: 0.0035814725750113125
Simulated p-value from esda's permutation: 0.004995004995004995
Simulated p-value from permutation test: 0.0005

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/bicheng/118.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

pycharm永久改变sys.path

进入pycharm&#xff0c;选择file->settings->interpreter 在这里选择图中所示show all 再单击左上角减号右侧第三个&#xff0c;长得像思维导图的图标 之后添加你的路径&#xff0c;确认即可

2024最新面试跳槽,软件测试面试题的整理与解析

今天接着来说说测试工程师面试比较高频的面试题&#xff0c;大家可以通过面试题内的一些解析再结合自己的真实工作经验来进行答题思路的提取、整理。 硬背答案虽可&#xff0c;但容易翻车哦。能够举一反三才是重点&#xff01; 1&#xff1a;请介绍一下UI自动化测试中三种时间等…

【若依前后端分离】设置已选中内容条数

示例&#xff1a; 将已选中n行加在了分页中&#xff0c;有分页才可以选择已选中多少行。如果想要不加分页也可以展示已选中n行&#xff0c;自行修改部分代码即可。 关键代码&#xff1a; 这使用了span&#xff0c;可使用其他元素 使用了Vue.js的v-if指令来根据条件是否渲染该…

前端JS必用工具【js-tool-big-box】,时间日期转换学习一

这一小节&#xff0c;我们学习一下 js-tool-big-box 这个npm 前端工具库&#xff0c;关于时间日期格式转换的一部分&#xff0c;后续还会有。 目录 1 安装 2 项目中引入 3 工具使用 3.1 年月日时分秒的单独处理 3.2 以上方法中第一个参数 3.3 日期时间的转换 3.4 更个…

6.C++:继承

一、继承 //1.类中的保护和私有在当前类中没有差别&#xff1b; //2.在继承后的子类中有差别&#xff0c;private在子类中不可见&#xff0c;所以用protected&#xff1b; class person { public:void print(){cout << "name:" << _name << endl;c…

#是啥,v-slot插槽的区别

在 Vue 3.x 中&#xff0c;您还可以使用 # 简写来代替 v-slot v-slot&#xff1a; v-slot 是 Vue 2.6 和 Vue 3.x 推荐的新的插槽语法。 v-slot 用于具名插槽&#xff0c;它允许您为插槽指定名称&#xff0c;并允许您传递具名插槽的内容。 例如&#xff0c;以下是使用 v-slot…

设计模式: 行为型之备忘录模式(13)

备忘录模式概述 备忘录模式&#xff08;Memento Pattern&#xff09;是一种行为设计模式&#xff0c;它允许在不破坏封装性的前提下捕获一个对象的内部状态&#xff0c;并在对象之外保存这个状态这样以后就可将该对象恢复到原先保存的状态。这种类型的设计模式属于行为模式在备…

【Qt 学习笔记】Qt常用控件 | 按钮类控件Push Button的使用及说明

博客主页&#xff1a;Duck Bro 博客主页系列专栏&#xff1a;Qt 专栏关注博主&#xff0c;后期持续更新系列文章如果有错误感谢请大家批评指出&#xff0c;及时修改感谢大家点赞&#x1f44d;收藏⭐评论✍ Qt常用控件 | 按钮类控件Push Button的使用及说明 文章编号&#xff1…

2024年华中杯数学建模竞赛全攻略:ABC题思路解析+代码实现+数据集+论文撰写+全程答疑

引言 &#xff08;比赛后所有题目资料在文末获取呀&#xff09; 华中杯数学建模竞赛是数学建模领域的一项重要赛事&#xff0c;它不仅考验参赛者的数学建模能力&#xff0c;还考验了编程技能、数据分析能力和论文撰写能力。为了帮助参赛者更好地准备2024年的竞赛&#xff0c;本…

libftdi1学习笔记 6 - MPSSE QSPI

目录 1. 写 2. 读 3. 验证 QSPI采用4根线为数据口&#xff0c;SCK和CS保留同样的功能&#xff0c;一般&#xff14;个数据线采用MSB的方式发送数据&#xff0c;即高位在前。 QSPI只能是半双工工作。 1. 写 int qspiWriteBytes(uint8_t port, uint8_t* wrBuf, uint16_t l…

RAG学习笔记系列(一)

RAG 介绍 RAG 全称为 Retrieval Augmented Generation&#xff08;检索增强生成&#xff09;。是基于LLM构建系统的一种架构。 RAG 基本上可以理解为&#xff1a;搜索 LLM prompting。根据用户的查询语句&#xff0c;系统会先使用搜索算法获取到相关内容作为上下文&#xff0…

JavaScript如何设置定时器,怎么清除定时器

在JavaScript中&#xff0c;你可以使用setTimeout()和setInterval()函数来设置定时器&#xff0c;以及使用clearTimeout()和clearInterval()函数来清除定时器。 setTimeout() setTimeout()函数用于在指定的毫秒数之后执行一个函数或计算表达式。它返回一个表示定时器的ID&…

pnpm 报错: ERR_PNPM_META_FETCH_FAIL

今天突然遇到一个报错&#xff0c;pnpm 报错&#xff1a; ERR_PNPM_META_FETCH_FAIL  GET https://registry.npm.taobao.org/vue%2Fcli-service: request to https://registry.npm.taobao.org/vue%2Fcli-service failed, reason: certificate has expired问题原因&#xff1a;…

when语法学习及判断主机别名实例

目录 1、概念 2、实例配置 2.1 编写剧本体验when的用法 2.2 执行剧本文件 2.3 使用ansible临时命令进行测试 1、概念 when是用于判断的语法&#xff0c;将其用在每个动作的下方进行判断&#xff0c;使得只有在满足条件才会执行。 2、实例配置-判断主机别名 在每个客户端中…

移动端uniapp下载文件并保存到手机,下载准考证保存到手机

移动端uniapp下载文件并保存到手机&#xff0c;下载准考证保存到手机 1. 使用uni.request下载文件 uni.request({ url: http://example.com/file_url, // 要下载的文件的URL method: GET, responseType: arraybuffer, // 响应类型为arraybuffer (二进制形式) success: functi…

Compose 基础组件

文章目录 Compose 基础组件Modifier 修饰符Scaffold 脚手架 Compose 基础组件 Modifier 修饰符 在传统视图体系中&#xff0c;使用XML文件描述组件的样式&#xff0c;而在Compose中使用Modifier&#xff0c;每个基础的Composable组件都有一个modifier参数&#xff0c;通过Mod…

使用CCS软件查看PID曲线

在刚开始学习PID的时候&#xff0c;都需要借助PID的曲线来理解比例&#xff0c;积分&#xff0c;微分这三个参数的具体作用。但是这些曲线生成一般都需要借助上位机软件或者在网页上才能实现。如果是在单片机上调试程序的话&#xff0c;想要看曲线&#xff0c;一般就是通过串口…

【YOLOv5】使用yolov5训练模型时报错合集

文章目录 前言问题1 -- VsCode终端无法进入Anaconda创建的虚拟环境【问题描述】【问题分析】【解决方式】方法一方法二 问题2 -- 怎么在VsCode中为项目配置Anaconda创建的虚拟环境【问题描述】【解决方式】 问题3 -- yolov5训练模型时报错RuntimeError: result type Float cant…

web自动化测试系列-selenium常用方法定位(五)

目录 1.selenium的定位方法 2.操作案例 3.实现代码 前面我们介绍了html页面元素主要是通过标签和属性来进行定位 &#xff0c;只要满足唯一&#xff0c;无论是标签还是属性 &#xff0c;都能进行定位 。当然 &#xff0c;我们要通过selenium来进行定位 &#xff0c;同样还是…

富格林:利用正规方法提升出金收益

富格林悉知&#xff0c;黄金现货是众多黄金产品当中交易规则优势较为明显的存在&#xff0c;尤其是近段时间的行情走势十分强劲&#xff0c;这使得投资者们获得了更充足的做单机会。然而&#xff0c;要想在炒黄金的市场上取得成功&#xff0c;除了对市场有深刻的理解外&#xf…