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
Monday, September 17, 2018
5 available pane layouts when using tmuxp
tmuxp pane layout options:
1. even-horizontal
2. even-vertical
3. main-horizontal
4. main-vertical
5. tiled
Thursday, July 12, 2018
Add multiple columns to Pandas dataframe by applying a function that returns multiple values
df[['sum', 'difference']] = df.apply(
lambda row: pd.Series(myfunc(row['a'], row['b'])), axis=1)
# The pd.Series is the key!
Friday, June 8, 2018
Bash | Print confirmation before exit
command 1
command 2
.
.
.
[ $? -eq '0' ] && echo "Job done!"
exit $?
command 2
.
.
.
[ $? -eq '0' ] && echo "Job done!"
exit $?
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...
-
It took me a while to figure out how to insert a space in Mathtype equations. This is especially useful when you write an equation with mult...
-
In this post, I am trying to solve the problem given in the comments of one of the old post. Here's the problem, if I understand it co...
-
Recently I got a very long column of data and it contains lots of NaN. I found the finite function very useful to help me remove all the NaN...