-
Updated
Sep 18, 2020 - C
data-cleaning
Here are 621 public repositories matching this topic...
-
Updated
Apr 18, 2016 - Jupyter Notebook
-
Updated
Feb 24, 2020 - Jupyter Notebook
-
Updated
Sep 11, 2020 - Python
-
Updated
Sep 4, 2020 - TypeScript
Is your feature request related to a problem? Please describe.
Currently the built-in Check methods relating to the comparison operators <, >, ==, etc. are sort of long and unwieldy (the rationale here was to make it human-readable). However, it seems like pandas and indeed python uses shorthand of ge (>=), le (<=), etc. for these binary operators.
**Describe the soluti
Write tests
Write unit test coverage for SafeDataset and SafeDataLoader, along with the functions in utils.py.
-
Updated
Sep 16, 2020 - R
-
Updated
Aug 7, 2020 - Python
As detailed in:
https://github.com/marketplace/actions/run-circleci-artifacts-redirector?version=0.1.0
It is used to link from the PR to the docs rendered by circleci, for instance in scikit-learn or sphinx-gallery. It helps reviewing PRs.
-
Updated
Jul 27, 2020 - HTML
-
Updated
Nov 7, 2019 - C++
-
Updated
Sep 15, 2018 - Python
-
Updated
Jan 2, 2019 - Jupyter Notebook
-
Updated
Sep 16, 2020 - Vue
Context
Why do we add this issue?
Our goal is to make it easy to visualise data and to make those visualisations of good quality and thus trustworthy. This also means setting limitations to what users can do, so they do not make mistakes.
Problem or idea
What is the cause?
Line charts are similar to scatter plots except that the measurement points are ordered by their x-axis va
-
Updated
Aug 23, 2020 - Python
-
Updated
Aug 24, 2020 - Python
-
Updated
Jun 21, 2016 - Java
-
Updated
Sep 3, 2019
-
Updated
Apr 29, 2020 - Jupyter Notebook
-
Updated
Oct 22, 2019 - Jupyter Notebook
-
Updated
Apr 8, 2020 - R
-
Updated
Apr 18, 2020 - Python
In this lesson, the section on Dates and Numbers utilizes the simple date format syntax to output the date in a human readable format. I think the lesson could benefit from an explanation of simple date format, or at least a reference/link to the Wiki page on [GREL Date Functions](https://github.com/OpenRefine/OpenRef
-
Updated
May 31, 2019 - Jupyter Notebook
Improve this page
Add a description, image, and links to the data-cleaning topic page so that developers can more easily learn about it.
Add this topic to your repo
To associate your repository with the data-cleaning topic, visit your repo's landing page and select "manage topics."


GREAT, Sam!
janitor is wonderful.
btw:
a shortcut to get Total Sums
for BOTH rows AND cols:
mtcars %>%
tabyl(am, cyl) %>%
adorn_totals(c("row", "col"))
am 4 6 8 Total
0 3 4 12 19
1 8 3 2 13
Total 11 7 14 32
So,
(easy) SUGGESTION -
also allow keyword:
"both"
as param to:
adorn_totals("both")
or maybe simply:
adorn_totals()
less coding...easier...