Consultancy

It is our mission to help organisations in order to enhance the democratic and unbiased use of computer algorithms.

span.wp-svg-smile.smile{
font-size:100px;
}
span.wp-svg-rocket.rocket{
font-size:100px;
}
span.wp-svg-bubbles.bubbles{
font-size:100px;
}
.newcolumns {
border:1.25px solid #fff;
min-height:200px;
padding-top:20px !important;
}

We can setup a project together with the use of artificial intelligence, machine learning, big data, data science and Python.

# 4. What was the minimum, maximum and mean fare for traveling in Titanic?
print("The min fare is:", min(new_data["Fare"]))
print("The max fare is:", max(new_data["Fare"]))
# Another way to get the same results: 
print("The min fare is:", new_data["Fare"].min())
print("The min fare is:", new_data["Fare"].max())
print("The mean fare is:", new_data["Fare"].mean())
Output[5]
The min fare is: 0.0
The max fare is: 512.3292
The min fare is: 0.0
The min fare is: 512.3292
The mean fare is: 34.56725140449432

Just some text here.