roelhogervorst commented on a change in pull request #8240: GCP SparkR Example URL: https://github.com/apache/airflow/pull/8240#discussion_r408773894
########## File path: tests/providers/google/cloud/operators/test_dataproc_system.py ########## @@ -35,16 +37,28 @@ print(words) """ +sparkr_file = """ +#!/usr/bin/r +sparkR.session() +# Create the SparkDataFrame +df <- as.DataFrame(faithful) +head(summarize(groupBy(df, df$waiting), count = n(df$waiting))) +""" Review comment: Check. Found the apache spark documentation. and modified example ---------------------------------------------------------------- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. For queries about this service, please contact Infrastructure at: [email protected] With regards, Apache Git Services
