Statistical data type whose value is one of a fixed number of nominal categories.
I have a feature set with a corresponding categoricalFeaturesInfo: Map[Int,Int]. However, for the life of me I cannot …
scala apache-spark tree apache-spark-mllib categorical-dataEDIT: this question arose back with pandas ~0.13 and was obsoleted by direct support somewhere between version 0.15-0.18 (as per @Cireo's …
python pandas boxplot categorical-dataI have fitted a model where: Y ~ A + A^2 + B + mixed.effect(C) Y is continuous A is continuous B …
r statistics modeling categorical-dataI would like to create a mosaic plot (R package vcd, see e.g. http://cran.r-project.org/web/packages/…
r plot categorical-dataI would like to select the top entries in a Pandas dataframe base on the entries of a specific column …
python-2.7 sorting pandas dataframe categorical-dataI have a dataset that contains both categorical (nominal and ordinal) and numerical attributes. I want to calculate the (dis)…
python r similarity categorical-data r-daisyMy response is a categorical variable (some alphabets), so I used distribution='multinomial' when making the model, and now I …
r machine-learning categorical-data multinomial gbmI have a dataset which has a few columns with categorical data. I've been using the Categorical function to replace …
python pandas categorical-data dummy-dataI have the following df data frame in pandas: weekday venta_total_cy 0 Viernes 5.430211e+09 1 Lunes 3.425554e+09 2 Sabado 6.833202e+09 3 Domingo 6.566466…
python pandas categorical-dataI am trying to run a usual linear regression in Python using sk-learn, but I have some categorical data that …
python scikit-learn linear-regression categorical-data