hotwind2015

Results 8 comments of hotwind2015

1、download xalan packages from apache and install into local maven reps 2、modify src\main\resources\META-INF\resources\starter.xhtml change xmlns:sec="http://www.springframework.org/security/tags" to xmlns:sec="https://joinfaces.org/security" 3、modify src\main\java\org\joinfaces\example\view\JoinFacesStarterService.java change the createModel() method , replace "joinfaces-dependencies" to "joinfaces"

> Project is not buildable due to errors. Example webpage mentioned on description is not working.. > > Was looking if changing the primefaces theme will apply on this project.....

> i have the same problem. > > i just followed the Readme and ran into an error. Is there a known way to resolve this ? > > This...

modify src\main\java\org\joinfaces\example\view\JoinFacesStarterService.java change the createModel() method , replace "http://" to "https://" modify pom.xml , replace spring repository "http://" to "https://"

you must download it from apache and install it to your local maven resp.

计算结果确实与同花顺的有出入,改成如下代码后,结果一致了: ```python def CROSS(S1, S2): res = pd.Series(S1) > pd.Series(S2) return ((res == True) & (res.shift(-1) == False)).shift() ```

> I'm facing the same issue. Please add this support. 试试下面的这个 ```python def REF(S, N=1): # 对序列整体下移动N,返回序列(shift后会产生NAN) if isinstance(N, (int, float)): return pd.Series(S).shift(N).values else: res = np.repeat(np.nan, len(S)) for i...

> Does not seem working for me. How the shift works here with "res[i] = S[N[i]]"? try this ```python def REF(S, N=1): # 对序列整体下移动N,返回序列(shift后会产生NAN) if isinstance(N, (int, float)): return pd.Series(S).shift(N).values...