-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathHello.py
More file actions
64 lines (48 loc) · 2.34 KB
/
Hello.py
File metadata and controls
64 lines (48 loc) · 2.34 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
import streamlit as st
st.set_page_config(
page_title="Hello",
page_icon="👋",
)
st.markdown(
'''
[](https://postimg.cc/PvTNvHGn)
'''
)
st.write("# Welcome to VideoGame Data Analysis 👋")
st.sidebar.success("Select a App from above ☝🏽.")
st.markdown(
"""
### About this project :-
**This is a project where I have tried to analyse the video game data from**[Metacritic](https://www.metacritic.com/browse/games/score/metascore/all/all/filtered?sort=desc).
**👈 Select a App from the sidebar** to explore my findings
of EDA and some graphs!
### Techstack used :-
[](https://git.io/typing-svg)
- Check out [streamlit.io](https://streamlit.io) for Web Apps
- Check out [pandas.pydata.org](https://pandas.pydata.org) for Data Analysis
- Check out [numpy.org](https://numpy.org) for Mathematical Computing
- Check out [matplotlib.org](https://matplotlib.org) and [seaborn.pydata.org](https://seaborn.pydata.org) for Data Visualization
- Check out [scikit-learn.org](https://scikit-learn.org) for Machine Learning
### Github Repo :-
- [VideoGame Analysis](https://github.com/Pin4sf/Video-Game-Analysis-VGA)
"""
)
st.markdown(
"""
<div align="center">
<h4>Made with ❤️ by Pin4sf<h4>
</div>
""", unsafe_allow_html=True,)
st.markdown(
"""
<div align="center">
<h5>follow me on</h5>
<a href="https://www.linkedin.com/in/shivansh-fulper-463968223/" target="_blank">
<img src="https://raw.githubusercontent.com/maurodesouza/profile-readme-generator/master/src/assets/icons/social/linkedin/default.svg" width="51" height="28" alt="linkedin logo" />
</a>
<a href="https://twitter.com/FulperShivansh" target="_blank">
<img src="https://raw.githubusercontent.com/maurodesouza/profile-readme-generator/master/src/assets/icons/social/twitter/default.svg" width="51" height="28" alt="twitter logo" />
</a>
</div>
"""
, unsafe_allow_html=True,)