> ## Documentation Index
> Fetch the complete documentation index at: https://confidence.spotify.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Explore Experiment Results

> Learn how to create explorations to drill down into experiment results.

export const HowToSchema = ({name, description, steps = []}) => {
  const schema = {
    "@context": "https://schema.org",
    "@type": "HowTo",
    name,
    description
  };
  if (steps.length > 0) {
    schema.step = steps.map((s, i) => ({
      "@type": "HowToStep",
      position: i + 1,
      name: typeof s === "string" ? s : s.name,
      text: typeof s === "string" ? s : s.text || s.name
    }));
  }
  return <script type="application/ld+json" dangerouslySetInnerHTML={{
    __html: JSON.stringify(schema)
  }} />;
};

<HowToSchema
  name="Explore Experiment Results"
  description="Learn how to create explorations to drill down into experiment results."
  steps={[
{
  name: "Navigate to the experiment",
  text: "After your experiment starts to produce exposure, open the experiment and select the Result tab.",
},
{
  name: "Create a new exploration",
  text: "Click the + button next to the Explorations heading in the right sidebar.",
},
{
  name: "Enter a name",
  text: "In the Create exploratory analysis dialog, enter a name for your exploration and click Create.",
},
{
  name: "Open the metric selection dialog",
  text: "Click Add metric to open the metric selection dialog.",
},
{
  name: "Select metrics",
  text: "Use the checkboxes to select the metrics you want. You can select any metric that uses the same entity configured in the metric configuration section for your experiment.",
},
{
  name: "Add the metrics",
  text: "Click Add metrics to add the selected metrics to your exploration.",
},
{
  name: "Trigger calculations",
  text: "Click Retrigger to start the calculations for your selected metrics.",
},
{
  name: "Select dimensions for each metric",
  text: "For each metric, you can add dimensions (if any exist). Dimensions come from the fact table that the metric uses and dimension tables that use the same entity as the metric.",
},
{
  name: "Open the exploration",
  text: "Click the exploration in the Explorations sidebar section.",
},
{
  name: "Delete the exploration",
  text: "Click the Delete button and confirm the deletion.",
},
]}
/>

[Explorations](../experiments/exploration) let you analyze experiment results with additional metrics and dimensions for exploratory purposes.

<Note>
  An experiment needs to have produced exposure for an exploration to be possible.
</Note>

## Create an Exploration

<Steps>
  <Step title="Navigate to the experiment">
    After your experiment starts to produce exposure, open the experiment and select the **Result** tab.
  </Step>

  <Step title="Create a new exploration">
    Click the **+** button next to the **Explorations** heading in the right sidebar.
  </Step>

  <Step title="Enter a name">
    In the **Create exploratory analysis** dialog, enter a name for your exploration and click **Create**.
  </Step>
</Steps>

## Add Metrics

<Steps>
  <Step title="Open the metric selection dialog">
    Click **Add metric** to open the metric selection dialog.
  </Step>

  <Step title="Select metrics">
    Use the checkboxes to select the metrics you want. You can select any metric that uses the same entity configured in the metric configuration section for your experiment.
  </Step>

  <Step title="Add the metrics">
    Click **Add metrics** to add the selected metrics to your exploration.
  </Step>

  <Step title="Trigger calculations">
    Click **Retrigger** to start the calculations for your selected metrics.
  </Step>
</Steps>

## Add Dimensions

<Steps>
  <Step title="Select dimensions for each metric">
    For each metric, you can add dimensions (if any exist). Dimensions come from the fact table that the metric uses and dimension tables that use the same entity as the metric.
  </Step>
</Steps>

## Write a Conclusion

After you have seen the results, you should write a conclusion detailing what you learned from this analysis.
The conclusion is important for posterity, and to help others understand what the outcome of
running the analysis was.
A good conclusion states the reason for running the analysis, the interpretation of the results,
and if you took any action based on it.

## Delete an Exploration

<Steps>
  <Step title="Open the exploration">
    Click the exploration in the **Explorations** sidebar section.
  </Step>

  <Step title="Delete the exploration">
    Click the **Delete** button and confirm the deletion.
  </Step>
</Steps>

<Tip>
  Do not delete an Exploration because results are not significant! Understanding
  that there was no effect is as important as finding an interesting effect.
  There is also a good chance that someone has the same great idea as you
  ‐ keeping your analysis around is likely to reduce duplicate efforts in
  your organization.
</Tip>

## Related Resources

<CardGroup cols={2}>
  <Card title="Exploration Reference" href="/docs/experiments/exploration">
    Deep dive into exploration features
  </Card>

  <Card title="Create Dimension Tables" href="/docs/how-to-guides/create-dimension-table">
    Add dimensions for segmentation
  </Card>

  <Card title="Analyze Results" href="/docs/experiments/analyze-results">
    Learn about result analysis
  </Card>
</CardGroup>
