The sqlite3 query returns a list of tuples. Here's a good way to convert the list of tuples into a pandas data frame.
def q():
sql_c = " some query commands here"
df = pd.DataFrame(dbc.execute(sql_c).fetchall())
# get all column names
cns = [d[0] for d in dbc.description]
df.columns = cns
return df
MATLAB applications, tutorials, examples, tricks, resources,...and a little bit of everything I learned ...
Tuesday, October 30, 2018
Saturday, October 27, 2018
DataFrame create multiple new columns by applying a function that returns multiple
df[['sum', 'difference']] = df.apply(
lambda row: add_subtract_list(row['a'], row['b']), axis=1)
Tuesday, October 9, 2018
Subscribe to:
Posts (Atom)
my-alpine and docker-compose.yml
``` version: '1' services: man: build: . image: my-alpine:latest ``` Dockerfile: ``` FROM alpine:latest ENV PYTH...