Giter VIP home page Giter VIP logo

Comments (4)

alexander-beedie avatar alexander-beedie commented on July 1, 2024

Can you provide a minimal working example of the problem?
If we can't see the data that causes the issue it isn't going to be easy to fix it.

from polars.

hieund2 avatar hieund2 commented on July 1, 2024

Can you provide a minimal working example of the problem? If we can't see the data that causes the issue it isn't going to be easy to fix it.
try:
json_files = [pos_json for pos_json in os.listdir(path_to_json) if pos_json.endswith('.json')]
except FileNotFoundError as fnf:
print(fnf)
for json_file in json_files:
print(json_file)
f = open(os.path.join(path_to_json, json_file),"r", encoding="utf-8")
jsondata = json.load(f)
data = pl.DataFrame(jsondata)
df_info = remove_struct_columns(data, remove_keys)
layer = 1
while any([x==pl.Struct for x in df_info.values()]):
print(f"Json columns in layer {layer}: ", [col_name for col_name,dtype in df_info.items() if dtype==pl.Struct])
try:
data=data.unnest([col_name for col_name,dtype in df_info.items() if dtype==pl.Struct], col_suffix= True)
except Exception as e:
print(e)
df_info = remove_struct_columns(data, remove_keys)
layer += 1
# print(data)
df = pl.concat([df, data], how="diagonal_relaxed")

Here is my code, i read many json files to many df with different number of columns, and error catch when i tried to concat 2 df. Error catch on columns with deep nested struct

from polars.

Elvynzs avatar Elvynzs commented on July 1, 2024

This feels similar to #16536 and #16516. (ShapeError and concatenating dataframes)

from polars.

ritchie46 avatar ritchie46 commented on July 1, 2024

Do you have structs in your dataframe?

from polars.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.