data manipulation
Clash Royale CLAN TAG#URR8PPP
up vote
3
down vote
favorite
I have to plot the data below:
x,y,z=0.1,0.013070604,1.00015,0.6,0.078698955,1.0054247,1.1,0.14552025,1.0184426,1.6,0.21458577,1.0398293,2.1,0.28706229,1.0712175,2.6,0.3643249,1.1155575
I am new in data manipulation. Please how to plot column x
vs column z
and z
vs y
.
plotting data
add a comment |Â
up vote
3
down vote
favorite
I have to plot the data below:
x,y,z=0.1,0.013070604,1.00015,0.6,0.078698955,1.0054247,1.1,0.14552025,1.0184426,1.6,0.21458577,1.0398293,2.1,0.28706229,1.0712175,2.6,0.3643249,1.1155575
I am new in data manipulation. Please how to plot column x
vs column z
and z
vs y
.
plotting data
add a comment |Â
up vote
3
down vote
favorite
up vote
3
down vote
favorite
I have to plot the data below:
x,y,z=0.1,0.013070604,1.00015,0.6,0.078698955,1.0054247,1.1,0.14552025,1.0184426,1.6,0.21458577,1.0398293,2.1,0.28706229,1.0712175,2.6,0.3643249,1.1155575
I am new in data manipulation. Please how to plot column x
vs column z
and z
vs y
.
plotting data
I have to plot the data below:
x,y,z=0.1,0.013070604,1.00015,0.6,0.078698955,1.0054247,1.1,0.14552025,1.0184426,1.6,0.21458577,1.0398293,2.1,0.28706229,1.0712175,2.6,0.3643249,1.1155575
I am new in data manipulation. Please how to plot column x
vs column z
and z
vs y
.
plotting data
plotting data
asked 1 hour ago
Gallagher
565
565
add a comment |Â
add a comment |Â
3 Answers
3
active
oldest
votes
up vote
5
down vote
How about this
data = Flatten /@ 0.1, 0.013070604, 1.00015, 0.6, 0.078698955,
1.0054247, 1.1, 0.14552025, 1.0184426, 1.6, 0.21458577,
1.0398293, 2.1, 0.28706229, 1.0712175, 2.6, 0.3643249,
1.1155575;
ListPlot[data[[All, 3, 1]], data[[All, 2 ;;]]]
yes that's it, thank you @ΑλÎÂξανδÃÂο Ζεγγ.
– Gallagher
1 hour ago
add a comment |Â
up vote
5
down vote
This is also a good place to apply patterns to re-arrange the elements of the data.
list = 0.1, 0.013070604, 1.00015, 0.6, 0.078698955,1.0054247,
1.1, 0.14552025, 1.0184426, 1.6, 0.21458577,1.0398293,
2.1, 0.28706229, 1.0712175, 2.6, 0.3643249,1.1155575;
ListPlot[list /. x_, y_, z_ -> x, z, list /. x_, y_, z_ -> z, y]
yes that's it, thank you @bill s.
– Gallagher
1 hour ago
add a comment |Â
up vote
0
down vote
Here is another way:
a =
0.1, 0.013070604, 1.00015, 0.6, 0.078698955,
1.0054247, 1.1, 0.14552025, 1.0184426, 1.6, 0.21458577,
1.0398293, 2.1, 0.28706229, 1.0712175, 2.6, 0.3643249,
1.1155575
;
x, y, z = MapAt[Transpose, Transpose[a], 2];
ListPlot[Transpose[x, z], Transpose[z, y]]
add a comment |Â
3 Answers
3
active
oldest
votes
3 Answers
3
active
oldest
votes
active
oldest
votes
active
oldest
votes
up vote
5
down vote
How about this
data = Flatten /@ 0.1, 0.013070604, 1.00015, 0.6, 0.078698955,
1.0054247, 1.1, 0.14552025, 1.0184426, 1.6, 0.21458577,
1.0398293, 2.1, 0.28706229, 1.0712175, 2.6, 0.3643249,
1.1155575;
ListPlot[data[[All, 3, 1]], data[[All, 2 ;;]]]
yes that's it, thank you @ΑλÎÂξανδÃÂο Ζεγγ.
– Gallagher
1 hour ago
add a comment |Â
up vote
5
down vote
How about this
data = Flatten /@ 0.1, 0.013070604, 1.00015, 0.6, 0.078698955,
1.0054247, 1.1, 0.14552025, 1.0184426, 1.6, 0.21458577,
1.0398293, 2.1, 0.28706229, 1.0712175, 2.6, 0.3643249,
1.1155575;
ListPlot[data[[All, 3, 1]], data[[All, 2 ;;]]]
yes that's it, thank you @ΑλÎÂξανδÃÂο Ζεγγ.
– Gallagher
1 hour ago
add a comment |Â
up vote
5
down vote
up vote
5
down vote
How about this
data = Flatten /@ 0.1, 0.013070604, 1.00015, 0.6, 0.078698955,
1.0054247, 1.1, 0.14552025, 1.0184426, 1.6, 0.21458577,
1.0398293, 2.1, 0.28706229, 1.0712175, 2.6, 0.3643249,
1.1155575;
ListPlot[data[[All, 3, 1]], data[[All, 2 ;;]]]
How about this
data = Flatten /@ 0.1, 0.013070604, 1.00015, 0.6, 0.078698955,
1.0054247, 1.1, 0.14552025, 1.0184426, 1.6, 0.21458577,
1.0398293, 2.1, 0.28706229, 1.0712175, 2.6, 0.3643249,
1.1155575;
ListPlot[data[[All, 3, 1]], data[[All, 2 ;;]]]
answered 1 hour ago


