Skip to main content

spark_webdat_tools

Project description

spark_webdat_tools

Github License Updates Python 3 Code coverage

spark_webdat_tools is a Python library that implements styles in the Dataframe

Installation

The code is packaged for PyPI, so that the installation consists in running:

pip install spark-webdat-tools --user --upgrade

Usage

import spark_webdat_tools 
from pyspark.sql.types import StructType,StructField, StringType, IntegerType
data2 = [("James","","Smith","36636","M",3000),
    ("Michael","Rose","","40288","M",4000),
    ("Robert","","Williams","42114","M",4000),
    ("Maria","Anne","Jones","39192","F",4000),
    ("Jen","Mary","Brown","","F",-1)
  ]

schema = StructType([ \
    StructField("firstname",StringType(),True), \
    StructField("middlename",StringType(),True), \
    StructField("lastname",StringType(),True), \
    StructField("id", StringType(), True), \
    StructField("gender", StringType(), True), \
    StructField("salary", IntegerType(), True) \
  ])
 
df = spark.createDataFrame(data=data2, schema=schema)

Pandas

df_pandas = df.toPandas()
df_pandas.show2()

Spark

# Dataframe template table
df.show2()

# Dataframe memory usage
df.size()

License

Apache License 2.0.

New features v1.0

BugFix

  • choco install visualcpp-build-tools

Reference

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

spark_webdat_tools-0.3.9.tar.gz (8.7 kB view hashes)

Uploaded Source

Built Distribution

spark_webdat_tools-0.3.9-py3-none-any.whl (8.5 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page