Posts

Showing posts with the label data-visualization

“filename.rdata” file Exploring and Converting to CSV

Image
Clash Royale CLAN TAG #URR8PPP “filename.rdata” file Exploring and Converting to CSV I'm no R-programmer (because of the problem I started learning it), I'm using Python, In a forcasting task I got a dataset signalList.rdata of a pheomenen called partial discharge. I tried some commands to load, open and view, Hardly got a glimps my_data <- get(load('C:/Users/Zack-PC/Desktop/Study/Data Sets/pdCluster/signalList.Rdata')) but, since i lack deep knowledge about R, I wanted to convert it into a csv file, or any type that I can deal with in python. or, explore it and copy-paste manually. so, i'm asking for any solution whether using R or Python or any tool to get what's in the .rdata file. This question came from our site for people interested in statistics, machine learning, data analysis, data mining, and data visualization. 1 Answer 1 Have you managed to load the data succe...

How to plot column from a dataframe

Image
Clash Royale CLAN TAG #URR8PPP How to plot column from a dataframe I am trying to plot integer columns of dataframe. I am trying by following way for i in df: if df[i].dtypes == 'int64': df[i].plot.kde() But it is plotting all in the same graph. I am new to it and would like to know how can I do it? This answer may help your question :https://stackoverflow.com/questions/22483588/how-can-i-plot-separate-pandas-dataframes-as-subplots df.select_dtypes(include=["integer"]).columns.size calculates your axis size. – Ceyhun yesterday df.select_dtypes(include=["integer"]).columns.size DO you want one graph per time, subplots?.. – Joe yesterday ...