Skip to content
New issue

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

Difficulty to convert column #239

Closed
reza1615 opened this issue Aug 9, 2020 · 2 comments
Closed

Difficulty to convert column #239

reza1615 opened this issue Aug 9, 2020 · 2 comments

Comments

@reza1615
Copy link

reza1615 commented Aug 9, 2020

In real word problems there are many cases which an integer/float type column has some missing data or some string data such as
'...'
'' (empty)
'nan'
'00000000'
ets

Finding the missing cells some times is a nightmare. for example in the below code we can not convert it to float also can not find the missing value in the description to replace it.

import pandas as pd
import numpy as np
numbers=list(range(200))
numbers.append('')
numbers=numbers+list(range(200,300))
data={'col1': numbers}
df=pd.DataFrame(data)

image

column description doesn't show the incorrect format value (here is an empty cell)
image

@reza1615
Copy link
Author

reza1615 commented Aug 9, 2020

  • For finding missed or wong format cells we should have a part in the description to show the wired values. for example shows there is '...' in the numeric data
  • For converting to the float Force convert to float #240 will be helpful for other formats such as data we can use another solution

aschonfeld added a commit that referenced this issue Aug 11, 2020
* #231: "Lock Zoom" button on 3D Scatter & Surface charts for locking camera on animations
* global & instance-level flag to turn off cell editing
* added the ability to upload CSVs
* upgraded prismjs
* #234: update to line animations so that you can lock axes and highlight last point
* #233: add candlestick charts
* #241: total counts vs. count (non-nan) in describe
* #240: force convert to float
* #239: converting mixed columns
aschonfeld added a commit that referenced this issue Aug 12, 2020
* #231: "Lock Zoom" button on 3D Scatter & Surface charts for locking camera on animations
* global & instance-level flag to turn off cell editing
* added the ability to upload CSVs
* upgraded prismjs
* #234: update to line animations so that you can lock axes and highlight last point
* #233: add candlestick charts
* #241: total counts vs. count (non-nan) in describe
* #240: force convert to float
* #239: converting mixed columns
aschonfeld added a commit that referenced this issue Aug 13, 2020
* #231: "Lock Zoom" button on 3D Scatter & Surface charts for locking camera on animations
* global & instance-level flag to turn off cell editing
* added the ability to upload CSVs
* upgraded prismjs
* #234: update to line animations so that you can lock axes and highlight last point
* #233: add candlestick charts
* #241: total counts vs. count (non-nan) in describe
* #240: force convert to float
* #239: converting mixed columns
* #237: updated "Pivot" reshaper to always using pivot_table
* #236: "inplace" & "drop_index" parameters for memory optimization and parquet loader
aschonfeld added a commit that referenced this issue Aug 13, 2020
* #231: "Lock Zoom" button on 3D Scatter & Surface charts for locking camera on animations
* global & instance-level flag to turn off cell editing
* added the ability to upload CSVs
* upgraded prismjs
* #234: update to line animations so that you can lock axes and highlight last point
* #233: add candlestick charts
* #241: total counts vs. count (non-nan) in describe
* #240: force convert to float
* #239: converting mixed columns
* #237: updated "Pivot" reshaper to always using pivot_table
* #236: "inplace" & "drop_index" parameters for memory optimization and parquet loader
aschonfeld added a commit that referenced this issue Aug 13, 2020
* #231: "Lock Zoom" button on 3D Scatter & Surface charts for locking camera on animations
* global & instance-level flag to turn off cell editing
* added the ability to upload CSVs
* upgraded prismjs
* #234: update to line animations so that you can lock axes and highlight last point
* #233: add candlestick charts
* #241: total counts vs. count (non-nan) in describe
* #240: force convert to float
* #239: converting mixed columns
* #237: updated "Pivot" reshaper to always using pivot_table
* #236: "inplace" & "drop_index" parameters for memory optimization and parquet loader
aschonfeld added a commit that referenced this issue Aug 13, 2020
* #231: "Lock Zoom" button on 3D Scatter & Surface charts for locking camera on animations
* global & instance-level flag to turn off cell editing
* added the ability to upload CSVs
* upgraded prismjs
* #234: update to line animations so that you can lock axes and highlight last point
* #233: add candlestick charts
* #241: total counts vs. count (non-nan) in describe
* #240: force convert to float
* #239: converting mixed columns
* #237: updated "Pivot" reshaper to always using pivot_table
* #236: "inplace" & "drop_index" parameters for memory optimization and parquet loader
@aschonfeld aschonfeld mentioned this issue Aug 13, 2020
aschonfeld added a commit that referenced this issue Aug 13, 2020
* #231: "Lock Zoom" button on 3D Scatter & Surface charts for locking camera on animations
* global & instance-level flag to turn off cell editing
* added the ability to upload CSVs
* upgraded prismjs
* #234: update to line animations so that you can lock axes and highlight last point
* #233: add candlestick charts
* #241: total counts vs. count (non-nan) in describe
* #240: force convert to float
* #239: converting mixed columns
* #237: updated "Pivot" reshaper to always using pivot_table
* #236: "inplace" & "drop_index" parameters for memory optimization and parquet loader
aschonfeld added a commit that referenced this issue Aug 14, 2020
* #231: "Lock Zoom" button on 3D Scatter & Surface charts for locking camera on animations
* global & instance-level flag to turn off cell editing
* added the ability to upload CSVs
* upgraded prismjs
* #234: update to line animations so that you can lock axes and highlight last point
* #233: add candlestick charts
* #241: total counts vs. count (non-nan) in describe
* #240: force convert to float
* #239: converting mixed columns
* #237: updated "Pivot" reshaper to always using pivot_table
* #236: "inplace" & "drop_index" parameters for memory optimization and parquet loader
@aschonfeld
Copy link
Collaborator

added in v1.13.0

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants