1 Star 1 Fork 0

王诗翔 / forestmodel

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
贡献代码
同步代码
取消
提示: 由于 Git 不支持空文件夾,创建文件夹后会生成空的 .keep 文件
Loading...
README

forestmodel

Build Status AppVeyor Build Status R build status CRAN status

This is an R package to generate forest plots of the coefficients of models produced by lm, glm, survival::coxph, etc.

The main function is forest_model, with a helper function default_forest_panels to produce the necessary panels data.frame.

Installation

The package can be installed using install.packages. It needs Hadley Wickham’s broom, dplyr, gpplot2 and lazyeval packages.

Development takes place on the github repository https://github.com/NikNakk/forestmodel/.

Installation

You can install the released version of forestmodel from CRAN with:

install.packages("forestmodel")

And the development version from GitHub with:

# install.packages("devtools")
devtools::install_github("NikNakk/forestmodel")

Example

library(forestmodel)
library(survival)
library(dplyr)
pretty_lung <- lung %>%
  transmute(time,
            status,
            Age = age,
            Sex = factor(sex, labels = c("Male", "Female")),
            ECOG = factor(lung$ph.ecog),
            `Meal Cal` = meal.cal)

print(forest_model(coxph(Surv(time, status) ~ ., pretty_lung)))

Specifying the covariates to show:

print(forest_model(coxph(Surv(time, status) ~ ., pretty_lung), 
                   covariates = c("Age", "Sex")))

空文件

简介

取消

发行版

暂无发行版

贡献者

全部

近期动态

加载更多
不能加载更多了
1
https://gitee.com/ShixiangWang/forestmodel.git
git@gitee.com:ShixiangWang/forestmodel.git
ShixiangWang
forestmodel
forestmodel
master

搜索帮助