Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

add "recurrent events + tdc" scenario to as_ped() #224

Open
wants to merge 26 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
26 commits
Select commit Hold shift + click to select a range
b6852de
edit warn_about_new_time_points.pamm()
lzumeta Nov 3, 2022
1c8132c
last tidyselect lifecycle changes included
lzumeta Nov 3, 2022
acd278e
minor edit
lzumeta Nov 4, 2022
149e0a6
minor edits after document()
lzumeta Nov 4, 2022
1832dd6
as_ped() recurrent events + tdc data
lzumeta Nov 4, 2022
16d45a5
minor change to avoid "tidy evaluation" warning
lzumeta Nov 15, 2022
2a30cfc
concurrent() editted
lzumeta Nov 15, 2022
34b20d9
concurrent() editted
lzumeta Nov 15, 2022
2525b0a
minor change to avoid "tidy evaluation" warning
lzumeta Nov 15, 2022
334a5ed
no change (indentation)
lzumeta Nov 15, 2022
98569a7
minor change to avoid "tidy evaluation" warning
lzumeta Nov 15, 2022
0e52967
edits in add_concurrent()
lzumeta Nov 15, 2022
143ac1a
as_ped() edited to handle: recurrent events + tdc data
lzumeta Nov 15, 2022
f607d53
edits in add_concurrent()
lzumeta Nov 15, 2022
96ad9ce
tidyselect lifecycle change
lzumeta Nov 17, 2022
ce0a92d
correct last edit in add_concurrent()
lzumeta Nov 17, 2022
e383e0e
edit in as_ped_recurrent()
lzumeta Nov 17, 2022
b14fa87
minor edit
lzumeta Nov 17, 2022
35cdf2f
minor edit
lzumeta Nov 17, 2022
eaf6099
tidyup and add some checks
lzumeta Jan 10, 2023
2c8f8c5
add immported packages
lzumeta Jan 10, 2023
d67d561
add tests to test as_ped() for recurrent events and TDCs
lzumeta Jan 10, 2023
d76a450
Merge branch 'adibender:master' into master
lzumeta Jan 11, 2023
ebdc467
last edits
lzumeta Aug 8, 2023
9762730
Merge branch 'master' of github.com:lzumeta/pammtools
lzumeta Aug 8, 2023
a4768ee
get_ll() changed
lzumeta Aug 8, 2023
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions DESCRIPTION
Original file line number Diff line number Diff line change
Expand Up @@ -32,13 +32,14 @@ Imports:
Formula,
mvtnorm,
pec,
vctrs (>= 0.3.0)
vctrs (>= 0.3.0),
tidyselect
Suggests:
testthat
License: MIT + file LICENSE
LazyData: true
URL: https://adibender.github.io/pammtools/
BugReports: https://github.com/adibender/pammtools/issues
RoxygenNote: 7.1.2
RoxygenNote: 7.2.1
Encoding: UTF-8
Roxygen: list(markdown = TRUE)
2 changes: 2 additions & 0 deletions NAMESPACE
Original file line number Diff line number Diff line change
Expand Up @@ -194,11 +194,13 @@ importFrom(stats,terms)
importFrom(stats,update)
importFrom(stats,vcov)
importFrom(tibble,as_tibble)
importFrom(tibble,is_tibble)
importFrom(tidyr,complete)
importFrom(tidyr,crossing)
importFrom(tidyr,gather)
importFrom(tidyr,nest)
importFrom(tidyr,pivot_longer)
importFrom(tidyr,replace_na)
importFrom(tidyr,unnest)
importFrom(tidyselect,all_of)
importFrom(vctrs,vec_c)
Loading