<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: Replacing Matrix Values in Discussions</title>
    <link>https://community.jmp.com/t5/Discussions/Replacing-Matrix-Values/m-p/217215#M43415</link>
    <description>&lt;P&gt;The column names are stored in the associative array. They are the keys. You can verify this claim by adding this to the script:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;Show( table &amp;lt;&amp;lt; Get Keys );&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;I suggest that you see Help &amp;gt; Books &amp;gt; Scripting Guide, then search for 'associative array.' You can iterate over the pairs and do many other tasks easily. The examples in the guide are good, but return here if you have any questions.&lt;/P&gt;</description>
    <pubDate>Thu, 11 Jul 2019 20:35:39 GMT</pubDate>
    <dc:creator>Mark_Bailey</dc:creator>
    <dc:date>2019-07-11T20:35:39Z</dc:date>
    <item>
      <title>Replacing Matrix Values</title>
      <link>https://community.jmp.com/t5/Discussions/Replacing-Matrix-Values/m-p/217062#M43383</link>
      <description>&lt;P&gt;Hi! I am trying to input all my column data into a 8 by 12 matrix in order( filling in the columns first in a downwards manner). There are only 72 values in my column, so I want the remaining values that are not filled to be 0.&amp;nbsp; I am having a lot of problems trying to get the code below to work. I would appreciate any help!&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;dt = Open("Example.jmp");&lt;BR /&gt;Rows = nrows(dt);
names= dt &amp;lt;&amp;lt; Get Column Names (String);
Table =[];
Table = J(8,12,0);
For(i=1, i &amp;lt;= ncol(dt),i++, 
    data = column(dt, names[i]) &amp;lt;&amp;lt;getValues;
	For(a=1, a &amp;lt;=12, a++,
			For(b =1, b &amp;lt;=8, b++,
			   Table[a,b] = operation; // i get errors at this portion 
			);
		);
//unsure of the correct way to implement the code below
	operation= For (c =1, c= Rows, c++,
	     DataInput[c] = Data[c];
		);	
);
Print(Table);

		&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Wed, 10 Jul 2019 22:38:50 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Replacing-Matrix-Values/m-p/217062#M43383</guid>
      <dc:creator>dg1</dc:creator>
      <dc:date>2019-07-10T22:38:50Z</dc:date>
    </item>
    <item>
      <title>Re: Replacing Matrix Values</title>
      <link>https://community.jmp.com/t5/Discussions/Replacing-Matrix-Values/m-p/217072#M43384</link>
      <description>&lt;P&gt;I am really not sure I understand what you are trying to do.&amp;nbsp; But below is a script that will fill zeros after the matrix called data runs out of values&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;dt = Open( "Example.jmp" );
Rows = N Rows( dt );
names = dt &amp;lt;&amp;lt; Get Column Names( String );
Table = [];
Table = J( 8, 12, 0 );
For( i = 1, i &amp;lt;= N Col( dt ), i++,
	data = Column( dt, names[i] ) &amp;lt;&amp;lt; getValues;
	For( a = 1, a &amp;lt;= 12, a++,
		For( b = 1, b &amp;lt;= 8, b++,
			// I believe that (a - 1 ) * b + b will be equal to the 
			// row number of the data matrix you read in.  Once it's 
			// value is greater than the number of rows in the dt data 
			// table, it will enter zeros.
			If( (a - 1) * b + b &amp;lt;= Rows,
				Table[a, b] = data[(a - 1) * b + b],
				Table[a, b] = 0
			)
		)
	);
);
Print( Table );&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;I am confused about what you are doing with the outer For() loop, going from column to column.&amp;nbsp; How many columns are in the data table Example? &amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 10 Jul 2019 23:53:56 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Replacing-Matrix-Values/m-p/217072#M43384</guid>
      <dc:creator>txnelson</dc:creator>
      <dc:date>2019-07-10T23:53:56Z</dc:date>
    </item>
    <item>
      <title>Re: Replacing Matrix Values</title>
      <link>https://community.jmp.com/t5/Discussions/Replacing-Matrix-Values/m-p/217074#M43386</link>
      <description>&lt;P&gt;Jim offers a very good solution but I am also not sure what you want to do so I offer another way to illustrate another point.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;Names Default to Here( 1 );

// open example
dt1 = Open( "$SAMPLE_DATA/Big Class.jmp" );

