Adding a column in pandas df using a function

In general, you can use the apply function. If your function requires only one column, you can use: df[‘price’] = df[‘Symbol’].apply(getquotetoday) as @EdChum suggested. If your function requires multiple columns, you can use something like: df[‘new_column_name’] = df.apply(lambda x: my_function(x[‘value_1’], x[‘value_2’]), axis=1)

Taking contact list from hotmail gmail yahoo in java? [closed]

Each of these email providers has its own API: GMail: Google Contacts Data API – Google Contacts API version 3.0 Yahoo! Mail: Yahoo! Address Book API – Developer’s Guide Hotmail: Windows Live Contacts API Beta – API Reference There are usually Java samples that you can use to start your work. I’ve been using Google … Read more