transform data from rows to columns

2 visualizaciones (últimos 30 días)
Myurathan Kajendran
Myurathan Kajendran el 21 de Jun. de 2016
Comentada: Myurathan Kajendran el 21 de Jun. de 2016
I have a CSV data file. That looks like below company-----Date--------Price ComA--------15/05/2015--20.5 ComA--------15/06/2015--30 Comb--------15/05/2015--15
I want the companies to be in the columns and dates to be rows. How to do that?

Respuesta aceptada

Shameer Parmar
Shameer Parmar el 21 de Jun. de 2016
If you have variable 'data' like..
data = {'company-----Date--------Price', 'ComA--------15/05/2015--20.5', 'ComA--------15/06/2015--30', 'Comb--------15/05/2015--15'}
then
following command give you the expected result in column..
data = data';
output will be as follows:
data =
'company-----Date--------Price'
'ComA--------15/05/2015--20.5'
'ComA--------15/06/2015--30'
'Comb--------15/05/2015--15'
  1 comentario
Myurathan Kajendran
Myurathan Kajendran el 21 de Jun. de 2016
Thank you so much for your quick reply. I will try and get back. Thanks again

Iniciar sesión para comentar.

Más respuestas (0)

Categorías

Más información sobre Portfolio Optimization and Asset Allocation en Help Center y File Exchange.

Productos

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by