0%

介绍如下几种概念

  • 字符集
    • Unicode
    • GB2312
    • GB18030
  • 字符编码
    • UTF-8
    • UTF-16LE
    • UTF-16BE
  • 字库
    • cmap — Character to Glyph Index Mapping Table
    • GSUB — Glyph Substitution Table
Read more »

编译出错:

main.c:9:16: error: ‘struct channel::<unnamed union>::dvb’ invalid; an anonymous union can only have non-static data members [-fpermissive]
         struct dvb {
                ^~~
Read more »

pandas

一般分类数据用 value_counts,数值数据用 describe,这是最常用的两个统计函数。

获取数据

按标签选择

切片

筛选

Datetime

index

groupby

pivot_tbale

plot

dataframe

functions

df = df.groupby([xkey, ykey])[xkey].count().unstack(ykey).fillna(0)
df = pd.crosstab(index=df[xkey], columns=df[ykey])

pandas中DataFrame的stack()、unstack()和pivot()方法的对比