on 04-06-2022 04:29 PM
R is a popular language in Data Science. Incorta supports creating materialized views (MV) with R.
The minimum requirement for creating an MV includes the following:
# Read data from Incorta into Spark
df <- read("Titanic_R.Titanic_train")
# Use display() - an Incorta Notebook extension to print data
display(df)
# Save the Spark Data Frame as an Incorta Materialized View
save(df)