You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently, Series.view() is actually equivalent to Series.view('float64') (because that is the default dtype in the Series constructor) which often does not make sense. Not too important (as there are not many reasons to use this function in pandas), but I think we should fix to either a) disallow dtype=None or either b) if dtype is None to set dtype = self.dtype (behaviour of numpy if no dtype is specified)