如何使用RMixpanel库导出csv中的数据

时间:2022-09-27 22:56:07

Does anyone aware of using RMixpanel library, if yes. How can we export mixpanel data using this library and export it into csv or xlsx format.

有没有人知道使用RMixpanel库,如果是的话。我们如何使用此库导出mixpanel数据并将其导出为csv或xlsx格式。

It would be great if any author or maintainer of this library can guide us through all functions of this useful library using small-small examples.

如果这个库的任何作者或维护者可以使用小小的例子指导我们完成这个有用的库的所有功能,那将是很棒的。

1 个解决方案

#1


4  

The function profilesJson2RMatrix provides a method for converting JSON to R matrix. You can then write the the object using write.csv function.

函数profilesJson2RMatrix提供了一种将JSON转换为R矩阵的方法。然后,您可以使用write.csv函数编写该对象。

Checkout the github page for a working example of using this page: https://github.com/ploner/RMixpanel

查看github页面以获取使用此页面的工作示例:https://github.com/ploner/RMixpanel

#1


4  

The function profilesJson2RMatrix provides a method for converting JSON to R matrix. You can then write the the object using write.csv function.

函数profilesJson2RMatrix提供了一种将JSON转换为R矩阵的方法。然后,您可以使用write.csv函数编写该对象。

Checkout the github page for a working example of using this page: https://github.com/ploner/RMixpanel

查看github页面以获取使用此页面的工作示例:https://github.com/ploner/RMixpanel