Open exalate-issue-sync[bot] opened 1 year ago
Ryan Brown commented: Second typo in replace columns portion. Selects using {{df[,1]}} but description says this replaces the second column. Indexes start at 1. Correct to say first column.
JIRA Issue Details
Jira Issue: PUBDEV-8279 Assignee: New H2O Bugs Reporter: Ryan Brown State: Open Fix Version: N/A Attachments: N/A Development PRs: Available
Linked PRs from JIRA
Current code example at h2o-docs/src/product/data-munging/replacing-values.rst shows the following typo, using an assignment operator (<-) rather than less than symbol (<) to replace values less than 4.4
{code:R} df[df[, "sepal_len"] <- 4.4, "sepal_len"] <- 4.6 {code}