Search
 
SCRIPT & CODE EXAMPLE
 

PYTHON

label encoder pyspark

from pyspark.ml.feature import StringIndexer

df = sqlContext.createDataFrame(
            [(0, "a"), (1, "b"), (2, "c"), (3, "a"), (4, "a"), (5, "c")],
            ["id", "category"]) 
indexer = StringIndexer(inputCol="category", outputCol="categoryIndex") 
indexed = indexer.fit(df).transform(df) 
indexed.show()
Comment

PREVIOUS NEXT
Code Example
Python :: get all files of a drive folder to google colab 
Python :: change pandas column value based on condition 
Python :: django admin table columns wrap text into multiple lines django 
Python :: JUPYTER CONSUMES 100 disk 
Python :: spacy frenc hlemmatizer 
Python :: SQL Query to Join Two Tables Based Off Closest Timestamp 
Python :: how to display speechmarks in python string 
Python :: price for bazaar item hypixel python 
Python :: create a sequence of numbers in python 
Python :: python get ip info 
Python :: how to split a string from the beginning to a specific character in python 
Python :: chiffre cesar python 
Python :: how to find range of dates in between two dates unsing python 
Python :: python how to obfuscate code 
Python :: display flask across network 
Python :: tag for deleting a list in python 
Python :: maximo numero de variables dentro de un .def python 
Python :: datetime current year 
Python :: import csv file in python 
Python :: python one line return 
Python :: confusion matrix python 
Python :: remove too short strings from a list python 
Python :: Python Relative Strength Indicator 
Python :: numpy round 
Python :: python mod inverse 
Python :: native bold text 
Python :: python image black and white 
Python :: get time between things python 
Python :: reject invalid input using a loop in python 
Python :: list to set keep order python 
ADD CONTENT
Topic
Content
Source link
Name
9+5 =