Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
28 commits
Select commit Hold shift + click to select a range
cc714fd
Replace gt dependency with lt
yihui May 21, 2026
836d523
Add as_lt() documentation; update roxygen metadata
yihui May 21, 2026
6b09388
Fix unquoted column names in lt_spanner() calls
yihui May 21, 2026
f860404
Add Remotes: yihui/lt for CI installation
yihui May 21, 2026
1cf4873
Update _pkgdown.yml: as_gt -> as_lt
yihui May 21, 2026
2d91429
Deprecate as_gt(); style as_lt() to match gt appearance
yihui Jun 2, 2026
96062d2
Merge remote-tracking branch 'origin/main' into replace-gt-with-lt
yihui Jun 2, 2026
93a5296
Add as_gt to pkgdown reference index
yihui Jun 2, 2026
059a19a
Trim gt-style.css to only what differs from lt.css
yihui Jun 2, 2026
bd3bedf
Simplify as_gt() docs to a deprecation pointer
yihui Jun 2, 2026
7fe511c
Use lt's bundled lt-gt.css theme instead of a local copy
yihui Jun 2, 2026
9bd6d86
Drop lt_gt_style(); gt-like look is now lt's default
yihui Jun 2, 2026
ac67369
Adapt to lt 0.0.9: use lt_group(~ col) instead of lt(row_group = ...)
yihui Jun 4, 2026
7cf148b
Replace as_lt() with lt() S3 methods for design summaries
yihui Jun 5, 2026
4e170e6
Replace remaining as_lt() references with lt::lt() in vignettes and t…
yihui Jun 6, 2026
1d00e2f
remove leftover as_lt
yihui Jun 10, 2026
e72419f
Move gsd_* helper functions from as_gt.R to as_lt.R
yihui Jun 10, 2026
b1306b6
Replace lt_cols_label() with lt_label() in risk-difference vignette
yihui Jun 10, 2026
5c15268
Merge branch 'main' into replace-gt-with-lt
yihui Jun 25, 2026
c0444d4
CRAN release v1.1.9 (#644)
LittleBeannie Jun 29, 2026
caaad55
examples lines wider than 100 characters (#646)
LittleBeannie Jun 30, 2026
f97fe09
Merge branch 'main' into replace-gt-with-lt
yihui Jul 1, 2026
9f368bd
Adapt to CRAN lt: remove Remotes, drop lt:: qualifier, clean up tests
yihui Jul 3, 2026
961c996
Simplify README.Rmd: use lt_html() for direct HTML table output
yihui Jul 3, 2026
907f636
Merge branch 'main' into replace-gt-with-lt
yihui Jul 4, 2026
9d918b4
option was renamed [ci skip]
yihui Jul 9, 2026
6c417d7
use lt_group(sep = TRUE)
yihui Jul 9, 2026
7e9e090
'text' is the first arg
yihui Jul 9, 2026
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
6 changes: 3 additions & 3 deletions DESCRIPTION
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Package: gsDesign2
Title: Group Sequential Design with Non-Constant Effect
Version: 1.1.9
Version: 1.1.10
Authors@R: c(
person("Keaven", "Anderson", email = "keaven_anderson@merck.com", role = c("aut")),
person("Yujie", "Zhao", email = "yujie.zhao@merck.com", role = c("aut", "cre")),
Expand Down Expand Up @@ -43,7 +43,7 @@ Imports:
data.table,
dplyr,
gsDesign,
gt,
lt,
methods,
mvtnorm,
npsurvSS (>= 1.1.0),
Expand All @@ -68,4 +68,4 @@ VignetteBuilder:
LinkingTo:
Rcpp
Roxygen: list(markdown = TRUE)
RoxygenNote: 7.3.3
Config/roxygen2/version: 8.0.0
5 changes: 2 additions & 3 deletions NAMESPACE
Original file line number Diff line number Diff line change
@@ -1,10 +1,9 @@
# Generated by roxygen2: do not edit by hand

S3method(as_gt,fixed_design_summary)
S3method(as_gt,gs_design_summary)
S3method(as_gt,simtrial_gs_wlr)
S3method(as_rtf,fixed_design_summary)
S3method(as_rtf,gs_design_summary)
S3method(lt::lt,fixed_design_summary)
S3method(lt::lt,gs_design_summary)
S3method(print,fixed_design)
S3method(print,gs_design)
S3method(summary,fixed_design)
Expand Down
6 changes: 6 additions & 0 deletions NEWS.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
# gsDesign2 1.2.0

## Major changes

- The (heavy) **gt** dependency has been replaced with the lightweight **lt** package. The `as_gt()` function is deprecated in favor of `lt::lt()`. S3 methods for `lt()` are provided for `fixed_design_summary` and `gs_design_summary` objects. There are no significant visual changes in the HTML tables.

# gsDesign2 1.1.9

## New features
Expand Down
Loading
Loading