I am trying to compare two data sets df1
and df2
, both having 1000 rows and 161 columns which I have loaded from Excel
.
When I use compare_df(df1, df2)
and then try to view the HTML output by
view_html(compare_df(df1, df2))
to see the difference, I notice that there are missing rows in the HTML output.
view_html()
only displays the first 100 records in the HTML
How can I change this limit to more than 100 so that I can see all my records in the HTML output?
Please suggest how this can be done. Or if there is any better way to compare the Excel and see the visible results of the difference. I am kind of new in R
so trying my best.