Skip to content
New issue

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

Mapping all the function's parameter between the python functions and the R functions #3

Open
mahaalbashir opened this issue Jan 17, 2024 · 0 comments
Assignees

Comments

@mahaalbashir
Copy link
Collaborator

Some functions in the R package do not map all the parameters to the Python functions. For example, the crosstab version of the R package is as follows:
acro_crosstab <- function(index, columns, values=NULL, aggfunc=NULL)
While the crosstab version of the python package is as follows:

def crosstab(  # pylint: disable=too-many-arguments,too-many-locals
        self,
        index,
        columns,
        values=None,
        rownames=None,
        colnames=None,
        aggfunc=None,
        margins: bool = False,
        margins_name: str = "All",
        dropna: bool = True,
        normalize=False,
        show_suppressed=False,
    )

Many parameters like the rownames , colnamnes, margins,... have not been mapped between the Python and R versions.

@mahaalbashir mahaalbashir self-assigned this Jan 17, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant