<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>article Get started with an exploratory analysis on Databricks using Sample Data in Get Started Guides</title>
    <link>https://community.databricks.com/t5/get-started-guides/get-started-with-an-exploratory-analysis-on-databricks-using/ta-p/79482</link>
    <description>&lt;H1&gt;&lt;STRONG&gt;Getting started with Databricks - Exploratory analysis&lt;/STRONG&gt;&lt;/H1&gt;
&lt;P&gt;&lt;SPAN&gt;This guide walks you through using a Databricks notebook to query sample data stored in Unity Catalog using Python and then visualize the query results in the notebook.&lt;/SPAN&gt;&lt;SPAN&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;SPAN&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;SPAN&gt;This is a beginner’s tutorial with hands-on instructions to execute in your own Databricks workspace. &lt;/SPAN&gt;&lt;A href="https://www.databricks.com/try-databricks#account" target="_blank" rel="noopener"&gt;&lt;SPAN&gt;You can request a free 14-day trial.&amp;nbsp;&lt;/SPAN&gt;&lt;/A&gt;&lt;/P&gt;
&lt;H3&gt;&lt;STRONG&gt;Step 1: Access sample data&lt;/STRONG&gt;&lt;/H3&gt;
&lt;OL&gt;
&lt;LI style="font-weight: 400;" aria-level="1"&gt;&lt;SPAN&gt;Click &lt;/SPAN&gt;&lt;STRONG&gt;Catalog&lt;/STRONG&gt;&lt;SPAN&gt; in the sidebar to open the Catalog Explorer. This is the primary UI for exploring and managing data, including schemas, tables, models, and other data objects.&lt;/SPAN&gt;&lt;/LI&gt;
&lt;LI style="font-weight: 400;" aria-level="1"&gt;&lt;SPAN&gt;Click the &lt;/SPAN&gt;&lt;STRONG&gt;samples&lt;/STRONG&gt;&lt;SPAN&gt; catalog. This Databricks-managed catalog contains two sample datasets for your exploration: &lt;/SPAN&gt;&lt;STRONG&gt;nyctaxi&lt;/STRONG&gt;&lt;SPAN&gt; and &lt;/SPAN&gt;&lt;STRONG&gt;tpch&lt;/STRONG&gt;&lt;SPAN&gt;.&amp;nbsp;&lt;/SPAN&gt;&lt;/LI&gt;
&lt;LI style="font-weight: 400;" aria-level="1"&gt;&lt;SPAN&gt;Click the &lt;/SPAN&gt;&lt;STRONG&gt;nyctaxi&lt;/STRONG&gt;&lt;SPAN&gt; schema, and then open the &lt;/SPAN&gt;&lt;STRONG&gt;trips&lt;/STRONG&gt;&lt;SPAN&gt; table.&lt;/SPAN&gt;&lt;/LI&gt;
&lt;/OL&gt;
&lt;H3&gt;&lt;STRONG&gt;Step 2: Create a notebook&lt;/STRONG&gt;&lt;/H3&gt;
&lt;OL&gt;
&lt;LI style="font-weight: 400;" aria-level="1"&gt;&lt;SPAN&gt;Use the &lt;/SPAN&gt;&lt;STRONG&gt;Create&lt;/STRONG&gt;&lt;SPAN&gt; button in the top-right to create a notebook with a pre-populated query of the &lt;/SPAN&gt;&lt;STRONG&gt;trips&lt;/STRONG&gt;&lt;SPAN&gt; table. New, blank queries and notebooks can also be created using the &lt;/SPAN&gt;&lt;STRONG&gt;+New &lt;/STRONG&gt;&lt;SPAN&gt;button from the top left of the screen.&amp;nbsp;&lt;/SPAN&gt;&lt;/LI&gt;
&lt;LI style="font-weight: 400;" aria-level="1"&gt;&lt;SPAN&gt;If you created a blank notebook or query, you can query the table you just created using the SQL SELECT statement &lt;/SPAN&gt;&lt;SPAN&gt;SELECT * from &amp;lt;catalog-name&amp;gt;.&amp;lt;schema-name&amp;gt;.&amp;lt;table-name&amp;gt;&lt;/SPAN&gt;&lt;SPAN&gt;. If you choose to run your analysis in a notebook, be sure to change the notebook language to SQL by changing the language selection toggle in the top pane of the notebook.&amp;nbsp;&lt;/SPAN&gt;&lt;/LI&gt;
&lt;LI style="font-weight: 400;" aria-level="1"&gt;&lt;SPAN&gt;Here are some sample commands to try out in Python:&lt;/SPAN&gt;&lt;/LI&gt;
&lt;/OL&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;LI-CODE lang="python"&gt;import pandas as pd

# Read the sample NYC Taxi Trips dataset and load it into a PySpark DataFrame.Convert  PySpark DataFrame to Pandas DataFrame
df = spark.read.table('samples.nyctaxi.trips')
pdf = df.toPandas()

# Select the 10 most expensive and the 10 longest trips based on fare_amount
most_expensive_trips = pdf.nlargest(10,'fare_amount')
longest_trips = pdf.nlargest(10,'trip_distance')&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;H3&gt;&lt;STRONG&gt;Step 3: Use the Databricks Assistant for code suggestions&lt;/STRONG&gt;&lt;/H3&gt;
&lt;OL&gt;
&lt;LI style="font-weight: 400;" aria-level="1"&gt;&lt;SPAN&gt;Notebooks come equipped with the context-aware Databricks Assistant, which can help generate, explain, and fix code using natural language.&lt;/SPAN&gt;&lt;/LI&gt;
&lt;LI style="font-weight: 400;" aria-level="1"&gt;&lt;SPAN&gt;To use the assistant, create a new cell and click &lt;/SPAN&gt;&lt;STRONG&gt;CMD+I &lt;/STRONG&gt;&lt;SPAN&gt;or click the Assistant icon on the top right corner of the new cell.&lt;/SPAN&gt;&lt;/LI&gt;
&lt;LI style="font-weight: 400;" aria-level="1"&gt;&lt;SPAN&gt;Enter a prompt for the Assistant to provide code suggestions. Here are some sample prompts:&lt;/SPAN&gt;&lt;/LI&gt;
&lt;OL&gt;
&lt;LI style="font-weight: 400;" aria-level="2"&gt;&lt;I&gt;&lt;SPAN&gt;What is the most common pickup zip across all trips?&lt;/SPAN&gt;&lt;/I&gt;&lt;/LI&gt;
&lt;LI style="font-weight: 400;" aria-level="2"&gt;&lt;I&gt;&lt;SPAN&gt;What is the minimum, maximum, and average fare amount across all trips?&lt;BR /&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/I&gt;&lt;/LI&gt;
&lt;/OL&gt;
&lt;LI style="font-weight: 400;" aria-level="2"&gt;&lt;SPAN&gt;Press Return or the submit button to submit the prompt and watch the Assistant suggest code to answer the prompt. Click “&lt;/SPAN&gt;&lt;STRONG&gt;Accept&lt;/STRONG&gt;&lt;SPAN&gt;” to save the code suggestion and run the cell to view the results!&lt;/SPAN&gt;&lt;/LI&gt;
&lt;/OL&gt;
&lt;H3&gt;&lt;STRONG&gt;Step 4: Visualize the data&lt;/STRONG&gt;&lt;/H3&gt;
&lt;OL&gt;
&lt;LI style="font-weight: 400;" aria-level="1"&gt;&lt;SPAN&gt;You can visualize the data in your table from the results of the query by clicking the &lt;/SPAN&gt;&lt;STRONG&gt;+&lt;/STRONG&gt;&lt;SPAN&gt; button at the top of the results experience and completing the visualization builder dialog.&lt;/SPAN&gt;&lt;/LI&gt;
&lt;LI style="font-weight: 400;" aria-level="1"&gt;&lt;SPAN&gt;Select your preferred visualization type, and fill out the chart values to prepare the chart.&lt;/SPAN&gt;&lt;/LI&gt;
&lt;/OL&gt;
&lt;H3&gt;&lt;STRONG&gt;Step 5: Share its results with non-Databricks users&lt;/STRONG&gt;&lt;/H3&gt;
&lt;H5&gt;&lt;STRONG&gt;Add users to your Databricks Workspace&lt;/STRONG&gt;&lt;/H5&gt;
&lt;OL&gt;
&lt;LI style="font-weight: 400;" aria-level="1"&gt;&lt;SPAN&gt;In the top bar of the Databricks workspace, click your username and then click Settings.&lt;/SPAN&gt;&lt;/LI&gt;
&lt;LI style="font-weight: 400;" aria-level="1"&gt;&lt;SPAN&gt;In the sidebar, click &lt;/SPAN&gt;&lt;STRONG&gt;Identity and Access&lt;/STRONG&gt;&lt;SPAN&gt;.&lt;/SPAN&gt;&lt;/LI&gt;
&lt;LI style="font-weight: 400;" aria-level="1"&gt;&lt;SPAN&gt;Next to Users, click &lt;/SPAN&gt;&lt;STRONG&gt;Manage&lt;/STRONG&gt;&lt;SPAN&gt;.&lt;/SPAN&gt;&lt;/LI&gt;
&lt;LI style="font-weight: 400;" aria-level="1"&gt;&lt;SPAN&gt;Click &lt;/SPAN&gt;&lt;STRONG&gt;Add user&lt;/STRONG&gt;&lt;SPAN&gt;, and then click &lt;/SPAN&gt;&lt;STRONG&gt;Add new&lt;/STRONG&gt;&lt;SPAN&gt;.&lt;/SPAN&gt;&lt;/LI&gt;
&lt;LI style="font-weight: 400;" aria-level="1"&gt;&lt;SPAN&gt;Enter the user’s email address, and then click &lt;/SPAN&gt;&lt;STRONG&gt;Add&lt;/STRONG&gt;&lt;SPAN&gt;.&lt;/SPAN&gt;&lt;/LI&gt;
&lt;/OL&gt;
&lt;P&gt;&lt;SPAN&gt;Continue to add as many users to your account as you would like. New users receive an email prompting them to set up their account.&lt;/SPAN&gt;&lt;/P&gt;
&lt;H5&gt;&lt;STRONG&gt;Share the notebook with colleagues&lt;/STRONG&gt;&lt;/H5&gt;
&lt;OL&gt;
&lt;LI style="font-weight: 400;" aria-level="1"&gt;&lt;SPAN&gt;To manage access to the notebook, click &lt;/SPAN&gt;&lt;STRONG&gt;Share&lt;/STRONG&gt;&lt;SPAN&gt; at the top of the notebook to open the permissions dialog.&amp;nbsp;&lt;/SPAN&gt;&lt;/LI&gt;
&lt;LI style="font-weight: 400;" aria-level="1"&gt;&lt;SPAN&gt;Share your notebook with any colleague by adding the “All Users” group to the notebook’s access list with “Can View” or “Can Run” permission and sending your colleague the notebook’s URL, which can be copied to your clipboard using the “Copy link” button.&lt;/SPAN&gt;&lt;/LI&gt;
&lt;/OL&gt;
&lt;H2&gt;&lt;STRONG&gt;Next steps&lt;/STRONG&gt;&lt;/H2&gt;
&lt;OL&gt;
&lt;LI style="font-weight: 400;" aria-level="1"&gt;&lt;SPAN&gt;To learn about adding data from CSV files to Unity Catalog and visualize data, see &lt;/SPAN&gt;&lt;A href="https://docs.databricks.com/en/getting-started/import-visualize-data.html" target="_blank" rel="noopener"&gt;&lt;SPAN&gt;Get started: Import and visualize CSV data from a notebook&lt;/SPAN&gt;&lt;/A&gt;&lt;SPAN&gt;.&lt;/SPAN&gt;&lt;/LI&gt;
&lt;LI style="font-weight: 400;" aria-level="1"&gt;&lt;SPAN&gt;To learn how to load data into Databricks using Apache Spark, see &lt;/SPAN&gt;&lt;A href="https://docs.databricks.com/en/getting-started/dataframes.html" target="_blank" rel="noopener"&gt;&lt;SPAN&gt;Tutorial: Load and transform data using Apache Spark DataFrames&lt;/SPAN&gt;&lt;/A&gt;&lt;SPAN&gt;.&lt;/SPAN&gt;&lt;/LI&gt;
&lt;LI style="font-weight: 400;" aria-level="1"&gt;&lt;SPAN&gt;To learn more about ingesting data into Databricks, see &lt;/SPAN&gt;&lt;A href="https://docs.databricks.com/en/ingestion/index.html" target="_blank" rel="noopener"&gt;&lt;SPAN&gt;Ingest data into a Databricks lakehouse&lt;/SPAN&gt;&lt;/A&gt;&lt;SPAN&gt;.&lt;/SPAN&gt;&lt;/LI&gt;
&lt;LI style="font-weight: 400;" aria-level="1"&gt;&lt;SPAN&gt;To learn more about querying data with Databricks, see &lt;/SPAN&gt;&lt;A href="https://docs.databricks.com/en/query/index.html" target="_blank" rel="noopener"&gt;&lt;SPAN&gt;Query data&lt;/SPAN&gt;&lt;/A&gt;&lt;SPAN&gt;.&lt;/SPAN&gt;&lt;/LI&gt;
&lt;LI style="font-weight: 400;" aria-level="1"&gt;&lt;SPAN&gt;To learn more about visualizations, see &lt;/SPAN&gt;&lt;A href="https://docs.databricks.com/en/visualizations/index.html" target="_blank" rel="noopener"&gt;&lt;SPAN&gt;Visualizations in Databricks notebooks&lt;/SPAN&gt;&lt;/A&gt;&lt;SPAN&gt;.&lt;/SPAN&gt;&lt;/LI&gt;
&lt;/OL&gt;</description>
    <pubDate>Mon, 26 Aug 2024 16:53:19 GMT</pubDate>
    <dc:creator>DatabricksGuide</dc:creator>
    <dc:date>2024-08-26T16:53:19Z</dc:date>
    <item>
      <title>Get started with an exploratory analysis on Databricks using Sample Data</title>
      <link>https://community.databricks.com/t5/get-started-guides/get-started-with-an-exploratory-analysis-on-databricks-using/ta-p/79482</link>
      <description>&lt;H1&gt;&lt;STRONG&gt;Getting started with Databricks - Exploratory analysis&lt;/STRONG&gt;&lt;/H1&gt;
&lt;P&gt;&lt;SPAN&gt;This guide walks you through using a Databricks notebook to query sample data stored in Unity Catalog using Python and then visualize the query results in the notebook.&lt;/SPAN&gt;&lt;SPAN&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;SPAN&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;SPAN&gt;This is a beginner’s tutorial with hands-on instructions to execute in your own Databricks workspace. &lt;/SPAN&gt;&lt;A href="https://www.databricks.com/try-databricks#account" target="_blank" rel="noopener"&gt;&lt;SPAN&gt;You can request a free 14-day trial.&amp;nbsp;&lt;/SPAN&gt;&lt;/A&gt;&lt;/P&gt;
&lt;H3&gt;&lt;STRONG&gt;Step 1: Access sample data&lt;/STRONG&gt;&lt;/H3&gt;
&lt;OL&gt;
&lt;LI style="font-weight: 400;" aria-level="1"&gt;&lt;SPAN&gt;Click &lt;/SPAN&gt;&lt;STRONG&gt;Catalog&lt;/STRONG&gt;&lt;SPAN&gt; in the sidebar to open the Catalog Explorer. This is the primary UI for exploring and managing data, including schemas, tables, models, and other data objects.&lt;/SPAN&gt;&lt;/LI&gt;
&lt;LI style="font-weight: 400;" aria-level="1"&gt;&lt;SPAN&gt;Click the &lt;/SPAN&gt;&lt;STRONG&gt;samples&lt;/STRONG&gt;&lt;SPAN&gt; catalog. This Databricks-managed catalog contains two sample datasets for your exploration: &lt;/SPAN&gt;&lt;STRONG&gt;nyctaxi&lt;/STRONG&gt;&lt;SPAN&gt; and &lt;/SPAN&gt;&lt;STRONG&gt;tpch&lt;/STRONG&gt;&lt;SPAN&gt;.&amp;nbsp;&lt;/SPAN&gt;&lt;/LI&gt;
&lt;LI style="font-weight: 400;" aria-level="1"&gt;&lt;SPAN&gt;Click the &lt;/SPAN&gt;&lt;STRONG&gt;nyctaxi&lt;/STRONG&gt;&lt;SPAN&gt; schema, and then open the &lt;/SPAN&gt;&lt;STRONG&gt;trips&lt;/STRONG&gt;&lt;SPAN&gt; table.&lt;/SPAN&gt;&lt;/LI&gt;
&lt;/OL&gt;
&lt;H3&gt;&lt;STRONG&gt;Step 2: Create a notebook&lt;/STRONG&gt;&lt;/H3&gt;
&lt;OL&gt;
&lt;LI style="font-weight: 400;" aria-level="1"&gt;&lt;SPAN&gt;Use the &lt;/SPAN&gt;&lt;STRONG&gt;Create&lt;/STRONG&gt;&lt;SPAN&gt; button in the top-right to create a notebook with a pre-populated query of the &lt;/SPAN&gt;&lt;STRONG&gt;trips&lt;/STRONG&gt;&lt;SPAN&gt; table. New, blank queries and notebooks can also be created using the &lt;/SPAN&gt;&lt;STRONG&gt;+New &lt;/STRONG&gt;&lt;SPAN&gt;button from the top left of the screen.&amp;nbsp;&lt;/SPAN&gt;&lt;/LI&gt;
&lt;LI style="font-weight: 400;" aria-level="1"&gt;&lt;SPAN&gt;If you created a blank notebook or query, you can query the table you just created using the SQL SELECT statement &lt;/SPAN&gt;&lt;SPAN&gt;SELECT * from &amp;lt;catalog-name&amp;gt;.&amp;lt;schema-name&amp;gt;.&amp;lt;table-name&amp;gt;&lt;/SPAN&gt;&lt;SPAN&gt;. If you choose to run your analysis in a notebook, be sure to change the notebook language to SQL by changing the language selection toggle in the top pane of the notebook.&amp;nbsp;&lt;/SPAN&gt;&lt;/LI&gt;
&lt;LI style="font-weight: 400;" aria-level="1"&gt;&lt;SPAN&gt;Here are some sample commands to try out in Python:&lt;/SPAN&gt;&lt;/LI&gt;
&lt;/OL&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;LI-CODE lang="python"&gt;import pandas as pd

