We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c03e4fb commit 9f36dc7Copy full SHA for 9f36dc7
NEWS.md
@@ -8,6 +8,8 @@
8
9
* Added `show_query()` method for orbital objects. (#106)
10
11
+* Fixed printing bug where output would get malformed if coefficients had similarities. (#115)
12
+
13
# orbital 0.3.1
14
15
* Fixed bug where PCA steps didn't work if they were trained with more than 99 predictors. (#82)
R/orbital.R
@@ -113,7 +113,7 @@ pretty_print <- function(x, digits = 7) {
113
new_values <- unlist(new_values, use.names = FALSE)
114
115
for (i in seq_along(old_values)) {
116
- x <- gsub(old_values[i], new_values[i], x)
+ x <- sub(old_values[i], new_values[i], x)
117
}
118
119
x
0 commit comments