此仓库是为了提升国内下载速度的镜像仓库,每日同步一次。 原始仓库:https://github.com/ejmahler/SplineLibrary master 克隆/下载 git config --global user.name userName git config --global user.email userEmail 分支1 标签0 AbiFixes control text for generating distance...1e3f4a27年前 ...
SplineLibrary A C++ library created to provide open-source reference implementations of many spline functions, e.g. Natural Splines and Catmull-Rom Splines. It's a challenge to find well-documented and FOSS implementations of these useful tools, and mathematical defintions of these things are reall...
This paper provides the description of a novel, multi-purpose spline library. In accordance with the increasingly diverse modes of usage of splines, it is multi-purpose in the sense that it supports geometry representation, finite element analysis, and optimization. The library features reading and...
This paper provides the description of a novel, multi-purpose spline library. In accordance with the increasingly diverse modes of usage of splines, it is multi-purpose in the sense that it supports geometry representation, finite element analysis, and optimization. The library features reading and...
Simple python cubic spline library Description This is a simple cubic spline library for python. You can calculate 1D or 2D Spline interpolation with it. On the 2D Spline interpolation, you can calculate not only 2D position (x,y), but also orientation(yaw angle) and curvature of the positio...
library(rms) be<-read.csv("E:/r/test/qztp2.csv",sep=',',header=TRUE) names(be) 1. 2. 3. 4. 5. 建立样条回归 model.spline <- lm(be$Gestational.week ~ rcs(be$HB))#建立样条回归 summary(model.spline) 1. 2. 注意这个P值,小于0.05表明非线性关系 ...
Templates Library A repository of 3d designs, templates, and objects ready to use. 3D Vector Editing The vector tool you already know but in a 3d space. Camera Controls Use cameras to control and orbit on your 3d scene composition.
library(Greg) plotHR(fit, term=1, plot.bty='n', xlim=c(20, 80), ylim=c(0, 5), ylog=FALSE, xlab='age', ylab='HR (95%CI)', rug='ticks') 其中: xlim,ylim:x 轴,y 轴范围 xlab,ylab:x 轴,y 轴名称 ylog=FALSE:y 轴不转换成 log,默认是转换 ...
library(rms) ###立方样条所需要的包 ###参照rms包,先生成一个模拟数据集,包括性别(sex),年龄(age)以及生存时间(time)和结局变量(death); n <- 1000 set.seed(731) age <- 50 + 12*rnorm(n) label(age) <- "Age" sex...
library(survival) ka6$outcome <-ifelse(ka6$zcreason==1&ka6$txtime<=12,1,0) before.cox.curve.1 <- coxph(Surv(txtime,outcome)~pspline(ka03)+ #pspline()拟合惩罚性样条曲线 sex+age+disease+ hbxxgjj+tnb+ gxy+xgtl+gai...