项目作者: shc443

项目描述 :
Converting mathematics and statistics equations from python code to J language
高级语言:
项目地址: git://github.com/shc443/Converting-Python-to-J.git
创建时间: 2018-10-25T16:03:38Z
项目社区:https://github.com/shc443/Converting-Python-to-J

开源协议:

下载


Converting-Python-to-J

J is so simple and consistent, albeit hard to learn.

From “Partial correlation analysis: applications for financial markets” by Professor Kenett (2014)
The Partial Correlation eqaution can be wrttien in Python as:

  1. cor = cor.values # n x m matrix: row = Date, col = Stocks
  2. pcor = np.zeros((cor.shape[0],cor.shape[0],cor.shape[0]))
  3. for x in range(len(cor)):
  4. for y in range(len(cor)):
  5. for z in range(len(cor)):
  6. pcor[z,y,x] = (cor[x,y]-cor[x,z]*cor[y,z])/np.sqrt((1-cor[x,z]**2)*(1-cor[y,z]**2))

This can be written in J as:

  1. pcor =: 3 : '((-"2 (*"0 1 ~ )) ~ y) %"2 (%: (*"0 1 ~ ) (1-*: y))'