// make illustrative example with colums of different sizes (missing values)
dt2 = dt1 &amp;lt;&amp;lt; Split(
	Split By( :age ),
	Split( :weight ),
	Remaining Columns( Drop All ),
	Sort by Column Property
);

Close( dt1, No Save );

// input data table as matrix
mat = dt2 &amp;lt;&amp;lt; Get As Matrix;

// replace missing values with zero
mat[Loc(Is Missing(mat))] = 0;

// see result
Show( mat );&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;Hope it helps.&lt;/P&gt;</description>
      <pubDate>Thu, 11 Jul 2019 00:57:37 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Replacing-Matrix-Values/m-p/217074#M43386</guid>
      <dc:creator>Mark_Bailey</dc:creator>
      <dc:date>2019-07-11T00:57:37Z</dc:date>
    </item>
    <item>
      <title>Re: Replacing Matrix Values</title>
      <link>https://community.jmp.com/t5/Discussions/Replacing-Matrix-Values/m-p/217140#M43403</link>
      <description>thanks for the response Jim! the data table has 5 columns right now, but It can change depending on the user input. I am basically trying to put a data column into a matrix with 12 columns and 8 rows.&lt;BR /&gt;&lt;BR /&gt;(a - 1) * b + b does not seem to be working for me, I guess because for the first column data it will always be data[0]. Do you know what is going wrong?</description>
      <pubDate>Thu, 11 Jul 2019 16:32:41 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Replacing-Matrix-Values/m-p/217140#M43403</guid>
      <dc:creator>dg1</dc:creator>
      <dc:date>2019-07-11T16:32:41Z</dc:date>
    </item>
    <item>
      <title>Re: Replacing Matrix Values</title>
      <link>https://community.jmp.com/t5/Discussions/Replacing-Matrix-Values/m-p/217141#M43404</link>
      <description>Thank you for your help! Can I use the Get As Matrix function to put the data into a matrix with specifications? I need the data from the column to go into a 8 by 12 matrix.</description>
      <pubDate>Thu, 11 Jul 2019 16:35:16 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Replacing-Matrix-Values/m-p/217141#M43404</guid>
      <dc:creator>dg1</dc:creator>
      <dc:date>2019-07-11T16:35:16Z</dc:date>
    </item>
    <item>
      <title>Re: Replacing Matrix Values</title>
      <link>https://community.jmp.com/t5/Discussions/Replacing-Matrix-Values/m-p/217143#M43406</link>
      <description>&lt;P&gt;Are your data columns for the results from a micro-titre plate?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;You want to re-shape the data in each column into an 8x12 table. Your script will only keep the table for the last column. Here is a script that process every data column and stores the table result with the column name in an associative array.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;Names Default to Here( 1 );

dt = Open( "Example.jmp" );

table = Associative Array();

For( c = 1, c &amp;lt;= N Col( dt ), c++,
	data = Column( dt, c ) &amp;lt;&amp;lt; Get As Matrix;
	data[Loc(Is Missing( data ))] = 0;
	table[Column( dt, c ) &amp;lt;&amp;lt; Get Name] = Transpose( Shape( data, 12, 8 ) );
);

Show( table &amp;lt;&amp;lt; Get Contents );&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I assume that you have at least 96 rows. If there are more, they are lost. If there are less, then the assignment of 0 should be changed to a concatenation that pads with 0. This version pads instead:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;Names Default to Here( 1 );

dt = Open( "Example.jmp" );

table = Associative Array();

For( c = 1, c &amp;lt;= N Col( dt ), c++,
	data = Column( dt, c ) &amp;lt;&amp;lt; Get As Matrix;
	If( N Row( data ) &amp;lt; 96,
		data |/= J( 96 - N Row( data ), 1, 0 );
	)
	table[Column( dt, c ) &amp;lt;&amp;lt; Get Name] = Transpose( Shape( data, 12, 8 ) );
);

