Re: Incremental PCA

2020-04-18 Thread Dieter Maurer
Rahul Gupta wrote at 2020-4-18 02:56 -0700: >i wanted to implement incremental PCA. >Got this code for stack overflow but i am wondering what y = chunk.pop("y") >does and what is this argument "y" to pop Key to answer your question is "what is the type of `chun

Incremental PCA

2020-04-18 Thread Rahul Gupta
i wanted to implement incremental PCA. Got this code for stack overflow but i am wondering what y = chunk.pop("y") does and what is this argument "y" to pop from sklearn.decomposition import IncrementalPCA import csv import sys import numpy as np import pandas as pd