Skip to content

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

@mahaalbashir

Description

@mahaalbashir

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.

Metadata

Metadata

Assignees

Labels

No labels
No labels

Type

No type

Projects

No projects

Milestone

No milestone

Relationships

None yet

Development

No branches or pull requests

Issue actions