awacke1 commited on
Commit
350aaf7
โ€ข
1 Parent(s): 268b951

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +36 -2
README.md CHANGED
@@ -1,5 +1,5 @@
1
  ---
2
- title: Dice-Roll-Treemap-Plotly
3
  emoji: ๐Ÿ“ˆ
4
  colorFrom: green
5
  colorTo: indigo
@@ -10,4 +10,38 @@ pinned: false
10
  license: mit
11
  ---
12
 
13
- Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  ---
2
+ title: Plotly-Graph-Objects-Treemap-101
3
  emoji: ๐Ÿ“ˆ
4
  colorFrom: green
5
  colorTo: indigo
 
10
  license: mit
11
  ---
12
 
13
+ ๐Ÿ“Š Randomized Treemap Graphs for Demonstrating Data Variation ๐Ÿ“ˆ
14
+
15
+ ๐Ÿ” Overview
16
+ - Introduction - Purpose - Data Visualization
17
+
18
+ ๐Ÿงฎ Methodology
19
+ - Statistical Analysis - Random Sampling - Treemap Graphs
20
+
21
+ ๐Ÿš€ Implementation - Rendering Charts with Streamlit - Example Code
22
+
23
+ ๐Ÿ‘‹ Conclusion - Summary - Use Cases - Fun Facts
24
+
25
+ ๐Ÿ” Overview ๐Ÿ‘‹ Hello! In this article, we will learn about Randomized Treemap Graphs for Demonstrating Data Variation! ๐Ÿ“Š๐Ÿ“ˆ
26
+
27
+ ๐Ÿงฎ Methodology:
28
+ 1. ๐Ÿ“ˆ Statistical Analysis: We'll use statistical analysis to demonstrate variation in data.
29
+ 2. ๐ŸŽฒ Random Sampling: We'll generate random data to create our treemap graphs.
30
+ 3. ๐ŸŒณ Treemap Graphs: We'll use treemap graphs to display our data in a visually engaging way.
31
+
32
+ ๐Ÿš€ Implementation
33
+ 1. ๐Ÿ“Š Rendering Charts with Streamlit: We'll use Streamlit to render our treemap graphs.
34
+ 2. ๐Ÿ‘€ Example Code: Here's an example code snippet to get you started!
35
+
36
+ ```
37
+ import plotly.express as px
38
+ import streamlit as st
39
+
40
+ # Generate random data
41
+ data = px.data.tips()
42
+ fig = px.treemap(data, path=['day', 'time', 'value'], values='total_count')
43
+
44
+ # Render chart with Streamlit
45
+ st.plotly_chart(fig)
46
+
47
+ ```