Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
2 changes: 2 additions & 0 deletions NEWS.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,8 @@

* Added `show_query()` method for orbital objects. (#106)

* Fixed printing bug where output would get malformed if coefficients had similarities. (#115)

# orbital 0.3.1

* Fixed bug where PCA steps didn't work if they were trained with more than 99 predictors. (#82)
Expand Down
2 changes: 1 addition & 1 deletion R/orbital.R
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ pretty_print <- function(x, digits = 7) {
new_values <- unlist(new_values, use.names = FALSE)

for (i in seq_along(old_values)) {
x <- gsub(old_values[i], new_values[i], x)
x <- sub(old_values[i], new_values[i], x)
}

x
Expand Down
Loading