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.