Show( table &amp;lt;&amp;lt; Get Contents );&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Thu, 11 Jul 2019 17:25:51 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Replacing-Matrix-Values/m-p/217143#M43406</guid>
      <dc:creator>Mark_Bailey</dc:creator>
      <dc:date>2019-07-11T17:25:51Z</dc:date>
    </item>
    <item>
      <title>Re: Replacing Matrix Values</title>
      <link>https://community.jmp.com/t5/Discussions/Replacing-Matrix-Values/m-p/217204#M43414</link>
      <description>Thank you!! This works well. However, the column name is not stored. Do you know how I could fix that?</description>
      <pubDate>Thu, 11 Jul 2019 20:27:04 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Replacing-Matrix-Values/m-p/217204#M43414</guid>
      <dc:creator>dg1</dc:creator>
      <dc:date>2019-07-11T20:27:04Z</dc:date>
    </item>
    <item>
      <title>Re: Replacing Matrix Values</title>
      <link>https://community.jmp.com/t5/Discussions/Replacing-Matrix-Values/m-p/217215#M43415</link>
      <description>&lt;P&gt;The column names are stored in the associative array. They are the keys. You can verify this claim by adding this to the script:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;Show( table &amp;lt;&amp;lt; Get Keys );&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;I suggest that you see Help &amp;gt; Books &amp;gt; Scripting Guide, then search for 'associative array.' You can iterate over the pairs and do many other tasks easily. The examples in the guide are good, but return here if you have any questions.&lt;/P&gt;</description>
      <pubDate>Thu, 11 Jul 2019 20:35:39 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Replacing-Matrix-Values/m-p/217215#M43415</guid>
      <dc:creator>Mark_Bailey</dc:creator>
      <dc:date>2019-07-11T20:35:39Z</dc:date>
    </item>
    <item>
      <title>Re: Replacing Matrix Values</title>
      <link>https://community.jmp.com/t5/Discussions/Replacing-Matrix-Values/m-p/217216#M43416</link>
      <description>&lt;P&gt;I have been following this discussion from the beginning.&amp;nbsp; It seems to have evolved into a scripting exercise, without exposing what is the real end goal. &amp;nbsp;&lt;a href="https://community.jmp.com/t5/user/viewprofilepage/user-id/5358"&gt;@Mark_Bailey&lt;/a&gt; has provided a nice solution with his use of an Associative Array, but what I see missing, is what is the real reason for creating these matricies?&amp;nbsp; If that was known, there might be a simpler solution.&lt;/P&gt;</description>
      <pubDate>Thu, 11 Jul 2019 20:46:37 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Replacing-Matrix-Values/m-p/217216#M43416</guid>
      <dc:creator>txnelson</dc:creator>
      <dc:date>2019-07-11T20:46:37Z</dc:date>
    </item>
    <item>
      <title>Re: Replacing Matrix Values</title>
      <link>https://community.jmp.com/t5/Discussions/Replacing-Matrix-Values/m-p/217217#M43417</link>
      <description>I apologize for the confusion. I am trying to store each of my column data into a format that is 8 by 12 ( which is the size of micro-titre plate with 96 wells), in order to store the results of my experiments in correlation to its location on the plate. Each column represents a different experiment.</description>
      <pubDate>Thu, 11 Jul 2019 21:00:10 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Replacing-Matrix-Values/m-p/217217#M43417</guid>
      <dc:creator>dg1</dc:creator>
      <dc:date>2019-07-11T21:00:10Z</dc:date>
    </item>
    <item>
      <title>Re: Replacing Matrix Values</title>
      <link>https://community.jmp.com/t5/Discussions/Replacing-Matrix-Values/m-p/217219#M43419</link>
      <description>So once you have the data into the matrices, how do you move them to the permanent locations?</description>
      <pubDate>Thu, 11 Jul 2019 21:43:24 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Replacing-Matrix-Values/m-p/217219#M43419</guid>
      <dc:creator>txnelson</dc:creator>
      <dc:date>2019-07-11T21:43:24Z</dc:date>
    </item>
    <item>
      <title>Re: Replacing Matrix Values</title>
      <link>https://community.jmp.com/t5/Discussions/Replacing-Matrix-Values/m-p/217223#M43420</link>
      <description>Thank you for your help and interest. Mark Bailey's associative array method has worked. Now I am trying to figure out how to put the associative array into a data table so I can export it as a CSV file.</description>
      <pubDate>Thu, 11 Jul 2019 21:54:43 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Replacing-Matrix-Values/m-p/217223#M43420</guid>
      <dc:creator>dg1</dc:creator>
      <dc:date>2019-07-11T21:54:43Z</dc:date>
    </item>
    <item>
      <title>Re: Replacing Matrix Values</title>
      <link>https://community.jmp.com/t5/Discussions/Replacing-Matrix-Values/m-p/217239#M43424</link>
      <description>&lt;P&gt;I may be a bit redundant, but here is an alternative way of handling this given the requirement to output to a csv file.&amp;nbsp; It uses data table manipulation to get the data into the correct form, and then writes the data table to a csv file&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;Names Default To Here( 1 );

