Posts by Fernando Teixeira • 31 points
3 posts
-
0
votes1
answer164
viewsA: Problems with interpreter R
I don’t know this specific IDE, but if it works like other Intellij Ides you have to go to File -> Project Interpreter and there you choose R as the code interpreter you write in the IDE.
-
2
votes2
answers183
viewsA: Trying to generate a graph of a time series
My suggestion would be for you to transpose the data using the t() command and then plot using the matplot() or ts.Plot command().
-
1
votes3
answers2326
viewsA: How to install the scipy library in python?
I recommend using the Anaconda platform: https://www.continuum.io/downloads Anaconda comes with 'base' scientific packages such as matplotlib, pandas, scipy and numpy. All packages and the…