We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
here is a sample implementation for dataframe.
def cov(self): """ Compute pairwise covariance of columns Returns ------- y : DataFrame """ cols = self.columns std = np.diag(self.std()) corr = self.corr() result = np.dot(np.dot(std, corr), std) return self._constructor(result , index=cols, columns=cols)
The text was updated successfully, but these errors were encountered:
Issue #194 and #92. I ran test_frame and all passed
315b88c
No branches or pull requests
here is a sample implementation for dataframe.
The text was updated successfully, but these errors were encountered: