No of SAMPLE Programs
Would you like to make this site your homepage? It's fast and easy...
Yes, Please make this my home page!
import matplotlib.pyplot as plt
import numpy as np
import AIANN as ann
import pandas as pd
df=pd.read_csv("dataset1.csv",usecols=[0,1,2,3,4,5,6,7,8])
print(df.head())
print(df.std())
print(np.random.random(20))
def main():
ai1=ann.AI
ai1.ai()
sinx()
#/////////////////////////////////
def sinx():
x=np.linspace(-10,10,330)
plt.plot(x,np.sin(x))
plt.show()
#//////////////////////////////////////
if __name__=="__main__":
main()
##### This is the AINN.py which imported above
class AI:
def ai():
print("AI calling from external Modules")
class Dubai:
a="Dubaih"
class Sharjh:
b="Sharjh"
class Plotting:
def sinx(x):
a="sinx(x)"