Spaces:
Sleeping
Sleeping
File size: 386 Bytes
9ea509f 5d4e526 9ea509f d2e5feb 9ea509f e09875d |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 |
import streamlit as st
import pandas as pd
import matplotlib.pyplot as plt
MYDIR = '/Users/rwcuffney/Documents/NorthWestern_University/Machine_Learning/Module7_Assingment/'
x = st.slider('Select a value')
st.write(x, 'squared is', x * x)
from datasets import load_dataset
dataset = load_dataset("rwcuffney/autotrain-data-pick_a_card")
st.write(type(dataset))
st.write('Hello World') |