// Create some sample data
dt = New Table( "Example",
	add rows( 72 ),
	New Column( "c1", formula( Random Uniform( 1, 500 ) ) ),
	New Column( "c2", formula( Random Uniform( 1, 500 ) ) ),
	New Column( "c3", formula( Random Uniform( 1, 500 ) ) )
);
dt &amp;lt;&amp;lt; run formulas;
dt:c1 &amp;lt;&amp;lt; delete property( "formula" );
dt:c2 &amp;lt;&amp;lt; delete property( "formula" );
dt:c3 &amp;lt;&amp;lt; delete property( "formula" );

// Get the list of columns
colNamesList = dt &amp;lt;&amp;lt; get column names( string, numeric );

// Loop across the columns and process them
For( i = 1, i &amp;lt;= N Cols( dt ), i++,
	// Create a new table will only the single column
	dtTemp = dt &amp;lt;&amp;lt; subset(invisible, selected rows( 0 ), columns( Column( colNamesList[i] ) ) );
	// If there are not 96 rows, add them
	If( N Rows( dtTemp ) &amp;lt; 96,
		rowCount = N Rows( dt );
		dtTemp &amp;lt;&amp;lt; add rows( 96 - rowCount );
		For( k = rowCount + 1, K &amp;lt;= 96, k++,
			Column( dtTemp, colNamesList[i] )[k] = 0
		);
	);
	// Create a sequence column to allow for proper splitting of the data
	dtTemp &amp;lt;&amp;lt; New Column( "sequence",
		formula(
			x = Mod( Row(), 8 );
			If( x == 0, x = 8 );
			x;
		)
	);
	dtTemp &amp;lt;&amp;lt; run formulas;
	
	// Split the data into 8 columns.....if this should be 12 just change the sequence formula above
	dtSplit = dtTemp &amp;lt;&amp;lt; Split(invisible, Split By( :sequence ), Split( Column( dtTemp, colNamesList[i] ) ), Sort by Column Property );
	dtSplit &amp;lt;&amp;lt; run formulas;
	
	// Close the un needed temporary data table
	Close( dtTemp, nosave );
	
	// Change the output preferences to get rid of headers
	current_pref = Char( Arg( Parse( (Char( Get Preferences( Export settings ) )) ), 1 ) );
	// Set prefs (comma delimited, no headers)
	Pref( Export Settings( End Of Field( Comma ), Export Table Headers( 0 ) ) );
	// Save csv file

	dtSplit &amp;lt;&amp;lt; save( "$TEMP\" || colNamesList[i] || ".csv" );
	
	//Restore oribinal prefs
	Eval( Parse( "pref(" || current_pref || ")" ) );
	
	// Close the un necessary table
	Close( dtSplit, nosave );
	
);

&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Fri, 12 Jul 2019 00:37:49 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Replacing-Matrix-Values/m-p/217239#M43424</guid>
      <dc:creator>txnelson</dc:creator>
      <dc:date>2019-07-12T00:37:49Z</dc:date>
    </item>
    <item>
      <title>Re: Replacing Matrix Values</title>
      <link>https://community.jmp.com/t5/Discussions/Replacing-Matrix-Values/m-p/217290#M43435</link>
      <description>&lt;P&gt;Please take a look at &lt;A href="https://community.jmp.com/t5/JMP-Sample-Data/Micro-Titre-Plate-Shapes/ta-p/21484" target="_self"&gt;this post&lt;/A&gt;. You might find it useful in your work with experiments on plates.&lt;/P&gt;</description>
      <pubDate>Fri, 12 Jul 2019 13:44:41 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Replacing-Matrix-Values/m-p/217290#M43435</guid>
      <dc:creator>Mark_Bailey</dc:creator>
      <dc:date>2019-07-12T13:44:41Z</dc:date>
    </item>
    <item>
      <title>Re: Replacing Matrix Values</title>
      <link>https://community.jmp.com/t5/Discussions/Replacing-Matrix-Values/m-p/217291#M43436</link>
      <description>&lt;P&gt;I suspect that as a new JMP user, your mindset might still be that of a spreadsheet user. I do not know the destination of the CSV file, but you can do much in JMP using a tall table layout.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Why do you need the 8x12 layout? Why do you need to export the matrices as CSV files?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;We might be able to help you use JMP to your advantage if we knew where this analysis was going.&lt;/P&gt;</description>
      <pubDate>Fri, 12 Jul 2019 13:46:53 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Replacing-Matrix-Values/m-p/217291#M43436</guid>
      <dc:creator>Mark_Bailey</dc:creator>
      <dc:date>2019-07-12T13:46:53Z</dc:date>
    </item>
    <item>
      <title>Re: Replacing Matrix Values</title>
      <link>https://community.jmp.com/t5/Discussions/Replacing-Matrix-Values/m-p/217292#M43437</link>
      <description>&lt;P&gt;See Help &amp;gt; Scripting Index. Click the drop down button and select Functions. Search for As Table() function.&lt;/P&gt;</description>
      <pubDate>Fri, 12 Jul 2019 13:49:20 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Replacing-Matrix-Values/m-p/217292#M43437</guid>
      <dc:creator>Mark_Bailey</dc:creator>
      <dc:date>2019-07-12T13:49:20Z</dc:date>
    </item>
    <item>
      <title>Re: Replacing Matrix Values</title>
      <link>https://community.jmp.com/t5/Discussions/Replacing-Matrix-Values/m-p/217337#M43451</link>
      <description>I need the layout for my setup and a csv file is the only type of file read by the device</description>
      <pubDate>Fri, 12 Jul 2019 18:28:29 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Replacing-Matrix-Values/m-p/217337#M43451</guid>
      <dc:creator>dg1</dc:creator>
      <dc:date>2019-07-12T18:28:29Z</dc:date>
    </item>
    <item>
      <title>Re: Replacing Matrix Values</title>
      <link>https://community.jmp.com/t5/Discussions/Replacing-Matrix-Values/m-p/217348#M43452</link>
      <description>&lt;P&gt;Ok, this updated version of the script should do the trick:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;Names Default to Here( 1 );

dt = Open( "Example.jmp" );

table = Associative Array();

For( c = 1, c &amp;lt;= N Col( dt ), c++,
	data = Column( dt, c ) &amp;lt;&amp;lt; Get As Matrix;
	If( N Row( data ) &amp;lt; 96,
		data |/= J( 96 - N Row( data ), 1, 0 );
	);
	table[Column( dt, c ) &amp;lt;&amp;lt; Get Name] = Transpose( Shape( data, 12, 8 ) );
);

content = table &amp;lt;&amp;lt; Get Contents;
For( t = 1, t &amp;lt;= N Items( content ), t++,
	dt = As Table( content[t][2] );
	Close( dt, Save( content[t][1] || ".CSV" ) );
);&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Unfortunately, I do not know how to suppress the first line with the header names in the CSV files. Perhaps someone else knows. We could immediately read the file back as text, delete the first line, and save it out again.&lt;/P&gt;</description>
      <pubDate>Fri, 12 Jul 2019 19:31:30 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Replacing-Matrix-Values/m-p/217348#M43452</guid>
      <dc:creator>Mark_Bailey</dc:creator>
      <dc:date>2019-07-12T19:31:30Z</dc:date>
    </item>
    <item>
      <title>Re: Replacing Matrix Values</title>
      <link>https://community.jmp.com/t5/Discussions/Replacing-Matrix-Values/m-p/217350#M43453</link>
      <description>This worked!! However, I actually wanted to keep the the column names( or in this case content[t][1]) in the csv file as the first line. It currently does not show. Do you know how I can keep it in the first cell of the csv file?</description>
      <pubDate>Fri, 12 Jul 2019 20:06:09 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Replacing-Matrix-Values/m-p/217350#M43453</guid>
      <dc:creator>dg1</dc:creator>
      <dc:date>2019-07-12T20:06:09Z</dc:date>
    </item>
    <item>
      <title>Re: Replacing Matrix Values</title>
      <link>https://community.jmp.com/t5/Discussions/Replacing-Matrix-Values/m-p/217503#M43475</link>
      <description>&lt;P&gt;Please be patient. I am having difficulty with saving the CSV file for some unknown reason. I am working with Technical Support.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;While I wait for them to reply, I want to be sure that you want to replace the first row of the CSV file (original data column headers) with just the name of the original data column name.&lt;/P&gt;</description>
      <pubDate>Mon, 15 Jul 2019 16:24:42 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Replacing-Matrix-Values/m-p/217503#M43475</guid>
      <dc:creator>Mark_Bailey</dc:creator>
      <dc:date>2019-07-15T16:24:42Z</dc:date>
    </item>
  </channel>
</rss>

