Develop your chatbot in the chat.py
file. The API section below explains the chatbot functions you can use to interact with the user.
If you need a cheat sheet for Python syntax, you can use one of these:
Develop your chatbot in the chat.py
file. The API section below explains the chatbot functions you can use to interact with the user.
If you need a cheat sheet for Python syntax, you can use one of these:
A big moving company gets so many applications that it has started using an automated algorithm to decide who to hire. You have been called in as an independent consultant to determine if the hiring algorithm is biased against women. The algorithm is proprietary so you cannot access its source code. Instead, you will learn how to perform an algorithmic audit to measure potential biases.
In this activity, you will edit the influence.py
module.
Each applicant's data is stored as a list with five elements. Each element is a string representing a different attribute:
class SampleMain { | |
/* | |
* INSTRUCTIONS | |
* Compile: javac SampleMain.java | |
* Run: java SampleMain x1 y1 x2 y2 | |
* Output: Coordinates of the midpoint like so: | |
* >> x: 3, y: 4 | |
*/ | |
/* | |
* Copyright (c) 1997, 2013, Oracle and/or its affiliates. All rights reserved. | |
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. | |
* | |
* This code is free software; you can redistribute it and/or modify it | |
* under the terms of the GNU General Public License version 2 only, as | |
* published by the Free Software Foundation. Oracle designates this | |
* particular file as subject to the "Classpath" exception as provided | |
* by Oracle in the LICENSE file that accompanied this code. | |
* |
# Round 1: Create a pie chart of recent actions taken on pothole requests from October 2017. | |
SELECT most_recent_action, COUNT(*) AS total | |
WHERE most_recent_action != 'undefined' | |
AND creation_date >= '2017-10-01' | |
AND creation_date <= '2017-11-01' | |
GROUP BY most_recent_action | |
ORDER BY total DESC | |
# Round 2: Create a line chart of the number of potholes filled by creation date in October 2017. |
You will work with Strings in Java frequently! Here is a quick overview of some of the helpful methods you can use on String objects. There are many more and you can read about them in the docs for the String class. The docs may seem intimidating, but you have learned enough to understand and take advantage of them!
To check if two Strings are equal in Java, you should use the .equals()
method. To learn why comparing Strings with ==
is perilous, check out this phenomenal StackOverflow post.
String[] innerPlanets = {"Mercury", "Venus", "Earth", "Mars"};
boolean isVenus1 = innerPlanets[1].equals("Venus");
boolean isVenus2 = innerPlanets[1].equals("venus");
id,name,price,onSale,color,material,condition,occasion,brand,manufacturer,hasHeels,countryOfOrigin | |
0,1,2,3,4,5,6,7,8,9,10,11 | |
AVpe__eOilAPnD_xSt-H,Handcrafted Alpaca Blend 'Purple Charisma' Sweater (Peru),62.99,false,Purple,,,,Novica,,false, | |
AVpe__JXilAPnD_xSt3F,Pedi Couture Women's Blue Snake Pedicure Spa Toe Separator Sandal Flip Flops (m),30,false,,Foam,,,Pedi Couture,Pedi Couture,false, | |
AVpe_0mrilAPnD_xSqI7,Anne Klein Sport Perfered Women Us 9.5 Nude Wedge Heel,100,false,,Leather,,,ANNE KLEIN SPORT,,true, | |
AVpe_0ob1cnluZ0-bnWr,"Sof Comfort Women's Everyday Gel Insoles, 2-pair",10,false,"Multicolor,MULTI",,,,BEAUTIFEET,,false, | |
AVpe_0PU1cnluZ0-bnM4,"Sneed- Women's/kids' Dance Shoes Latin Leatherette/paillette Flat Heel Blue/pink/silver/gold, Blue-us1 / Eu32 / Uk13 Little Kids , Blue-us1 / Eu32 / Uk13 Little Kids",70,false,,,,,,SNEED,false, | |
AVpe_-0YilAPnD_xStvJ,Marc Fisher Fawna Women Cap Toe Leather Oxford,89,false,,Leather,,,Marc Fisher,Marc Fisher,true, | |
AVpe_19KilAPnD_xSqnY,Caparros Karissa Open Toe Can |
id,name,price,onSale,color,material,condition,occasion,brand,manufacturer,hasHeels,countryOfOrigin | |
AVpe__eOilAPnD_xSt-H,Handcrafted Alpaca Blend 'Purple Charisma' Sweater (Peru),62.99,false,Purple,,,,Novica,,false, | |
AVpe__JXilAPnD_xSt3F,Pedi Couture Women's Blue Snake Pedicure Spa Toe Separator Sandal Flip Flops (m),30,false,,Foam,,,Pedi Couture,Pedi Couture,false, | |
AVpe_0mrilAPnD_xSqI7,Anne Klein Sport Perfered Women Us 9.5 Nude Wedge Heel,100,false,,Leather,,,ANNE KLEIN SPORT,,true, | |
AVpe_0ob1cnluZ0-bnWr,"Sof Comfort Women's Everyday Gel Insoles, 2-pair",10,false,"Multicolor,MULTI",,,,BEAUTIFEET,,false, | |
AVpe_0PU1cnluZ0-bnM4,"Sneed- Women's/kids' Dance Shoes Latin Leatherette/paillette Flat Heel Blue/pink/silver/gold, Blue-us1 / Eu32 / Uk13 Little Kids , Blue-us1 / Eu32 / Uk13 Little Kids",70,false,,,,,,SNEED,false, | |
AVpe_-0YilAPnD_xStvJ,Marc Fisher Fawna Women Cap Toe Leather Oxford,89,false,,Leather,,,Marc Fisher,Marc Fisher,true, | |
AVpe_19KilAPnD_xSqnY,Caparros Karissa Open Toe Canvas Sandals,79,false,Silv |