Skip to content

Commit

Permalink
Add files via upload
Browse files Browse the repository at this point in the history
  • Loading branch information
Mithun162001 authored Jan 14, 2022
1 parent 4cabb28 commit 5f61346
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions Streamlit/app4.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
# CREATING AND DISPLAYING GRAPHS
import numpy as np
import pandas as pd
import seaborn as sns
import matplotlib.pyplot as plt
import plotly.express as px
import streamlit as st

df = pd.read_csv("C:\\Users\\mithun\\Downloads\\breast-cancer_csv.csv")

plt.figure(figsize=(1,1))
graph1 = sns.displot(df['Class'])
st.pyplot(graph1)

graph2 = px.line(df,x='tumor-size',y='age')
st.plotly_chart(graph2)

0 comments on commit 5f61346

Please sign in to comment.