search for: dataexplorer

Displaying 4 results from an estimated 4 matches for "dataexplorer".

2019 Oct 12
2
PANDOC
Hola, parece que el problema está relacionado con la versión de Pandoc. La última da problemas, según parece: https://github.com/boxuancui/DataExplorer/issues/119 DataExplorer failed on the iris and mtcars data.frames on 3 of 4 computers today. It took hours, but the problem seems related to newer versions of Pandoc. Only Pandoc 2.6 works with DataExplorer. It will fail with newer versions 2.7 or higher. Error 99 was most common with Pandoc 2.7...
2019 Oct 11
3
PANDOC
Estimados -Este paquete parece que saca un reporte bastante completo, a mi me da error y no comprendo porque,por favor audenme en esto library(DataExplorer) create_report(iris) create_report(airquality, y = "Ozone") error que me da Error: pandoc document conversion failed with error 99 TENGO INSTALADO PANDOC
2018 Mar 14
0
Revolutions blog: February 2018 roundup
...ns, open source projects, and extensions from Microsoft related to R: http://blog.revolutionanalytics.com/2018/02/what-does-microsoft-do-with-r.html Several upcoming R conferences offer diversity scholarships: http://blog.revolutionanalytics.com/2018/02/diversity-scholarships.html Introducing the DataExplorer package, for quick data summaries and visualizations: http://blog.revolutionanalytics.com/2018/02/dataexplorer.html A video overview of the Data Science Virtual Machine, featuring R: http://blog.revolutionanalytics.com/2018/02/dsvm-on-ai-show.html "Asking the right questions about AI",...
2008 Jan 23
3
How to do more advanced cross tabulation in R?
Hi, I am trying to reproduce some functionalities of Excel pivot table in R, sadly, I couldn't figure out how to do it. I am wondering if this is even possible in R. Does anyone know? Here is an example: year=rep(2003,16) quarter=rep(1:4,each=4) sales=1:16 company=rep(c("a","b","c","d"),4) df=data.frame(year,quarter,sales,company) #this is the