我希望图表 js 使用查询的输出。它们需要 json/array 格式的值和标签。我是 python 和 pandas 的新手。我的代码 -
import pandasql as pdsql
str="""select DISTINCT File_type,count(File_type) as files from final_df where Search_String='amy' group by File_type """
result=pdsql.sqldf(str,locals())
将结果转换为 json 格式。任何帮助,将不胜感激。