Advance your Data & AI career with 50 days of live learning, dataviz contests, hands-on challenges, study groups & certifications and more!
Get registeredGet Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Learn more
Hola Equipo,
Estoy tratando de imprimir el modo mediano medio, asimetría y curtosis usando python en power bi
Cuando utilizo Print en el editor de secuencias de comandos Py, produce un error, por favor, aconseje la mejor manera de summariaze datos como el siguiente
print("Media : %f\nMediano : %f"%(Loop_Time.mean(),Loop_Time.median()))
print("Varianza : %f\n Desviaciónstandar: %f"%(Loop_Time.var(),Loop_Time.std()))
print("Asimetría : %f"%(Loop_Time.skew()))
print("Curtosis : %f"%(Loop_Time.kurtosis()))
#Finding min,max,1st,3rd quartile and median
print("Min :%f"%(Loop_Time.min()))
print("1er Cuartil :%f"%(Loop_Time.cuantil(0.25)))
print("Meidan :%f"%(Loop_Time.median()))
print("3er Cuartil :%f"%(Loop_Time.cuantil(0.75)))
print("Max :%f"%(Loop_Time.max()))
Solved! Go to Solution.
Equipo i encontrado un workarround para este...
Aquí está el ejemplo de cómo lo hice en el editor de scripts
Equipo i encontrado un workarround para este...
Aquí está el ejemplo de cómo lo hice en el editor de scripts
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
Check out the October 2025 Power BI update to learn about new features.