We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Not particularly important, but when I was working on #71 I tried to run the following
df2 <- tibble(col1 = c("cat", "dog", "mouse", "fly")) df1 <- tibble(col1 = c("cat", "dog", "rat")) rCompare(df1, df2, keys = "col1")
Clearly this isn't smart, as without col1, there's nothing left to compare.
col1
However, the output isn't clear
Running rCompare... Coercing input data to data.frame Error in if (nrow(DFA) == 0) { : argument is of length zero
It would be better to catch this and output a friendly error message.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Not particularly important, but when I was working on #71 I tried to run the following
Clearly this isn't smart, as without
col1
, there's nothing left to compare.However, the output isn't clear
It would be better to catch this and output a friendly error message.
The text was updated successfully, but these errors were encountered: