'''1、使用lambda 语句定义函数实现两个变量x和y的加法运算'''
myfunc = lambda x,y: x+y
myfunc(3,2)
'''获取2021年10月15日的A股股票代码池,并按股票代码排序'''
DataSource('bar1d_CN_STOCK_A').read()
instruments = list(reversed(list(ranker_prediction.instrument[ranker_prediction.instrument.apply(
lambda x: x in equities)])))
'''获取A股2021年10月14日的平台内置features_CN_STOCK_A_G311因子表数据,并查看数据和因子列'''
df = DataSource("features_CN_STOCK_A_G311").read(start_date="2021-10-14", end_date="2021-10-14")
df.head()