Roberto Ulloa
Roberto Ulloa
It would be great if there would be a replace method, so that: >> furl(`http:\\example.com\?a=1&b=2`).replace({'a':100}).url would output: `http:\\example.com\?a=100&b=2` A remove and add would change the order of things: >> furl(`http:\\example.com\?a=1&b=2`).remove('a').add({'a':100}).url...
I am trying to run the example provided in the ezBoot function using lmer=TRUE. ``` #Read in the ANT data (see ?ANT). data(ANT) head(ANT) ezPrecis(ANT) #Run ezBoot on the accurate...
I was wondering if the `ezPerm` function is an appropiate alternative for the [`aovp`](http://www.inside-r.org/packages/cran/lmPerm/docs/aovp) (of the **orphaned and unsopported** [`lmPerm`](https://cran.r-project.org/web/packages/lmPerm/index.html) package)? Is it possible to add some references in the...
I am not sure if there are internal differences, but I often I use pointplot (instead of barplots) because they are less cluttered,  (pointplot might not be the right...
If I do the following ``` import rbo S = [1,2,3,4,5,6,7,8,0,9]; T = [1,2,3,4,5,6,7,8,9,0] print(pip_rbo.RankingSimilarity(S, T).rbo(p=.9)) ``` I get `0.6465385908999999` but with [https://github.com/dlukes/rbo](https://github.com/dlukes/rbo) and (https://towardsdatascience.com/rbo-v-s-kendall-tau-to-compare-ranked-lists-of-items-8776c5182899)[https://towardsdatascience.com/rbo-v-s-kendall-tau-to-compare-ranked-lists-of-items-8776c5182899], I am getting `0.9952170310000001` and...
I am running `qgrid 1.3.1` and pandas `pandas==1.0.3`. I have a DataFrame of 300K rows, and it runs well. However, when I convert some of the columns to `categorical` dtype,...