I hereby claim:
- I am has2k1 on github.
- I am has2k1 (https://keybase.io/has2k1) on keybase.
- I have a public key whose fingerprint is 627C 61BD CA3F 3F1C CDC4 A099 BF6C 6B75 366D BE25
To claim this, I am signing this object:
<!-- package.module.some_function --> | |
<!-- | |
The docstring for some_function, the type information may come | |
from type annotations. | |
""" | |
Title of Some Function | |
Some more description of some function |
import pandas as pd | |
from plotnine import * | |
df = pd.DataFrame({'x': range(5), 'y': range(5), 'z': list('ccddf')}) | |
df['z'] = pd.Categorical(df['z'], categories=list('cdf'), ordered=True) | |
p = (ggplot(df, aes('x', 'y', color='z')) | |
+ geom_point() | |
) | |
p |
I hereby claim:
To claim this, I am signing this object:
! compile and run using either of the following commands | |
! and investigate the output. | |
! | |
! gfortran integer_test.f90; a.out | |
! gfortran -fdefault-integer-8 integer_test.f90; a.out | |
program main | |
implicit none | |
! define some integer types |
import numpy as np | |
class geom(object): | |
"""Base class of all geoms""" | |
DEFAULT_AES = dict() | |
REQUIRED_AES = set() | |
DEFAULT_PARAMS = dict() | |
data = None | |
aes = None |