“Spark Mllib Tutorial” Code-Antworten

Spark Mllib Tutorial

from pyspark import SparkConf, SparkContext
from pyspark.sql import SQLContext
Sc = SparkContext()
sqlContext = SQLContext(sc)
Terrible Tarantula

Spark Mllib Tutorial

# Use the Spark CSV datasource with options specifying:
# - First line of file is a header
# - Automatically infer the schema of the data
data = spark.read.format("csv") 
  .option("header", "true") 
  .option("inferSchema", "true") 
  .load("/databricks-datasets/samples/population-vs-price/data_geo.csv")

data.cache() # Cache data for faster reuse
Terrible Tarantula

Ähnliche Antworten wie “Spark Mllib Tutorial”

Fragen ähnlich wie “Spark Mllib Tutorial”

Weitere verwandte Antworten zu “Spark Mllib Tutorial” auf Python

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen