2025年8月6日

R2

摘要: 其中 L1​ 是模型的对数似然值,L0​ 是仅包含截距项的模型的对数似然值。 Generalized R2 - 非线性+GLM1-sse/sstMcFadden’s R21-log(sse)/log(sst)Cox & Snell R21 - (L0/Lmodel)^(2/n)Nagelkerke 阅读全文

posted @ 2025-08-06 20:42 iUpoint 阅读(8) 评论(0) 推荐(0)

2025年3月31日

spyder 启动报错

摘要: # Mandatory: zmq >= 24.0.0:(23.2.0) pip uninstall spyder pyzmq jupyter-client pip install spyder pyzmq jupyter-client# Mandatory: nbconvert >=4.0:one( 阅读全文

posted @ 2025-03-31 10:36 iUpoint 阅读(33) 评论(0) 推荐(0)

2025年2月24日

Stepwise 原理

摘要: 逐步回归、p-value、AICc 和 BIC 是用于变量选择的统计方法。每种方法都有其独特的步骤和准则。以下是这些方法的具体步骤: 1. 逐步回归(Stepwise Regression) 逐步回归是一种迭代方法,用于选择线性回归模型中的变量。它包括两种主要策略:前向选择和后向消除,有时也结合使用 阅读全文

posted @ 2025-02-24 10:42 iUpoint 阅读(126) 评论(0) 推荐(0)

2025年2月13日

Markdown 基本语法

摘要: 展示常见 markdown 语法 # 标题1 ## 标题2 ### 标题3 ~~删除线~~ *斜体字* **粗体** ***粗斜体*** ### 引用 > 引用文本 ### 链接 直接链接:[https://bejson.com](https://bejson.com) [普通链接](http:// 阅读全文

posted @ 2025-02-13 19:26 iUpoint 阅读(14) 评论(0) 推荐(0)

2025年2月5日

R代码加密

摘要: # # 打包 Rdata 文件 # # script.R 内容 my_function <- function(x) { return(x^2 + 2*x + 1) } # 加载 compiler 包 library(compiler) # 运行 script.R 文件以定义函数 source("s 阅读全文

posted @ 2025-02-05 10:04 iUpoint 阅读(73) 评论(0) 推荐(0)

R 项目打包

摘要: # # 打包 R 项目 # Rstats/ ├── DESCRIPTION ├── NAMESPACE └── R/ └── script.R # DESCRIPTION # 描述了包的元数据 Package: Rstats Type: Package Title: What the Package 阅读全文

posted @ 2025-02-05 10:03 iUpoint 阅读(28) 评论(0) 推荐(0)

2024年7月23日

可靠性分析教材

摘要: 一、可靠性设计类相关书籍 1、Reliability Engineering: Theory and Practice,Alessandro Birolini 2、Practical Reliability Engineering,Patrick D. T. O'Connor, Andre Kley 阅读全文

posted @ 2024-07-23 21:58 iUpoint 阅读(222) 评论(0) 推荐(0)

正则表达式

摘要: https://www.jianshu.com/p/3dd137ba2875?utm_campaign=maleskine&utm_content=note&utm_medium=seo_notes https://blog.csdn.net/lovedingd/article/details/12 阅读全文

posted @ 2024-07-23 21:47 iUpoint 阅读(25) 评论(0) 推荐(0)

统计学教材

摘要: 1. AdvancedCalculus with Applications in Statistics2.A History of Probability and Statistics and Their Applications before 17503.Markov Decision Proce 阅读全文

posted @ 2024-07-23 21:34 iUpoint 阅读(52) 评论(0) 推荐(0)

2023年9月3日

python 基础

摘要: # -*- coding: utf-8 -*- """ Created on Sun Sep 3 16:30:59 2023 """ import numpy as np import pandas as pd # # list a = [2,3,1,'1',5] #list() a.append( 阅读全文

posted @ 2023-09-03 18:04 iUpoint 阅读(20) 评论(0) 推荐(0)

导航