forked from gforge/htmlTable
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathNEWS
132 lines (113 loc) · 5.18 KB
/
NEWS
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
NEWS for the htmlTable package
Changes for 1.12
----------------
* Added scientific notation to txtRound (Issue #35)
Changes for 1.11.4
------------------
* Fix $ MathJax bug (Issue #57)
Changes for 1.11.3
------------------
* Fix single-row css.cell bug (Issue #54)
Changes for 1.11.2
------------------
* Set htmlEscape to default to FALSE as some features depend on the ability to be able to
send html formatted strings.
Changes for 1.11.1
------------------
* Removed tidyr and dplyr from dependencies (issue #47)
Changes for 1.11.0
------------------
* Strings are now escaped using htmltools::htmlEscape - issue #40 (thanks Peter Konings)
* Tidy data interface - issue #42 (thanks Stephen Gragg)
Changes for 1.10.1
-----------------
* Fixed bug with rownames styling (thanks Shira Mitchell)
Changes for 1.10
-----------------
* Added conversion of dimnames into row/column labels
* Added detection of sum row/colum when using base::table
* fixed cgroup bug with automated n.cgroup calculations
* fixed output to viewport when not in RStudio notebook (thanks Peter Konings)
* fixed vector input for txtRound warning
Changes for 1.9
-----------------
* txtInt handles nsmall warning when working with non-atomic numbers (issue #23)
* fixed output for RStudio notebook (issue #26)
Changes for 1.8
-----------------
* txtRound now throws an error when provided a too short vector of digits (thanks Peter Konings)
* css.cell has improved docs and added checkmate to verify format (thanks maverickg)
* Added concatHtmlTables for merging multiple tables into one string element of class htmlTable
* Fixed CRAN bugs in dev version
Changes for 1.7
-----------------
* Added ability to print matrix & data.frame without any rows, i.e. empty (thanks Peter Konings)
* Added table border flexibility via the ctable argument (Thanks raredd)
* Added option of having row-group separators for no-named row groups (Thanks, prof. Harrell)
* Fixed bug with outputting dates (issue #14)
Changes for 1.6
-----------------
* The txtRound now properly handles vector digits argument
* The txtRound is now a S3-function and handles data.frame objects in a cleaner way
Changes for 1.5
-----------------
* Added better description for how to use the add attribute for rgroups
* Extended the add attribute for rgroup to accept matrices
* The n.rgroup/rgroup are automaticaly completed with the last rows if sum(n.rgroup) is less than the total number of rows
* Similar applies to n.cgroup/cgroup
* Fixed the line-merge so that all new lines get an <br>-tag
* Added an interactiveTable for allowing tables with cells that have resizeable content
* Added css.table for table element css styling
Changes for 1.4
---------------
* Handles data.frames with factors - thanks Sergio Oller #4
Changes for 1.3
---------------
* Prepared for API-changes with stringr 1.0
* The txtRound can now handle vectors and single values
Changes for 1.2
-----------------
* Fixed table counter update
* The htmlTable can now also accept vectors
* Removed the format.df from Hmisc as it converted & to \& with unexpected results. This functionality
has also been superseeded by the txtRound function.
Changes for 1.1
-----------------
* Added the option of having an attribute on the rgroup in case there is an interest
of adding more data to that particular row
* Added a fix for the pandoc tab bug
* knit_print implemented removing the need for results='asis' except for within for-loops
* Removed the capitalize tspanner css as this may cause confusion with limited word processor compatibility
* Added htmlTable tests
* txtRound now also rounds character matrices
* Added a detailed vignette with the primary features of htmlTable
* Added the option of having a total row
* The pos.caption can now also be "below"
* Fixed minor bug with numbering not beeing turned off with options(table_counter = FALSE)
* Zebra striping now works for rgroups mixed with ""
* txtRound returns "" by default if value missing. This can also be specified with the
txt.NA option
Changes for 1.0
-----------------
* The htmlTable and associated txt-functions are now separated from Gmisc
* Argument name changes for htmlTable for better consistency and logic:
rowname -> rnames
headings -> header
halign -> align.header
cgroup.just -> align.cgroup
rgroupCSSstyle -> css.rgroup
rgroupCSSseparator -> css.rgroup.sep
tspannerCSSstyle -> css.tspanner
tspannerCSSseparator -> css.tspanner.sep
tableCSSclass -> css.table.class
rowlabel.pos -> pos.rowlabel
caption.loc -> pos.caption
altcol -> col.rgroup
* htmlTable can now handle rnames = FALSE in order to surpress rownames
* htmlTable now defaults to the layout of ctable as this is the more commonly found layout among medical papers
* htmlTable rgroup has the additional padding.rgroup for those that want to change the no-breaking space padding
* htmlTable tfoot is automatically run through txtMergeLines in order to retain wrapped text
* Renamed splitLines4Table to txtMergeLines, outputInt to txtInt, pvalueFormatter to txtPval and these follow now the argument style of htmlTable
* Added txtRound for rounding matrices. The problem with round() is that 1.01 rounds to 1
instead of "1.0" that is wanted for output.
* Multiple bug-fixes