ΑλÎÂξανδÃÂο Ζεγγ
1,803720
1,803720
yes that's it, thank you @ΑλÎÂξανδÃÂο Ζεγγ.
– Gallagher
1 hour ago
add a comment |Â
yes that's it, thank you @ΑλÎÂξανδÃÂο Ζεγγ.
– Gallagher
1 hour ago
yes that's it, thank you @ΑλÎÂξανδÃÂο Ζεγγ.
– Gallagher
1 hour ago
yes that's it, thank you @ΑλÎÂξανδÃÂο Ζεγγ.
– Gallagher
1 hour ago
add a comment |Â
up vote
5
down vote
This is also a good place to apply patterns to re-arrange the elements of the data.
list = 0.1, 0.013070604, 1.00015, 0.6, 0.078698955,1.0054247,
1.1, 0.14552025, 1.0184426, 1.6, 0.21458577,1.0398293,
2.1, 0.28706229, 1.0712175, 2.6, 0.3643249,1.1155575;
ListPlot[list /. x_, y_, z_ -> x, z, list /. x_, y_, z_ -> z, y]
yes that's it, thank you @bill s.
– Gallagher
1 hour ago
add a comment |Â
up vote
5
down vote
This is also a good place to apply patterns to re-arrange the elements of the data.
list = 0.1, 0.013070604, 1.00015, 0.6, 0.078698955,1.0054247,
1.1, 0.14552025, 1.0184426, 1.6, 0.21458577,1.0398293,
2.1, 0.28706229, 1.0712175, 2.6, 0.3643249,1.1155575;
ListPlot[list /. x_, y_, z_ -> x, z, list /. x_, y_, z_ -> z, y]
yes that's it, thank you @bill s.
– Gallagher
1 hour ago
add a comment |Â
up vote
5
down vote
up vote
5
down vote
This is also a good place to apply patterns to re-arrange the elements of the data.
list = 0.1, 0.013070604, 1.00015, 0.6, 0.078698955,1.0054247,
1.1, 0.14552025, 1.0184426, 1.6, 0.21458577,1.0398293,
2.1, 0.28706229, 1.0712175, 2.6, 0.3643249,1.1155575;
ListPlot[list /. x_, y_, z_ -> x, z, list /. x_, y_, z_ -> z, y]
This is also a good place to apply patterns to re-arrange the elements of the data.
list = 0.1, 0.013070604, 1.00015, 0.6, 0.078698955,1.0054247,
1.1, 0.14552025, 1.0184426, 1.6, 0.21458577,1.0398293,
2.1, 0.28706229, 1.0712175, 2.6, 0.3643249,1.1155575;
ListPlot[list /. x_, y_, z_ -> x, z, list /. x_, y_, z_ -> z, y]
answered 1 hour ago


bill s
50.9k373144
50.9k373144
yes that's it, thank you @bill s.
– Gallagher
1 hour ago
add a comment |Â
yes that's it, thank you @bill s.
– Gallagher
1 hour ago
yes that's it, thank you @bill s.
– Gallagher
1 hour ago
yes that's it, thank you @bill s.
– Gallagher
1 hour ago
add a comment |Â
up vote
0
down vote
Here is another way:
a =
0.1, 0.013070604, 1.00015, 0.6, 0.078698955,
1.0054247, 1.1, 0.14552025, 1.0184426, 1.6, 0.21458577,
1.0398293, 2.1, 0.28706229, 1.0712175, 2.6, 0.3643249,
1.1155575
;
x, y, z = MapAt[Transpose, Transpose[a], 2];
ListPlot[Transpose[x, z], Transpose[z, y]]
add a comment |Â
up vote
0
down vote
Here is another way:
a =
0.1, 0.013070604, 1.00015, 0.6, 0.078698955,
1.0054247, 1.1, 0.14552025, 1.0184426, 1.6, 0.21458577,
1.0398293, 2.1, 0.28706229, 1.0712175, 2.6, 0.3643249,
1.1155575
;
x, y, z = MapAt[Transpose, Transpose[a], 2];
ListPlot[Transpose[x, z], Transpose[z, y]]
add a comment |Â
up vote
0
down vote
up vote
0
down vote
Here is another way:
a =
0.1, 0.013070604, 1.00015, 0.6, 0.078698955,
1.0054247, 1.1, 0.14552025, 1.0184426, 1.6, 0.21458577,
1.0398293, 2.1, 0.28706229, 1.0712175, 2.6, 0.3643249,
1.1155575
;
x, y, z = MapAt[Transpose, Transpose[a], 2];
ListPlot[Transpose[x, z], Transpose[z, y]]
Here is another way:
a =
0.1, 0.013070604, 1.00015, 0.6, 0.078698955,
1.0054247, 1.1, 0.14552025, 1.0184426, 1.6, 0.21458577,
1.0398293, 2.1, 0.28706229, 1.0712175, 2.6, 0.3643249,
1.1155575
;
x, y, z = MapAt[Transpose, Transpose[a], 2];
ListPlot[Transpose[x, z], Transpose[z, y]]
answered 23 mins ago


Henrik Schumacher
38.4k251111
38.4k251111
add a comment |Â
add a comment |Â
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fmathematica.stackexchange.com%2fquestions%2f182046%2fdata-manipulation%23new-answer', 'question_page');
);
Post as a guest
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password