# Read the sample NYC Taxi Trips dataset and load it into a PySpark DataFrame.Convert  PySpark DataFrame to Pandas DataFrame
df = spark.read.table('samples.nyctaxi.trips')
pdf = df.toPandas()

# Select the 10 most expensive and the 10 longest trips based on fare_amount
most_expensive_trips = pdf.nlargest(10,'fare_amount')
longest_trips = pdf.nlargest(10,'trip_distance')&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;H3&gt;&lt;STRONG&gt;Step 3: Use the Databricks Assistant for code suggestions&lt;/STRONG&gt;&lt;/H3&gt;
&lt;OL&gt;
&lt;LI style="font-weight: 400;" aria-level="1"&gt;&lt;SPAN&gt;Notebooks come equipped with the context-aware Databricks Assistant, which can help generate, explain, and fix code using natural language.&lt;/SPAN&gt;&lt;/LI&gt;
&lt;LI style="font-weight: 400;" aria-level="1"&gt;&lt;SPAN&gt;To use the assistant, create a new cell and click &lt;/SPAN&gt;&lt;STRONG&gt;CMD+I &lt;/STRONG&gt;&lt;SPAN&gt;or click the Assistant icon on the top right corner of the new cell.&lt;/SPAN&gt;&lt;/LI&gt;
&lt;LI style="font-weight: 400;" aria-level="1"&gt;&lt;SPAN&gt;Enter a prompt for the Assistant to provide code suggestions. Here are some sample prompts:&lt;/SPAN&gt;&lt;/LI&gt;
&lt;OL&gt;
&lt;LI style="font-weight: 400;" aria-level="2"&gt;&lt;I&gt;&lt;SPAN&gt;What is the most common pickup zip across all trips?&lt;/SPAN&gt;&lt;/I&gt;&lt;/LI&gt;
&lt;LI style="font-weight: 400;" aria-level="2"&gt;&lt;I&gt;&lt;SPAN&gt;What is the minimum, maximum, and average fare amount across all trips?&lt;BR /&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/I&gt;&lt;/LI&gt;
&lt;/OL&gt;
&lt;LI style="font-weight: 400;" aria-level="2"&gt;&lt;SPAN&gt;Press Return or the submit button to submit the prompt and watch the Assistant suggest code to answer the prompt. Click “&lt;/SPAN&gt;&lt;STRONG&gt;Accept&lt;/STRONG&gt;&lt;SPAN&gt;” to save the code suggestion and run the cell to view the results!&lt;/SPAN&gt;&lt;/LI&gt;
&lt;/OL&gt;
&lt;H3&gt;&lt;STRONG&gt;Step 4: Visualize the data&lt;/STRONG&gt;&lt;/H3&gt;
&lt;OL&gt;
&lt;LI style="font-weight: 400;" aria-level="1"&gt;&lt;SPAN&gt;You can visualize the data in your table from the results of the query by clicking the &lt;/SPAN&gt;&lt;STRONG&gt;+&lt;/STRONG&gt;&lt;SPAN&gt; button at the top of the results experience and completing the visualization builder dialog.&lt;/SPAN&gt;&lt;/LI&gt;
&lt;LI style="font-weight: 400;" aria-level="1"&gt;&lt;SPAN&gt;Select your preferred visualization type, and fill out the chart values to prepare the chart.&lt;/SPAN&gt;&lt;/LI&gt;
&lt;/OL&gt;
&lt;H3&gt;&lt;STRONG&gt;Step 5: Share its results with non-Databricks users&lt;/STRONG&gt;&lt;/H3&gt;
&lt;H5&gt;&lt;STRONG&gt;Add users to your Databricks Workspace&lt;/STRONG&gt;&lt;/H5&gt;
&lt;OL&gt;
&lt;LI style="font-weight: 400;" aria-level="1"&gt;&lt;SPAN&gt;In the top bar of the Databricks workspace, click your username and then click Settings.&lt;/SPAN&gt;&lt;/LI&gt;
&lt;LI style="font-weight: 400;" aria-level="1"&gt;&lt;SPAN&gt;In the sidebar, click &lt;/SPAN&gt;&lt;STRONG&gt;Identity and Access&lt;/STRONG&gt;&lt;SPAN&gt;.&lt;/SPAN&gt;&lt;/LI&gt;
&lt;LI style="font-weight: 400;" aria-level="1"&gt;&lt;SPAN&gt;Next to Users, click &lt;/SPAN&gt;&lt;STRONG&gt;Manage&lt;/STRONG&gt;&lt;SPAN&gt;.&lt;/SPAN&gt;&lt;/LI&gt;
&lt;LI style="font-weight: 400;" aria-level="1"&gt;&lt;SPAN&gt;Click &lt;/SPAN&gt;&lt;STRONG&gt;Add user&lt;/STRONG&gt;&lt;SPAN&gt;, and then click &lt;/SPAN&gt;&lt;STRONG&gt;Add new&lt;/STRONG&gt;&lt;SPAN&gt;.&lt;/SPAN&gt;&lt;/LI&gt;
&lt;LI style="font-weight: 400;" aria-level="1"&gt;&lt;SPAN&gt;Enter the user’s email address, and then click &lt;/SPAN&gt;&lt;STRONG&gt;Add&lt;/STRONG&gt;&lt;SPAN&gt;.&lt;/SPAN&gt;&lt;/LI&gt;
&lt;/OL&gt;
&lt;P&gt;&lt;SPAN&gt;Continue to add as many users to your account as you would like. New users receive an email prompting them to set up their account.&lt;/SPAN&gt;&lt;/P&gt;
&lt;H5&gt;&lt;STRONG&gt;Share the notebook with colleagues&lt;/STRONG&gt;&lt;/H5&gt;
&lt;OL&gt;
&lt;LI style="font-weight: 400;" aria-level="1"&gt;&lt;SPAN&gt;To manage access to the notebook, click &lt;/SPAN&gt;&lt;STRONG&gt;Share&lt;/STRONG&gt;&lt;SPAN&gt; at the top of the notebook to open the permissions dialog.&amp;nbsp;&lt;/SPAN&gt;&lt;/LI&gt;
&lt;LI style="font-weight: 400;" aria-level="1"&gt;&lt;SPAN&gt;Share your notebook with any colleague by adding the “All Users” group to the notebook’s access list with “Can View” or “Can Run” permission and sending your colleague the notebook’s URL, which can be copied to your clipboard using the “Copy link” button.&lt;/SPAN&gt;&lt;/LI&gt;
&lt;/OL&gt;
&lt;H2&gt;&lt;STRONG&gt;Next steps&lt;/STRONG&gt;&lt;/H2&gt;
&lt;OL&gt;
&lt;LI style="font-weight: 400;" aria-level="1"&gt;&lt;SPAN&gt;To learn about adding data from CSV files to Unity Catalog and visualize data, see &lt;/SPAN&gt;&lt;A href="https://docs.databricks.com/en/getting-started/import-visualize-data.html" target="_blank" rel="noopener"&gt;&lt;SPAN&gt;Get started: Import and visualize CSV data from a notebook&lt;/SPAN&gt;&lt;/A&gt;&lt;SPAN&gt;.&lt;/SPAN&gt;&lt;/LI&gt;
&lt;LI style="font-weight: 400;" aria-level="1"&gt;&lt;SPAN&gt;To learn how to load data into Databricks using Apache Spark, see &lt;/SPAN&gt;&lt;A href="https://docs.databricks.com/en/getting-started/dataframes.html" target="_blank" rel="noopener"&gt;&lt;SPAN&gt;Tutorial: Load and transform data using Apache Spark DataFrames&lt;/SPAN&gt;&lt;/A&gt;&lt;SPAN&gt;.&lt;/SPAN&gt;&lt;/LI&gt;
&lt;LI style="font-weight: 400;" aria-level="1"&gt;&lt;SPAN&gt;To learn more about ingesting data into Databricks, see &lt;/SPAN&gt;&lt;A href="https://docs.databricks.com/en/ingestion/index.html" target="_blank" rel="noopener"&gt;&lt;SPAN&gt;Ingest data into a Databricks lakehouse&lt;/SPAN&gt;&lt;/A&gt;&lt;SPAN&gt;.&lt;/SPAN&gt;&lt;/LI&gt;
&lt;LI style="font-weight: 400;" aria-level="1"&gt;&lt;SPAN&gt;To learn more about querying data with Databricks, see &lt;/SPAN&gt;&lt;A href="https://docs.databricks.com/en/query/index.html" target="_blank" rel="noopener"&gt;&lt;SPAN&gt;Query data&lt;/SPAN&gt;&lt;/A&gt;&lt;SPAN&gt;.&lt;/SPAN&gt;&lt;/LI&gt;
&lt;LI style="font-weight: 400;" aria-level="1"&gt;&lt;SPAN&gt;To learn more about visualizations, see &lt;/SPAN&gt;&lt;A href="https://docs.databricks.com/en/visualizations/index.html" target="_blank" rel="noopener"&gt;&lt;SPAN&gt;Visualizations in Databricks notebooks&lt;/SPAN&gt;&lt;/A&gt;&lt;SPAN&gt;.&lt;/SPAN&gt;&lt;/LI&gt;
&lt;/OL&gt;</description>
      <pubDate>Mon, 26 Aug 2024 16:53:19 GMT</pubDate>
      <guid>https://community.databricks.com/t5/get-started-guides/get-started-with-an-exploratory-analysis-on-databricks-using/ta-p/79482</guid>
      <dc:creator>DatabricksGuide</dc:creator>
      <dc:date>2024-08-26T16:53:19Z</dc:date>
    </item>
  </channel>
</rss>

