on 04-08-2022 09:00 AM - edited on 04-08-2022 11:50 AM by JoeM
You can run SQL queries to do interactive analysis in Incorta Notebook. Use registerTempTable to define a Spark Temp View, create new paragraphs, and use %sql to run SQL queries in Incorta Notebook.
# define a temp view and use SQL to query data
SparkR::registerTempTable(df, "titanic_data")
select * from titanic_data